mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2024-11-27 15:00:27 +00:00
Fixed a couple bugs introduced in 5.3.4
This commit is contained in:
parent
a5b7dcdf10
commit
a324c8962c
4 changed files with 11 additions and 3 deletions
|
@ -1,3 +1,10 @@
|
|||
~~~~~~~~~~~~~~~~
|
||||
version 5.3.5
|
||||
~~~~~~~~~~~~~~~~
|
||||
|
||||
* fixed an issue that would cause an integer error when using pyinjector
|
||||
* fixed a print option that was no longer needed
|
||||
|
||||
~~~~~~~~~~~~~~~~
|
||||
version 5.3.4
|
||||
~~~~~~~~~~~~~~~~
|
||||
|
|
|
@ -457,7 +457,9 @@ try:
|
|||
portnum = "LPORT=1"
|
||||
|
||||
# fix port num
|
||||
portnum = shellcode_port
|
||||
if choice1 == "multipyinject":
|
||||
portnum = shellcode_port
|
||||
else: portnum = portnum.replace("LPORT=", "")
|
||||
|
||||
# meterpreter reverse_tcp
|
||||
if choice9 == "windows/meterpreter/reverse_tcp":
|
||||
|
|
|
@ -229,7 +229,7 @@ def print_error(message):
|
|||
print bcolors.RED + bcolors.BOLD + "[!] " + bcolors.ENDC + bcolors.RED + str(message) + bcolors.ENDC
|
||||
|
||||
def get_version():
|
||||
define_version = '5.3.4'
|
||||
define_version = '5.3.5'
|
||||
return define_version
|
||||
|
||||
class create_menu:
|
||||
|
|
|
@ -145,7 +145,6 @@ if pyinjection == "on":
|
|||
port = payload[1]
|
||||
print_status("Generating x86-based powershell injection code...")
|
||||
multi_injection_x86 = multi_injection_x86 + "," + generate_powershell_alphanumeric_payload(powershell_inject_x86, ipaddr, port, x86)
|
||||
print port
|
||||
|
||||
# if its turned to off
|
||||
if multi_injection == "off":
|
||||
|
|
Loading…
Reference in a new issue