From b4296a189281e88b74c7297b94e339619992c058 Mon Sep 17 00:00:00 2001 From: sammbertram Date: Thu, 21 Apr 2016 10:25:52 +0100 Subject: [PATCH] Update Veil-Evasion.py When parsing arguments, only split on the first occurrence of the equals sign. --- Veil-Evasion.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Veil-Evasion.py b/Veil-Evasion.py index 1709135..c70365a 100755 --- a/Veil-Evasion.py +++ b/Veil-Evasion.py @@ -350,7 +350,7 @@ def shutdownRPC(port=4242): if args.c: options['required_options'] = {} for option in args.c: - name,value = option.split("=") + name,value = option.split("=",1) options['required_options'][name.upper()] = [value, ""] # pull out any msfvenom shellcode specification and msfvenom options