mirror of
https://github.com/HackTricks-wiki/hacktricks-cloud.git
synced 2026-01-14 05:46:25 -08:00
Translated ['src/pentesting-cloud/azure-security/az-unauthenticated-enum
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
# Az - VMs Unauth
|
||||
|
||||
{{#include ../../../banners/hacktricks-training.md}}
|
||||
|
||||
## Віртуальні машини
|
||||
|
||||
Для отримання додаткової інформації про Azure Virtual Machines перегляньте:
|
||||
|
||||
{{#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}}
|
||||
Reference in New Issue
Block a user