You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-**Locate storage accounts** that can expose data: `az storage account list | jq -r '.[] | select(.properties.allowBlobPublicAccess==true) | .name'`. If `allowBlobPublicAccess` is `false` you cannot turn containers public.
71
+
-**Inspect risky accounts** to confirm the flag and other weak settings: `az storage account show --name <acc> --query '{allow:properties.allowBlobPublicAccess, minTls:properties.minimumTlsVersion}'`.
72
+
-**Enumerate container-level exposure** where the flag is enabled:
If you find any **storage** you can connect to you could use the tool [**Microsoft Azure Storage Explorer**](https://azure.microsoft.com/es-es/products/storage/storage-explorer/) to do so.
@@ -222,6 +246,9 @@ Azure Blob Storage now supports the SSH File Transfer Protocol (SFTP), enabling
222
246
{{#tabs }}
223
247
{{#tab name="az cli" }}
224
248
249
+
<details>
250
+
<summary>az cli enumeration</summary>
251
+
225
252
```bash
226
253
# Get storage accounts
227
254
az storage account list #Get the account name from here
@@ -339,11 +366,16 @@ az storage account local-user list \
0 commit comments