{{#include ../../../banners/hacktricks-training.md}}
For more information about conteiner registry check:
{{#ref}} ../az-services/az-container-registry.md {{#endref}}
It's possible to allow anonymous pull access to images inside a registry.
# Authorize anonymous pulls
az acr update --name <registry-name> --anonymous-pull-enabled trueThen, anyone knowing the registry name can pull images from <registry-name>.azurecr.io.
{{#include ../../../banners/hacktricks-training.md}}