We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67f16a3 commit a68ca13Copy full SHA for a68ca13
enum_tools/azure_checks.py
@@ -100,7 +100,8 @@ def print_container_response(reply):
100
return 'breakout'
101
102
# Stop brute forcing accounts without permission
103
- if 'not authorized to perform this operation' in reply.reason:
+ if ('not authorized to perform this operation' in reply.reason or
104
+ 'not have sufficient permissions' in reply.reason):
105
print(" [!] Breaking out early, auth errors.")
106
107
0 commit comments