Skip to content

Instantly share code, notes, and snippets.

@pizzapanther
Created August 11, 2017 12:33
Show Gist options
  • Select an option

  • Save pizzapanther/ebe9f2a3a6ce500b90694f3ccb5cd4ea to your computer and use it in GitHub Desktop.

Select an option

Save pizzapanther/ebe9f2a3a6ce500b90694f3ccb5cd4ea to your computer and use it in GitHub Desktop.
Houston Airport Wifi hack to get past their bad certificate
import requests
payload = {
'cmd': 'authenticate',
'user': 'hou-user',
'password': '45453395'
}
r = requests.post('https://securelogin.arubanetworks.com/cgi-bin/login', payload, verify=False)
@pizzapanther
Copy link
Copy Markdown
Author

If that username and password doesn't work, go to their login page and inspect the form inputs to get an updated username and password.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment