Translated ['src/pentesting-cloud/azure-security/az-unauthenticated-enum

This commit is contained in:
Translator
2025-02-15 02:01:49 +00:00
parent 07c550e3a0
commit 84583aff4e
@@ -0,0 +1,22 @@
# Az - Container Registry Unauth
{{#include ../../../banners/hacktricks-training.md}}
## Container Registry Unauth
Aby uzyskać więcej informacji na temat rejestru kontenerów, sprawdź:
{{#ref}}
../az-services/az-container-registry.md
{{#endref}}
### Dostęp do anonimowego pobierania
Możliwe jest **zezwolenie na anonimowy dostęp do pobierania obrazów** wewnątrz rejestru.
```bash
# Authorize anonymous pulls
az acr update --name <registry-name> --anonymous-pull-enabled true
```
Wtedy, **każdy, kto zna nazwę rejestru** może pobierać obrazy z `<registry-name>.azurecr.io`.
{{#include ../../../banners/hacktricks-training.md}}