mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2025-02-17 05:48:46 +00:00
Fixed an issue that would cause harvester to not clone properly
This commit is contained in:
parent
ef2f030317
commit
5b936a302d
2 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue