Seshan Posted December 9, 2009 Share Posted December 9, 2009 http://10.168.1.254:1471 <---this should be the address of jasager web interface if you followed my post. what is the IP address of your NIC connected to the fon? can you ping 10.168.1.254? what is the output of "route print" (assuming you're running windows) I was setting my NIC to 10.168.1.1 that was the only way I could SSH into it. I've tried 10.168.1.254:1471 and it didn't work. Here's the output from ping and route print. http://img.skitch.com/20091209-myg66enqkj7...7nxfkc1d2mu.jpg Quote Link to comment Share on other sites More sharing options...
taiyed14 Posted December 10, 2009 Share Posted December 10, 2009 I was setting my NIC to 10.168.1.1 that was the only way I could SSH into it. I've tried 10.168.1.254:1471 and it didn't work. Here's the output from ping and route print. http://img.skitch.com/20091209-myg66enqkj7...7nxfkc1d2mu.jpg ssh into the fon and run this command: ps aux |grep httpd what do you get? similar to this: root@OpenWrt:~# ps aux |grep httpd 853 root 1956 S /usr/sbin/httpd -p 80 -h /www -r OpenWrt 864 root 1960 S httpd -p 1471 -h /karma/www -r karma -c /karma/etc/ht if you don't get any output try this: root@OpenWrt:~# /etc/init.d/httpd start then try hitting the web interface. Quote Link to comment Share on other sites More sharing options...
Seshan Posted December 10, 2009 Share Posted December 10, 2009 I got this and that's it 728 root 1956 S /user/sbin/httpd -p 80 -h /www -r Openwrt I tried the command anyways, (Didn't think it would) and it says "Address already in use" Quote Link to comment Share on other sites More sharing options...
taiyed14 Posted December 10, 2009 Share Posted December 10, 2009 I got this and that's it 728 root 1956 S /user/sbin/httpd -p 80 -h /www -r Openwrt I tried the command anyways, (Didn't think it would) and it says "Address already in use" it looks like Jasager web interfaces isn't running. try running /etc/init.d/httpd stop (this stops the web server running on port 80) and then /etc/init.d/jasager start (this starts Jasager web server running on 1471) ps. what that error "Address already in use" is telling you, is that there is an http server already running on port 80. pps. if /etc/init.d/jasager start works for you, then enable jasager to run on boot: /etc/init.d/jasager enable now reboot the fon. Quote Link to comment Share on other sites More sharing options...
Seshan Posted December 10, 2009 Share Posted December 10, 2009 I'm getting a /etc/init.d/jasager: line19: syntax error:EOF in backqoute substitution :| Quote Link to comment Share on other sites More sharing options...
taiyed14 Posted December 10, 2009 Share Posted December 10, 2009 I'm getting a /etc/init.d/jasager: line19: syntax error:EOF in backqoute substitution :| Sounds like there is an issue with start up script. this is the one i have. #!/bin/sh /etc/rc.common # Copyright (C) 2008 dninja@gmail.com START=50 start() { include /lib/network scan_interfaces /karma/bin/create_option_list.rb [ -d /karma/www -a -f /karma/etc/httpd.conf ] && httpd -p 1471 -h /karma/www -r karma -c /karma/etc/ht iptables -I FORWARD -i ath0 -o br-lan -j ACCEPT logread -f | awk '{if ($0 ~ /(KARMA: |DHCPACK|DHCPDISCOVER|DHCPOFFER|DHCPREQUEST)/) {sub (/ \(.*\).*: tail -f /tmp/status.log | /karma/bin/logwatch & iwpriv ath0 karma 1 } stop() { killall httpd } Quote Link to comment Share on other sites More sharing options...
Seshan Posted December 10, 2009 Share Posted December 10, 2009 Ha, wow. I got it. Here was my problem. #!/bin/sh /etc/rc.common # Copyright (C) 2008 dninja@gmail.com START=50 start() { include /lib/network scan_interfaces /karma/bin/create_option_list.rb [ -d /karma/www -a -f /karma/etc/httpd.conf ] && httpd -p 1471 -h /karma/www -r karma -c /karma/etc/ht iptables -I FORWARD -i ath0 -o br-lan -j ACCEPT logread -f | awk '{if ($0 ~ /(KARMA: |DHCPACK|DHCPDISCOVER|DHCPOFFER|DHCPREQUEST)/) {sub (/ \(.*\).*: tail -f /tmp/status.log | /karma/bin/logwatch & iwpriv ath0 karma 1 <------- Same line ----------- } stop() { killall httpd } Your tut says "Add iwpriv ath0 karma 1 to the last line of the start() function in" So I added it to the last line. :P Maybe re word it or add a screen shot of what it should look like so other people don't have this problem. Well thanks for sticking with me and helping. :D Quote Link to comment Share on other sites More sharing options...
taiyed14 Posted December 10, 2009 Share Posted December 10, 2009 Tutorial updated. made it say "make iwpriv ath0 karma 1 the last line of the start() function." glad i could help! Quote Link to comment Share on other sites More sharing options...
d4rkfe4r Posted December 16, 2009 Share Posted December 16, 2009 Is there a difference between the FON2100 (La Fonera) and FON2201B (La Fonera+) for this? Quote Link to comment Share on other sites More sharing options...
digininja Posted December 16, 2009 Share Posted December 16, 2009 No, you can install Jasager on Fon, Fon+ and Fon2 but not Fon2n Quote Link to comment Share on other sites More sharing options...
d4rkfe4r Posted December 16, 2009 Share Posted December 16, 2009 I figured as much. Thanks digi! Quote Link to comment Share on other sites More sharing options...
edugibert Posted January 14, 2010 Share Posted January 14, 2010 But I have a question !! What you can do wit WiFi Pineapple ?¿ I now it's a Router but this router keep all the passwords and webs etc .. ?¿ Quote Link to comment Share on other sites More sharing options...
digininja Posted January 16, 2010 Share Posted January 16, 2010 Watch the show, there have been numerous examples of what Jasager can be used for. Quote Link to comment Share on other sites More sharing options...
Oni Posted January 27, 2010 Share Posted January 27, 2010 Just bought a replacement Fon from eBay and guess what?!?! It came with DD-WRT installed on it! Presumably I can just go ahead and flash with OpenWRT and follow the instructions? On a related note, I suspect the Jasager is the way forward in pen testing in the UK... as it seems most networks are WPA these days and these that arent have very little traffic. Quote Link to comment Share on other sites More sharing options...
Oni Posted January 28, 2010 Share Posted January 28, 2010 Sussed it! Never rush things! I had put the wrong clips in on a 5V FTDI. Took some time to create a 3.3V FTDI cable with some croc clips (from good old Maplins and RS Components) and managed to figure out what was going on. Reflashed with OpenWRT and hey-presto! The fon is back! :D Should mention its probably worth keeping hold of an RS232 cable as they are dead handy. Also, the timing does seem very important with the Fon. Waiting for the +, the redboot etc. Never appreciated that. I now have 2 Fons. Could sell one but they dont half seem handy! :D Any thoughts? I was thinking Wifi remote control or something since it has an RS232 output.... hmmm Quote Link to comment Share on other sites More sharing options...
howdy12 Posted March 19, 2010 Share Posted March 19, 2010 No, you can install Jasager on Fon, Fon+ and Fon2 but not Fon2n At first:Sorry; Im a N00b... Does it work also with the Fon2.0g??? Or is the version "g" not important? Do I have to downgrade the Firmware before installing the jasager??? Thx a lot Quote Link to comment Share on other sites More sharing options...
digininja Posted March 21, 2010 Share Posted March 21, 2010 Not sure exactly what version the 2.0g is but I'd guess that it is just a 2 in which case it should work. Quote Link to comment Share on other sites More sharing options...
howdy12 Posted March 24, 2010 Share Posted March 24, 2010 (edited) The difference of the 2g version is a USB-slot... https://shop.fon.com/FonShop/shop/DE/ShopCo...product=PRD-020 The USB-Extension would be nice...so I hope the jasager will work with this device too. Edited March 24, 2010 by howdy12 Quote Link to comment Share on other sites More sharing options...
digininja Posted March 25, 2010 Share Posted March 25, 2010 If the 2g is what everyone is just calling the the Fon2 then it will work fine. Quote Link to comment Share on other sites More sharing options...
howdy12 Posted March 26, 2010 Share Posted March 26, 2010 If the 2g is what everyone is just calling the the Fon2 then it will work fine. Exactly that's my question...anyone can help??? Thx a lot! Quote Link to comment Share on other sites More sharing options...
digininja Posted March 27, 2010 Share Posted March 27, 2010 I'd say they are the same thing as the only Fon2's that I've heard of are the original and the 2n which definitely won't work. Quote Link to comment Share on other sites More sharing options...
66.n1njam0nk3y.99 Posted March 29, 2010 Share Posted March 29, 2010 Question on the setup. Digininja has a setup at http://www.digininja.org/jasager/installation.php and there is this one. The question is which one is the newer way to do the install? Just questioning it because I see this was posted in 2008. Quote Link to comment Share on other sites More sharing options...
digininja Posted March 29, 2010 Share Posted March 29, 2010 New way is to download the firmware from the site and simply flash that on. No messing around with installing packages, just flash and go. Quote Link to comment Share on other sites More sharing options...
imtifade Posted April 1, 2010 Share Posted April 1, 2010 umm im about to buy this but the version II and if i buy it from the hak5 store dose it come installed with every thing and ready to use right out of the package. and if so what are the wares need to get this going on Linux? p.s. Linux is awesome. p.p.s. im sorry im really tired so sorry for spelling errors or not making sense. Quote Link to comment Share on other sites More sharing options...
digininja Posted April 2, 2010 Share Posted April 2, 2010 The Fon comes ready to use but you still have to do work on your side for stuff like ICS, read the forums for some examples of how to do this. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.