From 76dfd83c7fc101f31787035614111983f8fe593d Mon Sep 17 00:00:00 2001 From: Daniel Milnes Date: Sun, 7 Apr 2024 20:02:55 +0100 Subject: [PATCH] Correct description for -w argument --- hstsparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hstsparser.py b/hstsparser.py index ab8a6e6..8c65e7b 100755 --- a/hstsparser.py +++ b/hstsparser.py @@ -135,7 +135,7 @@ def parse_chrome_record(data: dict, database: list, host: str, args: Namespace) parser.add_argument( "-w", dest="wordlist_file", - help="The path to the database to be processed", + help="The path to a file containing a wordlist for bruteforcing hashes", metavar="WORDLIST", type=lambda x: is_valid_file(parser, x), )