Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
Update Veil-Evasion.py
Browse files Browse the repository at this point in the history
When parsing arguments, only split on the first occurrence of the equals sign.
  • Loading branch information
sammbertram committed Apr 21, 2016
1 parent f38d1ca commit b4296a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Veil-Evasion.py
Expand Up @@ -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
Expand Down

0 comments on commit b4296a1

Please sign in to comment.