fix ticket

This commit is contained in:
RainSun 2020-03-19 14:39:00 +08:00
parent e19621d35e
commit 497d222813
2 changed files with 3 additions and 3 deletions

View File

@ -2,9 +2,9 @@
workers = 4
# 监听内网端口5000【按需要更改】
# coc
# bind = '127.0.0.1:5003'
bind = '127.0.0.1:5003'
# beta
bind = '127.0.0.1:5005'
# bind = '127.0.0.1:5005'
# 设置守护进程【关闭连接时,程序仍在运行】
daemon = True
# 设置超时时间120s默认为30s。按自己的需求进行设置

View File

@ -34,7 +34,7 @@ def connection(username,password,phone):
r = s.get(url='http://portal-cust-edu-cn-s.webvpn.cust.edu.cn:8118/custp/index')
soup=BeautifulSoup(r.text,'html.parser')
try:
ip = soup.findAll(name='a')[6]['href'][7:].split("-")
ip = soup.findAll(name='a')[7]['href'][7:].split("-")
except:
return {'errcode': 101, 'errmsg':'账号或者密码错误'}
r = s.get(url='http://mysso-cust-edu-cn-s.webvpn.cust.edu.cn:8118/cas/login?service=http://'+ip[0]+'.'+ip[1]+'.'+ip[2]+'.'+ip[3]+':8080/welcome',allow_redirects=False)