Packages and Binaries:

humble

This package contains an humble, and fast, security-oriented HTTP headers analyzer.

Installed size: 254 KB
How to install: sudo apt install humble

Dependencies:
  • publicsuffix
  • python3
  • python3-colorama
  • python3-fpdf
  • python3-requests
  • python3-tldextract
humble
root@kali:~# humble -h
usage: humble.py [-h] [-a] [-b] [-df] [-e [TESTSSL_PATH]]
                 [-f [FINGERPRINT_TERM]] [-g] [-l {es}]
                 [-o {csv,html,json,pdf,txt}] [-op OUTPUT_PATH] [-r]
                 [-s [SKIPPED_HEADERS ...]] [-u URL] [-ua USER_AGENT] [-v]

'humble' (HTTP Headers Analyzer) | https://github.com/rfc-st/humble | v.2024-07-06

options:
  -h, --help                  show this help message and exit
  -a                          Shows statistics of the performed analysis; will
                              be global if the '-u' parameter is omitted
  -b                          Shows overall findings; if this parameter is
                              omitted detailed ones will be shown
  -df                         Do not follow redirects; if this parameter is
                              omitted the last redirection will be the one
                              analyzed
  -e [TESTSSL_PATH]           Shows TLS/SSL checks; requires the
                              'TESTSSL_PATH' of https://testssl.sh/ and
                              Linux/Unix OS
  -f [FINGERPRINT_TERM]       Shows fingerprint statistics; will be the Top 20
                              if 'FINGERPRINT_TERM', e.g. 'Google', is omitted
  -g                          Shows guidelines for enabling security HTTP
                              response headers on popular servers/services
  -l {es}                     The language for displaying analysis, errors and
                              messages; will be in English if this parameter
                              is omitted
  -o {csv,html,json,pdf,txt}  Exports analysis to
                              'scheme_host_port_yyyymmdd.ext' file; csv/json
                              files will contain a brief analysis
  -op OUTPUT_PATH             Exports analysis to 'OUTPUT_PATH'; if this
                              parameter is omitted the PATH of 'humble.py'
                              will be used
  -r                          Shows HTTP response headers and a detailed
                              analysis; '-b' parameter will take priority
  -s [SKIPPED_HEADERS ...]    Skip analysis of HTTP response headers specified
                              in 'SKIPPED_HEADERS' (separated by spaces)
  -u URL                      Scheme, host and port to analyze. E.g.
                              https://google.com
  -ua USER_AGENT              User-Agent ID from 'additional/user_agents.txt'
                              to use. '0' will show all and '1' is the default
  -v, --version               Checks for updates at https://github.com/rfc-
                              st/humble

examples:
  -a -l es                    Shows statistics (in Spanish) of the analysis performed against all URLs
  -f Google                   Shows HTTP fingerprint headers related to the term 'Google'
  -u URL -a                   Shows statistics of the analysis performed against the URL
  -u URL -b                   Analyzes the URL and reports overall findings
  -u URL -b -o csv            Analyzes the URL and exports overall findings to CSV
  -u URL -l es                Analyzes the URL and reports (in Spanish) detailed findings
  -u URL -o pdf               Analyzes the URL and exports detailed findings to PDF
  -u URL -r                   Analyzes the URL and reports detailed findings along with HTTP response headers
  -u URL -s ETag NEL          Analyzes the URL and skips checks associated with 'ETag' and 'NEL' HTTP response headers
  -u URL -ua 4                Analyzes the URL using the fourth User-Agent of 'additional/user_agents.txt'

Updated on: 2024-Aug-06