Skip to main content

Automatically login to Guest Wifi on Cisco routers

If you're near a coffee shop with a free Wifi network with a guest login that uses a Cisco router, you can use a simple script to automatically login so you have free Wifi without any annoying login pages!

I reverse engineered the compressed JS of the login page to find out how login works (won't go into details it was a few years ago). Anyways, it turns out you can login with a simple curl request. Here's how.


Getting required parameters


First, manually connect to the Wifi, but don't login!.

Now run `ifconfig` or `ipconfig` to get the MAC address of the wifi card of your device and the ipaddress it assigned you.

The MAC address will be a series of hex separated by colons like:  `00:AB:CD:EF...`. Note this down.

The IP address will 4 sets of numbers  like `192.168.3.100`.

Next get the guest password from the Coffee shop, usually they have them posted inside or just ask them (and buy a cup of coffee!).

Login command

Now that we have everything login is pretty simple.

Use `curl` or equivlalent and run the following:

curl -H "X-JNAP-Action: http://cisco.com/jnap/guestnetwork/Authenticate" --data '{"macAddress":"YO:UR:MA:CA:DD:RS","ipAddress":"192.168.3.XX","password":"The Password"}' -X POST http://192.168.3.1:10080/JNAP/ 


You should get back:

{"result": "OK"}

And after that you're logged in (for a day). Simple right?

Setup with DD-WRT 

If you have a router with DD-WRT, you can configure it to do this using cron. Login to the DD-WRT dashboard, click on the Administration tab and then Commands.  Get the IP and MAC address (of the router). Paste the script in and do save as startup and custom script.
#!/bin/sh
curl -H "X-JNAP-Action: http://cisco.com/jnap/guestnetwork/Authenticate" --data '{"macAddress":"YO:UR:MA:CA:DD:RS","ipAddress":"192.168.3.XX","password":"The Password"}' -X POST http://192.168.3.1:10080/JNAP/ 

Now click the Management subtab, enable cron, and paste in:
0,10,20,30,40,50 * * * * root sh /tmp/custom.sh


Save and you're good to go!

Comments

Please note that unlike other methods, this is still accepting the user agreement and is thus completely legal (it's just automating the process of doing it manually). You're still required to follow the rules posted and respect their usage guidelines.


Enjoy your less annoying free Wifi!  Don't forget to support the local shop by buying coffee there every now and then! And give them a big tip with all the money you're saving by being tech savy.


Happy surfing!


Comments

Popular posts from this blog

Kivy vs React-Native for building cross platform mobile apps

I've built three apps now using Kivy and one with React-Native, just wanted to share my thoughts on both. Just a warning, I am strongly biased towards python and this is all based on opinion and experience and is thus worth what you pay for it. I don't claim to be an expert in either of these, just have worked with each for several months.  If something is incorrect I'd love to hear advice. Kivy Demo of one of the apps Pros: Nice to be able to run natively on the desktop WITHOUT a simulator Python is easy to work with Use (almost) any python library Very easy to create custom widgets Kivy properties and data binding just work. Way nicer than React's "state" / flux / redux whatever you want to call it (stupid?).  Native interfaces (pyjnius) and (pyobjc) Runs and feels pretty smooth Cons: Default widget toolkit looks like Android 4.4. Requiring you use your own widgets or a theming kit like KivyMD  if styling bothers you Creating dy

Control Systems in Python - Part 1 - Bode and Step Response

I hate matlab with passion, yet sadly, nearly everyone uses it.  I'm a fan of Python and open source stuff so here's a simple article on how to do some common control systems stuff in Python. First we need to make sure the environment is setup. Install IPython (or you can use any other python shell, but a unicode supported shell is preferred) Install python-control (numpy, scipy) Install sympy These should do if your on Ubuntu/debian: sudo apt - get install python - sympy python-numpy python-scipy python-matplotlib ipython Then you need to install python control, see How to download and install python-control Intro to using Sympy Open ipython and run the following: import sympy from sympy import * sympy.init_printing() s = Symbol('s') Now we can do things like define transfer functions using the symbolic variable s. We can expand the bottom using the .simplify() method and we can do something more complex like... which is really nice because it

Control Systems in Python - Part 2 - Routh Hurwitz

In my last post Control Systems in Python Part 1 , i described how to setup and use Python for doing some basic plotting of transfer functions. One of the biggest benefits of using sympy vs numeric packages like matlab/numpy/scipy is the fact that you can use symbolic variables. This post includes a function for computing the Routh Hurwitz table (Note: It does not work for row's of zeros). Lets do my control systems design homework problem together :) (Warning: I have not verified if this answer is right so please correct me if it’s not!) The Problem The problem is DP 9.11 from Dorf & Bishop’s Modern Control Systems. ISBN 0136024580. Basically we have to design a controller to compensate for a system with a time delay. The controller is: And the system is: First we approximate the exponential term with a 2nd order polynomial using pade(0.4,2) such that: Thus the approximated system is: Using frequency response methods, design the controller so that th