unauth container registry

This commit is contained in:
Carlos Polop
2025-02-14 19:18:28 +01:00
parent 83bc9f97e8
commit ef85d7fdd5
3 changed files with 34 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
# Az - Container Registry Unauth
{{#include ../../../banners/hacktricks-training.md}}
## Container Registry Unauth
For more information about conteiner registry check:
{{#ref}}
../az-services/az-container-registry.md
{{#endref}}
### Anonymous Pull Access
It's possible to **allow anonymous pull access to images** inside a registry.
```bash
# Authorize anonymous pulls
az acr update --name <registry-name> --anonymous-pull-enabled true
```
Then, **anyone knowing the registry name** can pull images from `<registry-name>.azurecr.io`.
{{#include ../../../banners/hacktricks-training.md}}