mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2025-04-04 06:46:08 +00:00
Small bug fixes in 4.7.2
This commit is contained in:
parent
b236af1343
commit
986f77fbee
3 changed files with 8 additions and 4 deletions
|
@ -9,6 +9,10 @@ version 4.7.2
|
|||
* fixed an issue where selecting multi pyinjector would not find the proper meta_config rc file
|
||||
* turned upx to off by default on the set configuration file
|
||||
* incorporated a change to remove several lines of code by removing a loop and inserting null bytes by using utf_16_le as the return. Thanks ethack for the post.
|
||||
* fixed an issue when exiting SET and the DNS server was set to ON, it would not properly exit
|
||||
* added the most recent version of rid_enum which is at version 0.5
|
||||
* fixed an issue where loading fast-track would throw an error message
|
||||
* turned exception handing back on in the set root
|
||||
|
||||
~~~~~~~~~~~~~~~~
|
||||
version 4.7.1
|
||||
|
|
6
set
6
set
|
@ -185,9 +185,9 @@ except KeyboardInterrupt:
|
|||
print "\n\nThank you for " + bcolors.RED+"shopping" + bcolors.ENDC+" with the Social-Engineer Toolkit.\n\nHack the Gibson...and remember...hugs are worth more than handshakes.\n"
|
||||
|
||||
# handle exceptions
|
||||
#except Exception, error:
|
||||
# log(error)
|
||||
# print "\n\n[!] Something went wrong, printing the error: "+ str(error)
|
||||
except Exception, error:
|
||||
log(error)
|
||||
print "\n\n[!] Something went wrong, printing the error: "+ str(error)
|
||||
|
||||
# cleanup routine
|
||||
cleanup_routine()
|
||||
|
|
|
@ -342,7 +342,7 @@ try:
|
|||
|
||||
# once we are finished, prompt.
|
||||
print_status("Everything is finished!")
|
||||
pause = raw_input("Press {return} to go back to the main menu.)
|
||||
pause = raw_input("Press {return} to go back to the main menu.")
|
||||
|
||||
# handle keyboard exceptions
|
||||
except KeyboardInterrupt:
|
||||
|
|
Loading…
Add table
Reference in a new issue