Skip to content

Commit d4049b6

Browse files
committed
Fixed small type-o
1 parent ff60c66 commit d4049b6

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

enum_tools/gcp_checks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def print_bucket_response(reply):
2727
elif reply.status_code == 200:
2828
utils.printc(" OPEN GOOGLE BUCKET: {}\n"
2929
.format(reply.url), 'green')
30-
utils.list_bucket_contents(reply.url)
30+
utils.list_bucket_contents(reply.url + '/')
3131
elif reply.status_code == 403:
3232
utils.printc(" Protected Google Bucket: {}\n"
3333
.format(reply.url), 'orange')

enum_tools/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ def get_url_batch(url_list, use_ssl=False, callback='', threads=5):
5050
try:
5151
batch_pending[url] = session.get(proto + url)
5252
except OSError:
53-
print("[!] Connection error on {}. Investigate if there are"
54-
"many of these.".format(url))
53+
print("[!] Connection error on {}. Investigate if you see"
54+
" many of these.".format(url))
5555

5656
# Then, grab all the results from the queue.
5757
# This is where we need to catch exceptions that occur with large

0 commit comments

Comments
 (0)