mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2024-11-23 21:13:05 +00:00
Fixed a number of issues and reliability in credential harvester
This commit is contained in:
parent
3ab7c9de8e
commit
0b66e9138d
2 changed files with 2 additions and 1 deletions
|
@ -8,6 +8,7 @@ version 5.0.10
|
|||
* added a new config option called HARVESTER_LOG. This will allow you to specify a log path if APACHE_SERVER is set to ON (thanks for suggestion JirkaV)
|
||||
* fixed a bug that would cause harvester to not work if apache mode was specified to on
|
||||
* fixed a bug that if you used the harvester twice - it would duplicate the harvester.txt path and file and cause an error if using apache mode
|
||||
* fixed an issue that would cause harvester to not properly shut down something if apache server was specified to on and not error out
|
||||
|
||||
~~~~~~~~~~~~~~~~
|
||||
version 5.0.9
|
||||
|
|
|
@ -342,6 +342,7 @@ def run():
|
|||
# check if we are not running apache mode
|
||||
if apache_check == False:
|
||||
try:
|
||||
|
||||
server = ThreadedHTTPServer(('', int(web_port)), SETHandler)
|
||||
server.serve_forever()
|
||||
|
||||
|
@ -363,7 +364,6 @@ def run():
|
|||
|
||||
# handle the rest
|
||||
except Exception, e:
|
||||
log(e)
|
||||
print bcolors.RED + "[*] Looks like the web_server can't bind to 80. Are you running Apache?" + bcolors.ENDC
|
||||
apache_stop = raw_input("Do you want to attempt to disable Apache? [y/n]: ")
|
||||
apache_counter = 0
|
||||
|
|
Loading…
Reference in a new issue