-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from juerkkil/cmd_utils
move cmd related utils to a separate file
- Loading branch information
Showing
3 changed files
with
73 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
import shutil | ||
import sys | ||
import textwrap | ||
|
||
from .constants import WARN_COLOR, OK_COLOR, END_COLOR, COLUMN_WIDTH_R | ||
|
||
|
||
def get_eval_output(warn, no_color): | ||
color_start = OK_COLOR | ||
color_end = END_COLOR | ||
eval_result = "OK" | ||
if warn: | ||
color_start = WARN_COLOR | ||
eval_result = "WARN" | ||
|
||
if no_color: | ||
color_start = "" | ||
color_end = "" | ||
|
||
return f"[ {color_start}{eval_result}{color_end} ]" | ||
|
||
|
||
def output_text(target_url, headers, https, args) -> str: | ||
terminal_width = shutil.get_terminal_size().columns | ||
output_str = f"Scan target: {target_url}\n" | ||
|
||
# If the stdout is not going into terminal, disable colors | ||
no_color = args.no_color or not sys.stdout.isatty() | ||
for header, value in headers.items(): | ||
truncated = False | ||
if not value['defined']: | ||
output = f"Header '{header}' is missing" | ||
else: | ||
output = f"{header}: {value['contents']}" | ||
if len(output) > terminal_width - COLUMN_WIDTH_R: | ||
truncated = True | ||
output = f"{output[0:(terminal_width - COLUMN_WIDTH_R - 3)]}..." | ||
|
||
eval_value = get_eval_output(value['warn'], no_color) | ||
|
||
if no_color: | ||
output_str += f"{output:<{terminal_width - COLUMN_WIDTH_R}}{eval_value:^{COLUMN_WIDTH_R}}\n" | ||
else: | ||
# This is a dirty hack required to align ANSI-colored str correctly | ||
output_str += f"{output:<{terminal_width - COLUMN_WIDTH_R}}{eval_value:^{COLUMN_WIDTH_R + 9}}\n" | ||
|
||
if truncated and args.verbose: | ||
output_str += f"Full header contents: {value['contents']}\n" | ||
for note in value['notes']: | ||
output_str += textwrap.fill(f" * {note}", terminal_width - COLUMN_WIDTH_R, subsequent_indent=' ') | ||
output_str += "\n" | ||
|
||
msg_map = { | ||
'supported': 'HTTPS supported', | ||
'certvalid': 'HTTPS valid certificate', | ||
'redirect': 'HTTP -> HTTPS automatic redirect', | ||
} | ||
for key in https: | ||
output = f"{msg_map[key]}" | ||
eval_value = get_eval_output(not https[key], no_color) | ||
if no_color: | ||
output = f"{output:<{terminal_width - COLUMN_WIDTH_R}}{eval_value:^{COLUMN_WIDTH_R}}" | ||
else: | ||
# This is a dirty hack required to align ANSI-colored str correctly | ||
output = f"{output:<{terminal_width - COLUMN_WIDTH_R}}{eval_value:^{COLUMN_WIDTH_R + 9}}" | ||
|
||
output_str += output | ||
|
||
return output_str |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters