From e17813702f71d900a1188cbac9fd2fd11a22a071 Mon Sep 17 00:00:00 2001 From: Fr3sh Date: Fri, 5 May 2023 10:05:41 +0200 Subject: [PATCH] Fixing typo in examples --- CVE-2022-46169.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CVE-2022-46169.py b/CVE-2022-46169.py index c20bf3d..613ac22 100644 --- a/CVE-2022-46169.py +++ b/CVE-2022-46169.py @@ -10,9 +10,9 @@ def get_arguments(): if not options.url_target: parser.error('[*] Pls indicate the target URL, example: -u http://10.10.10.10') if not options.lhost: - parser.error('[*] Pls indicate your ip, example: LHOST=10.10.10.10') + parser.error('[*] Pls indicate your ip, example: --LHOST=10.10.10.10') if not options.lport: - parser.error('[*] Pls indicate the listening port for the reverse shell, example: LPORT=443') + parser.error('[*] Pls indicate the listening port for the reverse shell, example: --LPORT=443') return options def checkVuln():