- 学校给的SSL VPN服务很不稳定,而且需要安装客户端/浏览器插件。
- 学校提供的WebVPN服务所能选择的网页很少,cg平台和oj等常用网页都没有提供。
- 通过分析WebVPN的链接发现,都是以
https://webvpn.neu.edu.cn/http/62304135386136393339346365373340
开头。 - 这个链接后面的内容实际上是通过AES-128加密的域名,再加上url后半段。
- 安装pycrypto:
pip3 install pycrypto
- 将下面脚本中的
url
改为你想要访问的域名。
from Crypto.Cipher import AES
url = 'neucsecg.neu.edu.cn'
cipher = AES.new(
'b0A58a69394ce73@',
AES.MODE_CFB,
'b0A58a69394ce73@',
segment_size=128)
cipher_text = cipher.encrypt(url.ljust(len(url)//16*16+16, '\0').encode())
res = 'https://webvpn.neu.edu.cn/http/62304135386136393339346365373340' \
+ cipher_text[:len(url)].hex()
print(res)