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()
-
Where I am
2 Comments
That’s really cool. I like it. Being able to do things like this is one reason programming is for everyone.
Thanks. I also noticed that if you change the ip, you can log in someone nearby.
Post a Comment