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

Commit

Permalink
Merge pull request #346 from Veil-Framework/run
Browse files Browse the repository at this point in the history
No longer have runw.exe error message
  • Loading branch information
ChrisTruncer committed Jun 5, 2016
2 parents 5361f0e + 8fbf20b commit 9a692de
Show file tree
Hide file tree
Showing 3 changed files with 7 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 @@
[06.15.2016]
Released.: 2.26.5
Modified.: SupportFiles.py not properly handles the correct path for runw.exe and prevents error from displaying

[05.19.2016]
Released.: 2.26.4
Removed..: PyObfuscate is no longer used. It looks like it is less random using it vs. Veil's randomization.
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.26.4"
version = "2.26.5"


# try to find and import the settings.py config file
Expand Down
5 changes: 2 additions & 3 deletions modules/common/supportfiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def supportingFiles(payload, payloadFile, options):
else:
# copy the original runw.exe into the proper location
runwPath = settings.VEIL_EVASION_PATH+"tools/runw_orig.exe"
os.system("cp "+runwPath+" " + settings.PYINSTALLER_PATH + "support/loader/Windows-32bit/runw.exe")
os.system("cp " + runwPath + " " + settings.PYINSTALLER_PATH + "/PyInstaller/bootloader/Windows-32bit/runw.exe")

# Check for Wine python.exe Binary (Thanks to darknight007 for this fix.)
# Thanks to Tim Medin for patching for non-root non-kali users
Expand Down Expand Up @@ -1482,5 +1482,4 @@ def generatePwnstaller():
# copy the loader into the correct location
os.system("mv runw.exe " + settings.PYINSTALLER_PATH + "support/loader/Windows-32bit/")

print " [*] Pwnstaller runw.exe moved to "+ settings.PYINSTALLER_PATH + "support/loader/Windows-32bit/\n"

print " [*] Pwnstaller runw.exe moved to "+ settings.PYINSTALLER_PATH + "/PyInstaller/bootloader/Windows-32bit/\n"

0 comments on commit 9a692de

Please sign in to comment.