Jump to content

taiyed14

Active Members
  • Posts

    252
  • Joined

  • Last visited

Everything posted by taiyed14

  1. why not SIU? that's in your neck of the woods.
  2. I hadn't noticed. I'll see how many i can get connected tonight.
  3. Although the device says 7.5v, the Fon+ will run off of 5v, one USB port or 4 AA batteries. This is how i do it.
  4. It's pretty simple answer. I think this is what you're looking for. http://tinyurl.com/ycrncet
  5. brute forcing wpa handshakes is abou all I've heard of. there might be some wpa rainbow tables that's make the process more bareable.
  6. no because those cisco cables are not ethernet cables (they are serial cables with RJ-45 ends) and the ethernet ports on the fon are ethernet ports, not serial ports (as console ports on cisco routers/switches are)
  7. get rid of XP. Not because I don't like it, but because it's old and out dated. I would use install Ubuntu on the whole disk unless you plan on keeping windows. the choice is yours.
  8. looks like something is going wrong with setting the default gateway. Do a #route -n and tell me what your default gateway is set as... also try route del default && route add default gateway GW_IP_ADDRESS
  9. I wrote up a quick guide to configuring OpenWRT (the platform for Jasager) from the command line and thought I would share it here. It is available at http://alex.hrck.net/?p=64 OpenWRT comes with a program called uci, or Unified Configuration Interface. This utility allows you to temporary or permanently modify the system configuration files in the /etc/config/ directory. Also allows for easy scripting. The syntax is broken into three parts. The first two are mandatory with the [arguments] field being optional depending on the [option] uci options commands arguments [commands] is also broken down into three parts: file.section.option. Section can be called by their name, such as lan, wan as in /etc/config/network or wifi0 in /etc/config/wireless. Sections that do not have names can be called their position in the array of sections. An example of this is wireless.@wifi-iface[0].ssid To view a configuration file such as /etc/config/network: uci export network Making or adding a new value to a section, in this case the default gatway, is easy as typing: uci set network.lan.gateway=10.168.1.1 OR uci set network.@interface[1].gateway=10.168.1.1 To add and delete options use uci add or uci delete: uci delete wireless.@wifi-iface[0].encryption It is also possible to set DHCP options, such as the gateway or DNS servers to push to clients. Refer to this website to find the DHCP option codes. uci add_list network.lan.dhcp_option="3,10.168.1.1" When done making changes you must run: uci commit [configuration] example: uci commit network It is possible to change the behavior of startup services. root@OpenWRT:~#/etc/init.d/network Syntax /etc/init.d/network [command] Available commands: start Start the service stop Stop the service restart Restart the service reload Reload configuration files (or restart if that fails) enable Enable service autostart disable Disable service autostart
  10. i don't understand what you mean when you say 'it doesn't work'. what doesn't work? sslstrip or arpspoof? 192.168.0.5 is the computer you want to trick 192.168.0.1 is the gateway you want to impersonate what is the MAC address of the gateway and of the computer you're running arpspoof on? Now check the target computer. What does it THINK the MAC address of the gateway is? arp -a
  11. if you are serious about running virtual box, absolutely get more the most RAM you can afford. 4GB but if you have the cash for 8GB+ do it. Same thing with the processor. Go Core i7.
  12. i just got one for Christmas. looking forward to solving it.
  13. you should be able to make that setting permanent by editing /etc/config/network...not sure of the exact syntax off the top of my head.
  14. Yes this WILL work with a Fon+ (i have the Fon+). The difference between the Fon and Fon+ is an extra Ethernet port. @echoblack. We dont need to ask the user for their MAC, there is no need for a DHCP reservation. The pineapple.sh changes their eth0 to a static address. BTW, do you have a Fon or Fon+? I see some potential issues... @echoblack. I don't know if there is such a thing as "Classes" with bash.. I know you can do functions, but you would be better off executing a script from within the script. #!/bin/bash echo "Running" ./somthing.sh and if you want to rewrite all this in Python, be my guest... my Python skills are being developed.
  15. taiyed14

    yahoo email?

    sounds like the landlord should have gotten some more contact info than just an email. i agree with sparda.
  16. ive had no issues. config iptables to forward traffic on port 80 to 8080 start ssl strip -l 8080 start arpspoof -i eth0 -t 192,168.1.100 192.168.1.1 http://www.thoughtcrime.org/software/sslstrip/ it's pretty simple
  17. Sure thing. so this pineapple set up will configure DHCP and IPs etc. needed for this script to work?
  18. Couple of things. The script is reporting that I don't have python twisted lib installed because the im.py file lives in /usr/lib/python2.6/dist-packages/twisted/im.py. Running Ubuntu 9.10. also getting [: to many arguments error on lines 451 and 493 echo "SSL is $SSL" # I added for debugging if [ $Ssl == "Y" -o $Ssl == "y" -o $Ssl == "yes" ]; then edit: the error on lines 451 and 493 are because SSL var is empty.
  19. You're right Darren, Webif does configure these files. You can also edit them with vi/vim or make changes with uci from the command line. root@fonz1:~# cat /etc/config/network config 'interface' 'loopback' option 'ifname' 'lo' option 'proto' 'static' option 'ipaddr' '127.0.0.1' option 'netmask' '255.0.0.0' config 'interface' 'lan' option 'type' 'bridge' option 'proto' 'static' option 'ipaddr' '10.168.1.254' option 'netmask' '255.255.255.0' option 'ifname' 'eth0.0' option 'gateway' '10.168.1.1' config 'interface' 'wan' option 'ifname' 'eth0.1' option 'proto' 'dhcp' root@fonz1:~# cat /etc/config/wireless # Copyright (C) 2006 OpenWrt.org config wifi-device wifi0 option type atheros option channel auto config wifi-iface option device wifi0 option network lan option mode ap option ssid private option encryption none
  20. where did you get all this time on your hands?!? good work though! i look forward to testing/improving it soon.
  21. @echoblack I haven't had much time to work on the development with you. I'll write something up later, but i would do and IF statement to check if the default route is already set to what it will be set, or you like you said, just delete the default route with the command: route del default. what kind of script do you want to run on the pineapple? you shouldn't need to configure anything.
×
×
  • Create New...