钢镚儿的开发日志
耐得住寂寞 方能一鸣惊人

北京连通光猫改桥接

2025年09月23日
网络

适用于比较老的光猫,打开浏览器调试模式,在 console 中输入以下代码,然后回车即可

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
document.getElementById('loginfrm').setAttribute('method','get')
document.getElementById('username').value = 'CUAdmin'
document.getElementById('password').value = 'CUAdmin'

function submitFrm(){
with(document.forms[0]){
if ( password.value.length == 0 ) {
return;
}
if ( password.value.length > 32 ) {
return;
}
}
document.getElementById('loginfrm').submit();
}
submitFrm()

如果喜欢这篇文章,可以给作者评个份哦~

转载本站文章请注明作者“钢镚儿”及原文出处。

文章目录:

成就墙:

文章分类:

开发 网络

文章标签: