> For the complete documentation index, see [llms.txt](https://help.aikido.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.aikido.dev/miscellaneous-integrations/private-registries.md).

# Registry Proxy

The registry proxy keeps your supply chain safe by blocking malware, enforcing minimum package age, and offering patched versions of vulnerable packages.

Instead of pulling packages directly from the public registry, your private registry routes requests through Aikido's proxy.

```mermaid
flowchart LR
    dev["Developer"]
    priv["Private Registry\ne.g. Artifactory"]
    aikido["Aikido\nRegistry Proxy"]
    pub["Public Registry"]
    blocked["Blocked"]

    dev -->|"install"| priv
    priv --> aikido
    aikido -->|"safe"| pub
    aikido -->|"malware / too new"| blocked

    style blocked fill:#fdecea,stroke:#e53935,color:#b71c1c
    style aikido fill:#e8f5e9,stroke:#43a047
```

Aikido inspects each package before it reaches your environment: blocking known malicious packages and rejecting packages that are too new to be trusted. You can find the proxy URL in the [Aikido UI](https://app.aikido.dev/issues/aikido-libraries/setup-instructions).

{% hint style="info" %}
Currently npm, PyPI, Maven and NuGet are supported. Support for additional package managers is coming soon.
{% endhint %}

### Blocking malware

The registry proxy blocks packages that contain malware so the malware doesn't reach your development environment, pipelines or production environment.

Packages are blocked based on the Aikido Intel malware feed at <https://intel.aikido.dev/malware>.

### Minimum package age

Package versions pushed in the last 48 hours are not available through the Registry Proxy. This gives our malware team time to inspect the new package versions for malware.

The minimum package age can be **configured per ecosystem** (eg. npm, pypi) in the Aikido UI. Go to [Devices > Settings](https://app.aikido.dev/endpoint-protection/settings) and click on the ecosystem to configure the minimum package age. When configured the Registry Proxy uses the devices minimum package age instead of the 48 hours default.

### Patched libraries

[Aikido Libraries](https://help.aikido.dev/autofix-and-remediation/aikido-libraries-overview) alllow you to avoid breaking changes by staying on the same version of the library. Aikido produces patched libraries for old version of the libraries mitigating known critical and high vulnerabilities.

A list of Aikido Libraries can be found in the Aikido UI under [AutoFix > Libraries](https://app.aikido.dev/issues/aikido-libraries). Use AutoFix to create PRs to update to the Aikido Libraries.

## Supported Registries

{% content-ref url="/pages/oqCG45C4nEWgduWMcRUs" %}
[JFrog Artifactory](/miscellaneous-integrations/private-registries/jfrog-artifactory.md)
{% endcontent-ref %}

{% content-ref url="/pages/glKVTWJX3cQs9jWgQD4C" %}
[Azure DevOps Artifacts](/miscellaneous-integrations/private-registries/azure-devops-artifacts.md)
{% endcontent-ref %}

{% content-ref url="/pages/CDqZ4TfLiMLHIWq5Imue" %}
[Sonatype Nexus Repository](/miscellaneous-integrations/private-registries/nexus-repository.md)
{% endcontent-ref %}

{% content-ref url="/pages/z72VFCg2NbceJckq2UJw" %}
[Google Cloud Artifact Registry](/miscellaneous-integrations/private-registries/gcp-artifact-registry.md)
{% endcontent-ref %}

{% content-ref url="/pages/2qVgd0XqOPkhRuru9E3e" %}
[Cloudsmith](/miscellaneous-integrations/private-registries/cloudsmith.md)
{% endcontent-ref %}

## On-Premise Registry Proxy

{% content-ref url="/pages/Bvuoin3fJSIbEKYjDyiC" %}
[On-Prem Registry Proxy](/miscellaneous-integrations/private-registries/on-premise-transparent-proxy.md)
{% endcontent-ref %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://help.aikido.dev/miscellaneous-integrations/private-registries.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
