diff --git a/CHANGELOG b/CHANGELOG index a927815..7730ba0 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +[07.19.2016] + Released.: 2.28.1 + Modified.: Modified user submission, checks to ensure "=" is present for extra msfvenom options, and doesn't error out. Converted tabs to spaces + [07.19.2016] Released.: 2.28 Fixed....: Fixed issue within Veil where Python scripts gave cannot open archive. Determined it to be an issue with the bootloader. An old bootloader (runw.exe) was being used on the pyinstaller payloads which introduced the error. Updating to the latest bootloader fixed the problem. Might have to look into removing pwnstaller since it uses the old bootloader. diff --git a/modules/common/messages.py b/modules/common/messages.py index ada4b5d..9694651 100644 --- a/modules/common/messages.py +++ b/modules/common/messages.py @@ -8,7 +8,7 @@ import helpers -version = "2.28" +version = "2.28.1" # try to find and import the settings.py config file diff --git a/modules/common/shellcode.py b/modules/common/shellcode.py index c974dea..d263790 100644 --- a/modules/common/shellcode.py +++ b/modules/common/shellcode.py @@ -441,9 +441,9 @@ def menu(self): num_extra_options = selection.split(' ') for xtra_opt in num_extra_options: if xtra_opt is not '': - if "=" not in xtra_opt : - print "parameter grammar error!" - continue + if "=" not in xtra_opt: + print "parameter grammar error!" + continue if "-" in xtra_opt.split('=')[0]: final_opt = xtra_opt.split('=')[0] + " " + xtra_opt.split('=')[1] extraValues.append(final_opt)