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

Commit

Permalink
Cleaned up a tiny amount of code
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisTruncer committed Jul 19, 2016
1 parent 43fb9ea commit 775913d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion modules/common/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import helpers


version = "2.28"
version = "2.28.1"


# try to find and import the settings.py config file
Expand Down
6 changes: 3 additions & 3 deletions modules/common/shellcode.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 775913d

Please sign in to comment.