Skip to content

Commit 5fd4c6c

Browse files
committed
Land #16754, fix merge conflicts
2 parents e7e3ea1 + adecb0d commit 5fd4c6c

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

modules/exploits/windows/iis/ms02_065_msadc.rb

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def initialize(info = {})
3535
'Privileged' => false,
3636
'Payload' => {
3737
'Space' => 1024,
38-
'BadChars' => "\x00\x09\x0a\x0b\x0d\x20\x22\x27:?<>=$\\/;=+%#&",
38+
'BadChars' => "\x00\x09\x0a\x0b\x0d\x20\x22\x27:?<>=$\\/;=+%#&", # "\u0000\t\n\v\r \"':?<>=$\\/;=+%#&"
3939
'StackAdjustment' => -3500
4040
},
4141
'DefaultOptions' => {
@@ -65,11 +65,9 @@ def initialize(info = {})
6565
)
6666
)
6767

68-
register_options(
69-
[
70-
OptString.new('TARGETURI', [ true, 'The path to msadcs.dll', '/msadc/msadcs.dll' ]),
71-
]
72-
)
68+
register_options([
69+
OptString.new('TARGETURI', [ true, 'The path to msadcs.dll', '/msadc/msadcs.dll' ], aliases: [ 'PATH' ]),
70+
])
7371
end
7472

7573
def check

0 commit comments

Comments
 (0)