|
99 | 99 | HUMBLE_FILES = ('analysis_h.txt', 'check_path_permissions', 'fingerprint.txt',
|
100 | 100 | 'guides.txt', 'details_es.txt', 'details.txt',
|
101 | 101 | 'user_agents.txt', 'insecure.txt', 'html_template.html',
|
102 |
| - 'testssl.sh', 'analysis_grades.txt', 'analysis_grades_es.txt', |
103 |
| - 'license.txt', 'license_es.txt', 'testssl_windows.txt', |
| 102 | + 'analysis_grades.txt', 'analysis_grades_es.txt', 'license.txt', |
| 103 | + 'license_es.txt', 'testssl_windows.txt', |
104 | 104 | 'testssl_windows_es.txt', 'security_guides.txt',
|
105 | 105 | 'security_guides_es.txt', 'security.txt')
|
106 | 106 | JSON_SECTION = ('0section', '0headers', '5compat', '6result')
|
107 |
| -L10N_IDXS = {'grades': (10, 11), 'license': (12, 13), 'testssl': (14, 15), |
108 |
| - 'security_guides': (16, 17)} |
| 107 | +L10N_IDXS = {'grades': (9, 10), 'license': (11, 12), 'testssl': (13, 14), |
| 108 | + 'security_guides': (15, 16)} |
109 | 109 | OS_PATH = dirname(abspath(__file__))
|
110 | 110 | PDF_CONDITIONS = ('Ref:', ':', '"', '(*) ')
|
111 | 111 | RE_PATTERN = (
|
|
139 | 139 | STYLE = (Style.BRIGHT, f"{Style.BRIGHT}{Fore.RED}", Fore.CYAN, Style.NORMAL,
|
140 | 140 | Style.RESET_ALL, Fore.RESET, '(humble_pdf_style)',
|
141 | 141 | f"(humble_sec_style){Fore.GREEN}", '(humble_sec_style)')
|
| 142 | +TESTSSL_FILE = ("testssl", "testssl.sh") |
142 | 143 | # Check https://testssl.sh/doc/testssl.1.html to choose your preferred options
|
143 | 144 | TESTSSL_OPTIONS = ['-f', '-g', '-p', '-U', '-s', '--hints']
|
144 | 145 | URL_LIST = (': https://caniuse.com/?search=', ' Ref : https://developers.clou\
|
|
150 | 151 | XML_STRING = ('Ref: ', 'Value: ', 'Valor: ')
|
151 | 152 |
|
152 | 153 | current_time = datetime.now().strftime("%Y/%m/%d - %H:%M:%S")
|
153 |
| -local_version = datetime.strptime('2025-03-22', '%Y-%m-%d').date() |
| 154 | +local_version = datetime.strptime('2025-03-28', '%Y-%m-%d').date() |
154 | 155 |
|
155 | 156 |
|
156 | 157 | class SSLContextAdapter(requests.adapters.HTTPAdapter):
|
@@ -286,12 +287,14 @@ def print_l10n_file(args, l10n_file, slice_ln=False):
|
286 | 287 | def testssl_command(testssl_temp_path, uri):
|
287 | 288 | if not path.isdir(testssl_temp_path):
|
288 | 289 | print_error_detail('[notestssl_path]')
|
289 |
| - testssl_final_path = path.join(testssl_temp_path, HUMBLE_FILES[9]) |
290 |
| - if not path.isfile(testssl_final_path): |
| 290 | + testssl_path = next((path.join(testssl_temp_path, filename) for filename |
| 291 | + in TESTSSL_FILE if |
| 292 | + path.isfile(path.join(testssl_temp_path, filename))), |
| 293 | + None) |
| 294 | + if not testssl_path: |
291 | 295 | print_error_detail('[notestssl_file]')
|
292 |
| - else: |
293 |
| - testssl_command = [testssl_final_path] + TESTSSL_OPTIONS + [uri] |
294 |
| - testssl_analysis(testssl_command) |
| 296 | + testssl_command = [testssl_path] + TESTSSL_OPTIONS + [uri] |
| 297 | + testssl_analysis(testssl_command) |
295 | 298 | sys.exit()
|
296 | 299 |
|
297 | 300 |
|
@@ -1878,7 +1881,7 @@ def custom_help_formatter(prog):
|
1878 | 1881 | parser.add_argument("-df", dest='redirects', action="store_true", help="Do not\
|
1879 | 1882 | follow redirects; if omitted the last redirection will be the one analyzed")
|
1880 | 1883 | parser.add_argument("-e", nargs='?', type=str, dest='testssl_path', help="Show\
|
1881 |
| -s TLS/SSL checks; requires the PATH of https://testssl.sh/") |
| 1884 | +s only TLS/SSL checks; requires the PATH of testssl (https://testssl.sh/)") |
1882 | 1885 | parser.add_argument("-f", nargs='?', type=str, dest='fingerprint_term', help="\
|
1883 | 1886 | Shows fingerprint statistics; if 'FINGERPRINT_TERM' (e.g., 'Google') is \
|
1884 | 1887 | omitted the top 20 results will be shown")
|
@@ -2061,7 +2064,7 @@ def custom_help_formatter(prog):
|
2061 | 2064 | # Checks: /additional/security.txt
|
2062 | 2065 | print_detail_r('[1enabled]')
|
2063 | 2066 |
|
2064 |
| -with open(path.join(OS_PATH, HUMBLE_DIRS[0], HUMBLE_FILES[18]), 'r', |
| 2067 | +with open(path.join(OS_PATH, HUMBLE_DIRS[0], HUMBLE_FILES[17]), 'r', |
2065 | 2068 | encoding='utf8') as sec_f:
|
2066 | 2069 | t_ena = tuple(line.strip() for line in islice(sec_f, SLICE_INT[2], None))
|
2067 | 2070 |
|
|
0 commit comments