diff --git a/CHANGELOG b/CHANGELOG index 9fbf846..94e8bc5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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. diff --git a/modules/common/messages.py b/modules/common/messages.py index f935467..1306cbb 100644 --- a/modules/common/messages.py +++ b/modules/common/messages.py @@ -8,7 +8,7 @@ import helpers -version = "2.26.4" +version = "2.26.5" # try to find and import the settings.py config file diff --git a/modules/common/supportfiles.py b/modules/common/supportfiles.py index 6c69866..622b01e 100644 --- a/modules/common/supportfiles.py +++ b/modules/common/supportfiles.py @@ -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 @@ -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"