Thursday, February 27, 2014

Cyberoam client in Python

### THIS IS THE CYBERROAM CLIENT IMPLEMENTATION USING PYTHON
def cyberoamClient(a):
from bs4 import BeautifulSoup
import urllib,urllib2
#import win32api
res = ""
while res != u'LIVE':
pswd = raw_input('Please enter the pswd: ') ;
data = urllib.urlencode( {'a':'1370004975642','mode':'191','password':pswd,'username':'User_Name'} );
req = urllib2.Request('http://192.168.1.250:8090/httpclient.html',data)
resp = urllib2.urlopen(req) ;
html = resp.read();
soup = BeautifulSoup(html);
res=soup.select('status');
res = ( (res[0]).contents )[0];
if res == u'LIVE':
print 'Your are connected .'
break
print html ;
view raw gistfile1.py hosted with ❤ by GitHub
### THIS IS THE CYBERROAM CLIENT IMPLEMENTATION USING PYTHON
def cyberoamClient(a):
from bs4 import BeautifulSoup
import urllib,urllib2
#import win32api
res = ""
while res != u'LIVE':
pswd = raw_input('Please enter the pswd: ') ;
data = urllib.urlencode( {'a':'1370004975642','mode':'191','password':pswd,'username':'User_Name'} );
req = urllib2.Request('http://192.168.1.250:8090/httpclient.html',data)
resp = urllib2.urlopen(req) ;
html = resp.read();
soup = BeautifulSoup(html);
res=soup.select('status');
res = ( (res[0]).contents )[0];
if res == u'LIVE':
print 'Your are connected .'
break
print html ;
view raw gistfile1.py hosted with ❤ by GitHub