Az - ACR

Support HackTricks

基本信息

Azure Container Registry (ACR) 是微软 Azure 提供的一个托管服务,用于存储和管理 Docker 容器镜像及其他工件。它提供了集成开发工具、地理复制、基于角色的访问控制和镜像扫描等安全措施、自动构建、网络钩子和触发器以及网络隔离等功能。它与流行的工具如 Docker CLI 和 Kubernetes 兼容,并与其他 Azure 服务良好集成。

枚举

要枚举该服务,您可以使用脚本 Get-AzACR.ps1:

# List Docker images inside the registry
IEX (New-Object Net.Webclient).downloadstring("https://raw.githubusercontent.com/NetSPI/MicroBurst/master/Misc/Get-AzACR.ps1")

Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Internet Explorer\Main" -Name "DisableFirstRunCustomize" -Value 2

Get-AzACR -username <username> -password <password> -registry <corp-name>.azurecr.io

az cli

az acr list --output table
az acr show --name MyRegistry --resource-group MyResourceGroup

登录并从注册表中拉取

docker login <corp-name>.azurecr.io --username <username> --password <password>
docker pull <corp-name>.azurecr.io/<image>:<tag>
支持 HackTricks

Last updated