Jump to content

legion

Active Members
  • Posts

    40
  • Joined

  • Last visited

Everything posted by legion

  1. It would be nice to have the ability to change the interface that Karma runs on via the web gui. I've seen a few posts about it, but I have yet to find this option in 2.7.0. Thanks for all you do!
  2. Now if I could just download modules!
  3. I thought the same thing too! I was going to re-flash so I tried to get there to find the exact command to do it via ssh.
  4. All I get: Apache 2 Test Page powered by CentOS
  5. Anyone know what's going on? http://www.downforeveryoneorjustme.com/www.wifipineapple.com
  6. What about standard PPTP? IMHO, it's easier to deal with.
  7. It would be nice be able to install multiple modules at once. You could use check boxes to select all the modules you want, then select where you would want the modules to install to. Thanks for all you guys do!
  8. Did this make it into the current (2.7.0) release?
  9. I for one would love to see this working!
  10. Could we make a firmware thread and have it stickied at the top of the forum? That way it is the first thing you see on the page, instead of having to sift through several threads to find the latest one. As always, thank you all for your hard work. It is VERY much appreciated.
  11. lol... that's the point of sslstrip. It decrypts SSL and re-packages it. Here's more info on it: http://www.sindark.com/2009/02/21/the-ssl-strip-exploit/
  12. IMHO, drop the proxy and read up on ettercap.
  13. Great job on the new firmware! Is there any way to change what interface that karma runs on? I would much rather use the built-in wifi to connect to a hotspot and use the usb alfa for clients to connect to.
  14. If you want to learn more, download the zip file of the the module and look at the source code. It will really help you figure out what is going on versus just clicking a magic button.
  15. IPTables are modified as a part of the module.
  16. Pull the rubber "feet" off of the bottom. It should be the end with the WAN/LAN/USB lights. There will be just 2 screws that you will need to pull out to crack it open.
  17. Great job on the new firmware!!! I have one small request for the next release; could we have an option to default all installs to USB? Thanks for all you do Seb!
  18. Wireless card support would be ideal, but I will take what I can get. Thanks again Seb!!!!
  19. What about USB tethering? **EDIT** After some research you need to install the following package. The problem is you need to upgrade the kernel for it to work :-( kmod-usb-net-ipheth - 3.3.6-1 - Kernel support for Apple iPhone USB Ethernet driver
  20. What am I doing wrong? root@Pineapple:~# iptables -t nat -A PREROUTING -p tcp --destination-port 80 -j REDIRECT --to-port 10000 root@Pineapple:~# sslstrip -w sslstrip.log /usb/usr/lib/python2.6/site-packages/twisted/internet/_sslverify.py:4: DeprecationWarning: the md5 module is deprecated; use hashlib instead Traceback (most recent call last): File "/usb/usr/bin/sslstrip", line 30, in <module> from sslstrip.StrippingProxy import StrippingProxy ImportError: No module named sslstrip.StrippingProxy root@Pineapple:~# **EDIT** Got it running by executing: python /usb/sslstrip/sslstrip.py -a -k -f
  21. That will only redirect HTTP traffic, not ssl traffic. Here's a piece of the script that I ran in BT for MITM wireless attacks: iptables --flush iptables --table nat --flush iptables --delete-chain iptables --table nat --delete-chain iptables -P FORWARD ACCEPT iptables -t nat -A POSTROUTING -o $IFACE -j MASQUERADE iptables -t nat -A PREROUTING -p tcp --destination-port 80 -j REDIRECT --to-ports 10000 iptables -t nat -A PREROUTING -p tcp --destination-port 443 -j REDIRECT --to-ports 10000 *EDIT* Here's the full script: http://pastebin.com/Dyh9C6EB
  22. Will this work? iptables -t nat -A PREROUTING -p tcp --dport 80 -j DNAT --to-destination 127.0.0.1:10000 iptables -t nat -A PREROUTING -p tcp --dport 443 -j DNAT --to-destination 127.0.0.1:10000
  23. Has anyone been able to get ettercap to reliably sniff traffic on the MarkIV?
×
×
  • Create New...