IALpyV0.0

First of all congrats to ankur for making his version of IAL in py !!!

Here is my simple version ( u need python installed )

Created on 12th September

import urllib, urllib2,time

 #Enter Username Here
username=                  

#Enter Password                       
password=                                          

link = "http://192.168.150.2:8080/clntAuth/clntAuth_main.jsp"
url = {'loginID':username,'loginpassword':password,'method':'POST'}
enc = urllib.urlencode(url)
poster = urllib2.Request(link, enc)
response = urllib2.urlopen(poster)

Leave a Reply

Your email address will not be published. Required fields are marked *