This one logs me into U of M Wireless

import getpass, socket, urllib

url = 'https://wireless.netaccess.umn.edu/cgi-bin/x5.cgi'

args = {'opt': 'auth'}
args['ip'] = socket.gethostbyname(socket.gethostname())
args['uid'] = 'ande7966'
args['upass'] = getpass.getpass()

response = urllib.urlopen(url, urllib.urlencode(args))
print response.read()
response.close()

2 Comments

  1. Posted January 31, 2008 at 7:58 am | Permalink

    That’s really cool. I like it. Being able to do things like this is one reason programming is for everyone.

  2. Collin Anderson
    Posted January 31, 2008 at 9:02 am | Permalink

    Thanks. I also noticed that if you change the ip, you can log in someone nearby.

Post a Comment

Your email is never published nor shared.