Made the password optional

bug/bundler_fix
Matt Andreko 2013-02-23 17:14:30 -05:00
parent b221711ecd
commit 2c0a916c83
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ class Metasploit3 < Msf::Auxiliary
OptString.new('FILEPATH', [false, 'The name of the file to download', '/private/var/mobile/Library/Preferences/XBMC/userdata/passwords.xml']),
OptInt.new('DEPTH', [true, 'The max traversal depth', 9]),
OptString.new('USERNAME', [true, 'The username to use for the HTTP server', 'xbmc']),
OptString.new('PASSWORD', [true, 'The password to use for the HTTP server', 'xbmc']),
OptString.new('PASSWORD', [false, 'The password to use for the HTTP server', 'xbmc']),
], self.class)
end