mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2025-02-17 13:58:34 +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)
|
* 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 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 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
|
version 5.0.9
|
||||||
|
|
|
@ -342,6 +342,7 @@ def run():
|
||||||
# check if we are not running apache mode
|
# check if we are not running apache mode
|
||||||
if apache_check == False:
|
if apache_check == False:
|
||||||
try:
|
try:
|
||||||
|
|
||||||
server = ThreadedHTTPServer(('', int(web_port)), SETHandler)
|
server = ThreadedHTTPServer(('', int(web_port)), SETHandler)
|
||||||
server.serve_forever()
|
server.serve_forever()
|
||||||
|
|
||||||
|
@ -363,7 +364,6 @@ def run():
|
||||||
|
|
||||||
# handle the rest
|
# handle the rest
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
log(e)
|
|
||||||
print bcolors.RED + "[*] Looks like the web_server can't bind to 80. Are you running Apache?" + bcolors.ENDC
|
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_stop = raw_input("Do you want to attempt to disable Apache? [y/n]: ")
|
||||||
apache_counter = 0
|
apache_counter = 0
|
||||||
|
|
Loading…
Add table
Reference in a new issue