Drcom校园网自动登录

主要是懒得每次上网都需要打开网页=。=

IPV4登录只需要一步,而使用IPV4&IPV6则需要先申请IPV6地址,再登录。

logon.bat

@echo off
mode con: cols=40 lines=15
color 0a
title  登录ing...
rem 获得IP
wget "https://lgn6.bjut.edu.cn/V6?https://lgn.bjut.edu.cn" --post-data="DDDDD=学号&upass=密码&v46s=0&v6ip=&f4serip=172.30.201.2&0MKKey=" -O ipv6.html
ping 127.0.0.1 -n 2 >nul

rem 登录 不显示结果--quiet
set user="DDDDD=学号&upass=密码&0MKKey=Login&v6ip="
@for /f "delims=" %%t in ('lua ip.lua') do set ip=%%t
wget "https://lgn.bjut.edu.cn" --post-data=%user%%ip% -O result.html
ping www.baidu.com
exit

以上主要是为了申请IPV6地址。

生成的ipv6.html如下:



如上,发post请求就可以使用IPV6&IPV4登录了。

ip.lua

local file = io.open("ipv6.html", "r")
local html = file:read("*a")
file:close()
local i, j = string.find(html, "%w+:%w+:%w+:%w+:%w+:%w+:%w+:%w+")
print(string.sub(html, i, j))

以上打印输出IPV6地址


@echo off
mode con: cols=40 lines=15
color 0a
title  下线ing...
rem 下线
wget "https://lgn.bjut.edu.cn/F.htm" --delete-after
ping www.baidu.com
exit
利用wget( https://eternallybored.org/misc/wget/)
发送post请求。

登录是不需要验证的,那么暴力破解别人的账号也是很轻松的。



实际上只使用IPV4登录就简单多了:

wget https://lgn.bjut.edu.cn/ --post-data="DDDDD=账号&upass=密码&v46s=0&v6ip=&f4serip=172.30.201.2&0MKKey=" --delete-after



以上测试,对所有Drcom客户端都是类似的。

你可能感兴趣的:(其他)