Skip to content

Commit e9aa544

Browse files
committed
Minor: Code optimizations
1 parent 398cbb7 commit e9aa544

File tree

4 files changed

+17
-12
lines changed

4 files changed

+17
-12
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<a target="_blank" href="https://www.python.org/downloads/" title="Minimum Python version required to run this tool"><img src="https://img.shields.io/badge/Python-%3E%3D3.8-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-2024--12--31-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--01--03-blue.svg?labelColor=343b41"></a>
1010
<a target="_blank" href="https://github.com/rfc-st/humble/actions?query=workflow%3ACodeQL" title="Results of the last analysis of this tool with CodeQL"><img src="https://github.com/rfc-st/humble/workflows/CodeQL/badge.svg"></a>
1111
<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>
1212
<br />
1313
<a target="_blank" href="#" title="Featured on:"><img src="https://img.shields.io/badge/Featured%20on:-343b41"></a>
1414
<a target="_blank" href="https://artemis-scanner.readthedocs.io/en/latest/search.html?q=humble&check_keywords=yes&area=default" title="Artemis vulnerability scanner"><img src="https://img.shields.io/badge/Artemis-blue"></a>
1515
<a target="_blank" href="https://docs.defectdojo.com/en/connecting_your_tools/parsers/file/humble/" title="DefectDojo vulnerability management tool"><img src="https://img.shields.io/badge/DefectDojo-blue"></a>
16-
<a target="_blank" href="https://book.hacktricks.xyz/network-services-pentesting/pentesting-web/special-http-headers" title="HackTricks"><img src="https://img.shields.io/badge/HackTricks-blue"></a>
16+
<a target="_blank" href="https://github.com/HackTricks-wiki/hacktricks/blob/master/src/network-services-pentesting/pentesting-web/special-http-headers.md" title="HackTricks"><img src="https://img.shields.io/badge/HackTricks-blue"></a>
1717
<a target="_blank" href="https://headerscan.com/humble/" title="Security Header Scanner"><img src="https://img.shields.io/badge/HeaderScan-blue"></a>
1818
<a target="_blank" href="https://owasp.org/www-project-secure-headers/#div-technical" title="OWASP Secure Headers Project"><img src="https://img.shields.io/badge/OWASP-blue"></a>
1919
<a target="_blank" href="https://www.bestpractices.dev/projects/9543" title="OpenSSF best practices analysis"><img src="https://www.bestpractices.dev/projects/9543/badge"></a>

humble.py

+9-10
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@
134134
XML_STRING = ('Ref: ', 'Value: ', 'Valor: ')
135135

136136
current_time = datetime.now().strftime("%Y/%m/%d - %H:%M:%S")
137-
local_version = datetime.strptime('2024-12-31', '%Y-%m-%d').date()
137+
local_version = datetime.strptime('2025-01-03', '%Y-%m-%d').date()
138138

139139

140140
class SSLContextAdapter(requests.adapters.HTTPAdapter):
@@ -1357,14 +1357,10 @@ def format_html_headers(ln, sub_d, headers):
13571357

13581358
def format_html_fingerprint(args, ln, sub_d, l_fng):
13591359
for i in l_fng:
1360-
if (ln and i in ln and not args.brief):
1361-
try:
1362-
idx = ln.index(' (')
1363-
except ValueError:
1364-
return ln
1365-
if 'class="ko"' not in ln:
1366-
ln = f"{sub_d['span_ko']}{ln[:idx]}{sub_d['span_f']}{ln[idx:]}"
1367-
return ln
1360+
if ln and (i in ln) and (not args.brief) and (': ' not in ln) and \
1361+
('class="ko"' not in ln):
1362+
ln = f"{sub_d['span_ko']}{ln}{sub_d['span_f']}"
1363+
return ln
13681364
ln_lower, i_lower = ln.casefold(), i.casefold()
13691365
if args.brief and i_lower in ln_lower and ':' not in ln and \
13701366
' class="ko"' not in ln:
@@ -1823,7 +1819,10 @@ def custom_help_formatter(prog):
18231819
start = time()
18241820

18251821
if not args.URL_A:
1826-
detail = '[analysis_output]' if args.output else '[analysis]'
1822+
if not args.compliance:
1823+
detail = '[analysis_output]' if args.output else '[analysis]'
1824+
else:
1825+
detail = '[compliance_output]'
18271826
print("")
18281827
print_detail(detail)
18291828

l10n/details.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1642,6 +1642,9 @@ Unhandled exception type:
16421642
'(*)' meaning: Experimental HTTP response header
16431643
'(*)' ref: https://mdn.io/Experimental_deprecated_obsolete
16441644

1645+
[compliance_output]
1646+
Analyzing the URL in relation to the OWASP 'Secure Headers Project' best practices, please wait ...
1647+
16451648
[comp_ko_owasp]
16461649
These URL headers do not comply with the OWASP 'Secure Headers Project' best practices.
16471650
Ref: https://owasp.org/www-project-secure-headers/#div-bestpractices

l10n/details_es.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1632,6 +1632,9 @@ Excepción no gestionada:
16321632
Significado de '(*)': Cabecera de respuesta HTTP experimental
16331633
Referencia de '(*)': https://mdn.io/Experimental_deprecated_obsolete
16341634

1635+
[compliance_output]
1636+
Analizando la URL en relación a las mejores prácticas de OWASP 'Secure Headers Project', espera por favor ...
1637+
16351638
[comp_ko_owasp]
16361639
Estas cabeceras de la URL no cumplen con las mejores prácticas de OWASP 'Secure Headers Project'.
16371640
Ref: https://owasp.org/www-project-secure-headers/#div-bestpractices

0 commit comments

Comments
 (0)