Skip to content

Commit 7591162

Browse files
committed
Fix: Do not assume testssl runs as 'testssl.sh'.
#27
1 parent fb91f61 commit 7591162

6 files changed

+26
-23
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<a target="_blank" href="https://devguide.python.org/versions/" title="Minimum Python version required to run this tool"><img src="https://img.shields.io/badge/Python-%3E%3D3.9-blue?labelColor=343b41"></a>
77
<a target="_blank" href="LICENSE" title="License of this tool"><img src="https://img.shields.io/badge/License-MIT-blue.svg?labelColor=343b41"></a>
88
<a target="_blank" href="https://github.com/rfc-st/humble/releases" title="Latest release of this tool"><img src="https://img.shields.io/github/v/release/rfc-st/humble?display_name=release&label=Latest%20Release&labelColor=343b41"></a>
9-
<a target="_blank" href="https://github.com/rfc-st/humble/commits/master" title="Latest commit of this tool"><img src="https://img.shields.io/badge/Latest_Commit-2025--03--22-blue.svg?labelColor=343b41"></a>
9+
<a target="_blank" href="https://github.com/rfc-st/humble/commits/master" title="Latest commit of this tool"><img src="https://img.shields.io/badge/Latest_Commit-2025--03--28-blue.svg?labelColor=343b41"></a>
1010
<a target="_blank" href="https://pkg.kali.org/pkg/humble" title="Official tool in Kali Linux"><img src="https://img.shields.io/badge/Kali%20Linux-Tool-blue?labelColor=343b41"></a>
1111
<br />
1212
<a target="_blank" href="#" title="Featured on:"><img src="https://img.shields.io/badge/Featured%20on:-343b41"></a>
@@ -305,15 +305,15 @@ $ sudo apt install --only-upgrade humble
305305
usage: humble.py [-h] [-a] [-b] [-c] [-df] [-e [TESTSSL_PATH]] [-f [FINGERPRINT_TERM]] [-g] [-grd] [-if INPUT_FILE] [-l {es}] [-lic] [-o {csv,html,json,pdf,txt,xml}]
306306
[-of OUTPUT_FILE] [-op OUTPUT_PATH] [-r] [-s [SKIP_HEADERS ...]] [-u URL] [-ua USER_AGENT] [-v]
307307

308-
'humble' (HTTP Headers Analyzer) | https://github.com/rfc-st/humble | v.2025-01-10
308+
'humble' (HTTP Headers Analyzer) | https://github.com/rfc-st/humble | v.2025-03-28
309309

310310
options:
311311
-h, --help show this help message and exit
312312
-a Shows statistics of the performed analysis; if the '-u' parameter is ommited they will be global
313313
-b Shows overall findings; if omitted detailed ones will be shown
314314
-c Checks URL response HTTP headers for compliance with OWASP 'Secure Headers Project' best practices
315315
-df Do not follow redirects; if omitted the last redirection will be the one analyzed
316-
-e [TESTSSL_PATH] Shows TLS/SSL checks; requires the PATH of https://testssl.sh/
316+
-e [TESTSSL_PATH] Shows only TLS/SSL checks; requires the PATH of testssl (https://testssl.sh/)
317317
-f [FINGERPRINT_TERM] Shows fingerprint statistics; if 'FINGERPRINT_TERM' (e.g., 'Google') is omitted the top 20 results will be shown
318318
-g Shows guidelines for enabling security HTTP response headers on popular frameworks, servers and services
319319
-grd Shows the checks to grade an analysis, along with advice for improvement

humble.py

+15-12
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,13 @@
9999
HUMBLE_FILES = ('analysis_h.txt', 'check_path_permissions', 'fingerprint.txt',
100100
'guides.txt', 'details_es.txt', 'details.txt',
101101
'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',
104104
'testssl_windows_es.txt', 'security_guides.txt',
105105
'security_guides_es.txt', 'security.txt')
106106
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)}
109109
OS_PATH = dirname(abspath(__file__))
110110
PDF_CONDITIONS = ('Ref:', ':', '"', '(*) ')
111111
RE_PATTERN = (
@@ -139,6 +139,7 @@
139139
STYLE = (Style.BRIGHT, f"{Style.BRIGHT}{Fore.RED}", Fore.CYAN, Style.NORMAL,
140140
Style.RESET_ALL, Fore.RESET, '(humble_pdf_style)',
141141
f"(humble_sec_style){Fore.GREEN}", '(humble_sec_style)')
142+
TESTSSL_FILE = ("testssl", "testssl.sh")
142143
# Check https://testssl.sh/doc/testssl.1.html to choose your preferred options
143144
TESTSSL_OPTIONS = ['-f', '-g', '-p', '-U', '-s', '--hints']
144145
URL_LIST = (': https://caniuse.com/?search=', ' Ref : https://developers.clou\
@@ -150,7 +151,7 @@
150151
XML_STRING = ('Ref: ', 'Value: ', 'Valor: ')
151152

152153
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()
154155

155156

156157
class SSLContextAdapter(requests.adapters.HTTPAdapter):
@@ -286,12 +287,14 @@ def print_l10n_file(args, l10n_file, slice_ln=False):
286287
def testssl_command(testssl_temp_path, uri):
287288
if not path.isdir(testssl_temp_path):
288289
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:
291295
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)
295298
sys.exit()
296299

297300

@@ -1878,7 +1881,7 @@ def custom_help_formatter(prog):
18781881
parser.add_argument("-df", dest='redirects', action="store_true", help="Do not\
18791882
follow redirects; if omitted the last redirection will be the one analyzed")
18801883
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/)")
18821885
parser.add_argument("-f", nargs='?', type=str, dest='fingerprint_term', help="\
18831886
Shows fingerprint statistics; if 'FINGERPRINT_TERM' (e.g., 'Google') is \
18841887
omitted the top 20 results will be shown")
@@ -2061,7 +2064,7 @@ def custom_help_formatter(prog):
20612064
# Checks: /additional/security.txt
20622065
print_detail_r('[1enabled]')
20632066

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',
20652068
encoding='utf8') as sec_f:
20662069
t_ena = tuple(line.strip() for line in islice(sec_f, SLICE_INT[2], None))
20672070

l10n/details.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1605,7 +1605,7 @@ Your version :
16051605
Error: That User-Agent ID does not exist; check the available ones with '-ua 0'
16061606

16071607
[args_notestssl]
1608-
Error: The '-e' parameter requires the path of 'testssl.sh' and the parameter '-u'.
1608+
Error: The '-e' parameter requires the path of 'testssl' and the parameter '-u'.
16091609

16101610
[args_inputfile]
16111611
Error: The '-if' parameter does not requires the parameters '-df', '-r' or -'ua'.
@@ -1638,10 +1638,10 @@ Error: The parameter '-of' requires the parameters '-u' and '-o'.
16381638
Error: The parameter '-o json' requires the parameter '-b'.
16391639

16401640
[notestssl_file]
1641-
Error: 'testssl.sh' is not found in that PATH.
1641+
Error: 'testssl' is not found in that PATH.
16421642

16431643
[notestssl_path]
1644-
Error: The PATH for 'testssl.sh' is incorrect.
1644+
Error: The PATH for 'testssl' is incorrect.
16451645

16461646
[args_nooutputfmt]
16471647
Error: The parameter '-op' requires the parameter '-o'.

l10n/details_es.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1610,7 +1610,7 @@ Tu versión :
16101610
Error: No existe ese ID de User-Agent; consulta los disponibles con '-ua 0'
16111611

16121612
[args_notestssl]
1613-
Error: El parámetro '-e' requiere la ruta de 'testssl.sh' y el parámetro '-u'.
1613+
Error: El parámetro '-e' requiere la ruta de 'testssl' y el parámetro '-u'.
16141614

16151615
[args_inputfile]
16161616
Error: El parámetro '-if' no requiere los parámetros '-df', '-r' o -'ua'.
@@ -1643,10 +1643,10 @@ Error: El parámetro -of' requiere los parámetros '-u' y '-o'.
16431643
Error: El parámetro '-o json' requiere el parámetro '-b'.
16441644

16451645
[notestssl_file]
1646-
Error: 'testssl.sh' no existe en la ruta indicada.
1646+
Error: 'testssl' no existe en la ruta indicada.
16471647

16481648
[notestssl_path]
1649-
Error: la ruta indicada de 'testssl.sh' es incorrecta.
1649+
Error: la ruta indicada de 'testssl' es incorrecta.
16501650

16511651
[args_skipped]
16521652
Error: El parámetro '-s' requiere, al menos, el nombre de una cabecera HTTP de respuesta.

l10n/testssl_windows.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2424
# SOFTWARE.
2525

26-
To run an SSL/TLS scan on Windows with 'testssl.sh' you have three options:
26+
To run an SSL/TLS scan on Windows with 'testssl' you have three options:
2727

2828
[Option: Cygwin]
2929

l10n/testssl_windows_es.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# AGRAVIO O CUALQUIER OTRO MOTIVO, DERIVADAS DE, FUERA DE O EN CONEXIÓN CON EL
2525
# SOFTWARE O SU USO U OTRO TIPO DE ACCIONES EN EL SOFTWARE.
2626

27-
Para ejecutar un análisis SSL/TLS en Windows con 'testssl.sh' tienes tres opciones:
27+
Para ejecutar un análisis SSL/TLS en Windows con 'testssl' tienes tres opciones:
2828

2929
[Opción: Cygwin]
3030

0 commit comments

Comments
 (0)