diff --git a/src/pentesting-cloud/azure-security/az-unauthenticated-enum-and-initial-entry/az-container-registry-unauth.md b/src/pentesting-cloud/azure-security/az-unauthenticated-enum-and-initial-entry/az-container-registry-unauth.md new file mode 100644 index 000000000..9398bef6c --- /dev/null +++ b/src/pentesting-cloud/azure-security/az-unauthenticated-enum-and-initial-entry/az-container-registry-unauth.md @@ -0,0 +1,22 @@ +# Az - Container Registry Unauth + +{{#include ../../../banners/hacktricks-training.md}} + +## Container Registry Unauth + +컨테이너 레지스트리에 대한 자세한 정보는 다음을 확인하세요: + +{{#ref}} +../az-services/az-container-registry.md +{{#endref}} + +### 익명 풀 액세스 + +레지스트리 내의 이미지에 대한 **익명 풀 액세스를 허용하는 것이 가능합니다.** +```bash +# Authorize anonymous pulls +az acr update --name --anonymous-pull-enabled true +``` +그렇다면, **레지스트리 이름을 아는 누구나** `.azurecr.io`에서 이미지를 가져올 수 있습니다. + +{{#include ../../../banners/hacktricks-training.md}}