From 0c4a6fe15fa7d620b3bbd6f8204c24d693941650 Mon Sep 17 00:00:00 2001 From: "Mariusz B. / mgeeky" Date: Sun, 17 Oct 2021 19:08:51 +0200 Subject: [PATCH] update --- phishing/README.md | 2 +- phishing/decode-spam-headers.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/phishing/README.md b/phishing/README.md index 409c975..1981121 100644 --- a/phishing/README.md +++ b/phishing/README.md @@ -61,7 +61,7 @@ Options: Tests: -r, --resolve Resolve IPv4 addresses / Domain names. - -D, --decode-all Decode all =?us-ascii?Q? mail encoded messages and print their contents. + -a, --decode-all Decode all =?us-ascii?Q? mail encoded messages and print their contents. ``` Sample run: diff --git a/phishing/decode-spam-headers.py b/phishing/decode-spam-headers.py index e3f2f70..3128998 100644 --- a/phishing/decode-spam-headers.py +++ b/phishing/decode-spam-headers.py @@ -2110,7 +2110,7 @@ def opts(argv): tst = o.add_argument_group('Tests') tst.add_argument('-r', '--resolve', default=False, action='store_true', help='Resolve IPv4 addresses / Domain names.') - tst.add_argument('-D', '--decode-all', default=False, action='store_true', help='Decode all =?us-ascii?Q? mail encoded messages and print their contents.') + tst.add_argument('-a', '--decode-all', default=False, action='store_true', help='Decode all =?us-ascii?Q? mail encoded messages and print their contents.') args = o.parse_args()