From 2c0a916c83b164c31f481510ae75c9d83fd6c840 Mon Sep 17 00:00:00 2001 From: Matt Andreko Date: Sat, 23 Feb 2013 17:14:30 -0500 Subject: [PATCH] Made the password optional --- modules/auxiliary/gather/xbmc_traversal.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/auxiliary/gather/xbmc_traversal.rb b/modules/auxiliary/gather/xbmc_traversal.rb index 78124aaa1a..c55c8034d5 100644 --- a/modules/auxiliary/gather/xbmc_traversal.rb +++ b/modules/auxiliary/gather/xbmc_traversal.rb @@ -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