Skip to content

Commit 72794e4

Browse files
committed
Removed double spaces
1 parent d10b20b commit 72794e4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/msf/core/exploit/http/client.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def initialize(info = {})
4747
Rex::Proto::Http::Client::DefaultUserAgent
4848
]),
4949
OptString.new('USERNAME', [false, 'The HTTP username to specify for authentication', '']),
50-
OptString.new('PASSWORD', [false, 'The HTTP password to specify for authentication', '']),
50+
OptString.new('PASSWORD', [false, 'The HTTP password to specify for authentication', '']),
5151
OptBool.new('DigestAuthIIS', [false, 'Conform to IIS, should work for most servers. Only set to false for non-IIS servers', true]),
5252
OptBool.new('SSL', [ false, 'Negotiate SSL for outgoing connections', false]),
5353
OptEnum.new('SSLVersion', [ false, 'Specify the version of SSL that should be used', 'Auto', ['Auto', 'SSL2', 'SSL3', 'TLS1']]),

modules/exploits/windows/http/xampp_webdav_upload_php.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def initialize
3535
OptString.new('PATH', [ true, "The path to attempt to upload", '/webdav/']),
3636
OptString.new('FILENAME', [ false , "The filename to give the payload. (Leave Blank for Random)"]),
3737
OptString.new('USERNAME', [false, 'The HTTP username to specify for authentication', 'wampp']),
38-
OptString.new('PASSWORD', [false, 'The HTTP password to specify for authentication', 'xampp'])
38+
OptString.new('PASSWORD', [false, 'The HTTP password to specify for authentication', 'xampp'])
3939
], self.class)
4040
end
4141

modules/exploits/windows/iis/iis_webdav_upload_asp.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def initialize
4343
# The USERNAME and PASSWORD are registered again to make them more obvious they're
4444
# configurable.
4545
OptString.new('USERNAME', [false, 'The HTTP username to specify for authentication', '']),
46-
OptString.new('PASSWORD', [false, 'The HTTP password to specify for authentication', '']),
46+
OptString.new('PASSWORD', [false, 'The HTTP password to specify for authentication', '']),
4747
OptString.new('PATH', [ true, "The path to attempt to upload", '/metasploit%RAND%.asp'])
4848
], self.class)
4949
end

0 commit comments

Comments
 (0)