Fixed an issue that would cause harvester to not clone properly

This commit is contained in:
TrustedSec 2013-10-03 08:33:32 -04:00
parent ef2f030317
commit 5b936a302d
2 changed files with 2 additions and 1 deletions

View file

@ -5,6 +5,7 @@ version 5.3.6
* Added the Micorosft Internet Explorer SetMouseCapture Use-After-Free exploit in Metasploit released today.
* Fixed a bug that would cause LHOST to not be set when using other payloads than pyInjector and Multi-Pyinjector.
* Fixed an issue that would cause emails to only accept the first line of the email (thanks for the submission from Vladmir)
* Fixed an issue when URLs had special characters or spaces in the URL
~~~~~~~~~~~~~~~~
version 5.3.5

View file

@ -132,7 +132,7 @@ try:
wget = 1
if wget == 1:
subprocess.Popen('%s;cd %s/web_clone/;wget --no-check-certificate -O index.html -c -k -U "%s" %s;' % (proxy_config,setdir,user_agent,url), stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True).wait()
subprocess.Popen('%s;cd %s/web_clone/;wget --no-check-certificate -O index.html -c -k -U "%s" "%s";' % (proxy_config,setdir,user_agent,url), stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True).wait()
if wget == 0:
# if we don't have wget installed we will use python to rip, not as good as wget