Skip to content

Commit 67fdc64

Browse files
committed
fix keyvault.md
1 parent 16783ef commit 67fdc64

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

scripts/clean_unused_images.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ find "$IMAGE_FOLDER" -type f | while IFS= read -r image; do
1212
# Extract the filename without the path
1313
image_name=$(basename "$image")
1414

15+
# If image file name contains "sponsor", skip it
16+
if [[ "$image_name" == *"sponsor"* ]]; then
17+
echo "Skipping sponsor image: $image_name"
18+
continue
19+
fi
20+
1521
echo "Checking image: $image_name"
1622

1723
# Search for the image name using rg and capture the result

src/pentesting-cloud/azure-security/az-post-exploitation/az-key-vault-post-exploitation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
For more information about this service check:
88

99
{{#ref}}
10-
../az-services/keyvault.md
10+
../az-services/az-keyvault.md
1111
{{#endref}}
1212

1313
### Microsoft.KeyVault/vaults/secrets/getSecret/action

src/pentesting-cloud/azure-security/az-privilege-escalation/az-key-vault-privesc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
For more information about this service check:
88

99
{{#ref}}
10-
../az-services/keyvault.md
10+
../az-services/az-keyvault.md
1111
{{#endref}}
1212

1313
### Microsoft.KeyVault/vaults/write

0 commit comments

Comments
 (0)