logo头像

耐得住寂寞,方能一鸣惊人

北京连通光猫改桥接

打开浏览器调试模式,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()