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

This commit is contained in:
Translator
2025-01-26 11:03:12 +00:00
parent fd864261d2
commit 71de52fd77
@@ -0,0 +1,37 @@
# Az - VMs Unauth
{{#include ../../../banners/hacktricks-training.md}}
## 虚拟机
有关 Azure 虚拟机的更多信息,请查看:
{{#ref}}
../az-services/vms/
{{#endref}}
### 暴露的易受攻击服务
一个易受某些 RCE 攻击的网络服务。
### 公共图库镜像
公共镜像可能包含机密信息:
```bash
# List all community galleries
az sig list-community --output table
# Search by publisherUri
az sig list-community --output json --query "[?communityMetadata.publisherUri=='https://3nets.io']"
```
### 公共扩展
这可能会更奇怪,但并非不可能。一家大公司可能会在其中放置包含敏感数据的扩展:
```bash
# It takes some mins to run
az vm extension image list --output table
# Get extensions by publisher
az vm extension image list --publisher "Site24x7" --output table
```
{{#include ../../../banners/hacktricks-training.md}}