光猫型号天邑TEWA-800E,硬件版本V3.0,软件版本Tianyi_V3.1.2。
打开管理员界面
chrome F12 console 输入以下 回车
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()