mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2024-11-23 13:03:10 +00:00
Updated to fix listener on solo payloads
This commit is contained in:
parent
a312944a34
commit
63da064719
3 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
|||
~~~~~~~~~~~~~~~~
|
||||
version 6.5.6
|
||||
~~~~~~~~~~~~~~~~
|
||||
|
||||
* fixed solo payload generation where listener would not launch properly
|
||||
|
||||
~~~~~~~~~~~~~~~~
|
||||
version 6.5.5
|
||||
~~~~~~~~~~~~~~~~
|
||||
|
|
|
@ -39,5 +39,4 @@ if check_options("INFECTION_MEDIA=") != "ON":
|
|||
payload_query = raw_input(setprompt(["4"], "Do you want to start the payload and listener now? (yes/no)"))
|
||||
if payload_query.lower() == "y" or payload_query.lower() == "yes":
|
||||
print_status("Launching msfconsole, this could take a few to load. Be patient...")
|
||||
subprocess.Popen(meta_path + "msfconsole -r " + setdir + "/meta_config\r\n", shell=True).wait()
|
||||
|
||||
subprocess.Popen(meta_path + "msfconsole -r " + setdir + "/meta_config", shell=True).wait()
|
||||
|
|
|
@ -233,7 +233,7 @@ def print_error(message):
|
|||
print bcolors.RED + bcolors.BOLD + "[!] " + bcolors.ENDC + bcolors.RED + str(message) + bcolors.ENDC
|
||||
|
||||
def get_version():
|
||||
define_version = '6.5.5'
|
||||
define_version = '6.5.6'
|
||||
return define_version
|
||||
|
||||
class create_menu:
|
||||
|
|
Loading…
Reference in a new issue