Skip to content

Commit

Permalink
Land #16754, fix merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
jheysel-r7 committed Jul 16, 2022
2 parents e7e3ea1 + adecb0d commit 5fd4c6c
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions modules/exploits/windows/iis/ms02_065_msadc.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def initialize(info = {})
'Privileged' => false,
'Payload' => {
'Space' => 1024,
'BadChars' => "\x00\x09\x0a\x0b\x0d\x20\x22\x27:?<>=$\\/;=+%#&",
'BadChars' => "\x00\x09\x0a\x0b\x0d\x20\x22\x27:?<>=$\\/;=+%#&", # "\u0000\t\n\v\r \"':?<>=$\\/;=+%#&"
'StackAdjustment' => -3500
},
'DefaultOptions' => {
Expand Down Expand Up @@ -65,11 +65,9 @@ def initialize(info = {})
)
)

register_options(
[
OptString.new('TARGETURI', [ true, 'The path to msadcs.dll', '/msadc/msadcs.dll' ]),
]
)
register_options([
OptString.new('TARGETURI', [ true, 'The path to msadcs.dll', '/msadc/msadcs.dll' ], aliases: [ 'PATH' ]),
])
end

def check
Expand Down

0 comments on commit 5fd4c6c

Please sign in to comment.