Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion enum_tools/aws_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def print_s3_response(reply):
return 'breakout'
else:
print(f" Unknown status codes being received from {reply.url}:\n"
" {reply.status_code}: {reply.reason}")
f" {reply.status_code}: {reply.reason}")

return None

Expand Down
2 changes: 1 addition & 1 deletion enum_tools/azure_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ def print_container_response(reply):
pass
else:
print(f" Unknown status codes being received from {reply.url}:\n"
" {reply.status_code}: {reply.reason}")
f" {reply.status_code}: {reply.reason}")

return None

Expand Down
12 changes: 6 additions & 6 deletions enum_tools/gcp_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def print_bucket_response(reply):
utils.fmt_output(data)
else:
print(f" Unknown status codes being received from {reply.url}:\n"
" {reply.status_code}: {reply.reason}")
f" {reply.status_code}: {reply.reason}")


def check_gcp_buckets(names, threads):
Expand Down Expand Up @@ -109,7 +109,7 @@ def print_fbrtdb_response(reply):
utils.fmt_output(data)
else:
print(f" Unknown status codes being received from {reply.url}:\n"
" {reply.status_code}: {reply.reason}")
f" {reply.status_code}: {reply.reason}")


def check_fbrtdb(names, threads):
Expand Down Expand Up @@ -159,7 +159,7 @@ def print_fbapp_response(reply):
utils.fmt_output(data)
else:
print(f" Unknown status codes being received from {reply.url}:\n"
" {reply.status_code}: {reply.reason}")
f" {reply.status_code}: {reply.reason}")

def check_fbapp(names, threads):
"""
Expand Down Expand Up @@ -218,7 +218,7 @@ def print_appspot_response(reply):
utils.fmt_output(data)
else:
print(f" Unknown status codes being received from {reply.url}:\n"
" {reply.status_code}: {reply.reason}")
f" {reply.status_code}: {reply.reason}")


def check_appspot(names, threads):
Expand Down Expand Up @@ -268,7 +268,7 @@ def print_functions_response1(reply):
HAS_FUNCS.append(reply.url)
else:
print(f" Unknown status codes being received from {reply.url}:\n"
" {reply.status_code}: {reply.reason}")
f" {reply.status_code}: {reply.reason}")


def print_functions_response2(reply):
Expand Down Expand Up @@ -299,7 +299,7 @@ def print_functions_response2(reply):
utils.fmt_output(data)
else:
print(f" Unknown status codes being received from {reply.url}:\n"
" {reply.status_code}: {reply.reason}")
f" {reply.status_code}: {reply.reason}")


def check_functions(names, brute_list, quickscan, threads):
Expand Down
Loading