求助啊,路由后台密码被改了

登陆页面源码:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>TENDA 11N无线路由器登录界面</title>
<SCRIPT language=JavaScript src="gozila.js"></SCRIPT>
<SCRIPT language=JavaScript src="menu.js"></SCRIPT>
<SCRIPT language=JavaScript src="table.js"></SCRIPT>
<SCRIPT language=JavaScript>
var error=new Array("WAN口无网线连接!","无因特网访问,请检查您的上网设置!");
message="1";
message2="0";
function init(){
document.Login.Password.value="";
document.Login.Password.focus();
if(message==0)
{
 showmessage=error[0];
}
else if(message==2 || message==3)
{
 showmessage=error[1];
}
else
{
 showmessage="&nbsp;";
}
if(message2 == 0)
{
//from lan,donnt display login tip
show_hide("login_tip",0);	
}
document.getElementById("message").innerHTML=showmessage;
}

function enterDown(f,e)
{
var char_code = e.charCode ? e.charCode : e.keyCode;	//解决火狐浏览器不支持event事件的问题。
if(char_code == 13)
{
preSubmit(f);
}else{
return;
}
return;
}

function preSubmit(f)
{	
    if(f.nocheck.checked)
{
 	f.checkEn.value=1;
}
else
{
 	f.checkEn.value=0;
}
if(f.Password.value=="")
{
alert("密码不能为空!"); 
f.Password.focus();
return false;
}
if(f.Password.value.length>13)
{
    alert("密码的长度不能超过12个字符!"); 
f.Password.focus();
return false;
}
f.submit();
}

</script>
<link rel=stylesheet type=text/css href=style.css>
<style type="text/css">
.login{COLOR: #000000; FONT-FAMILY: "宋体", "Times New Roman"; font-size:12px; border:solid 1px #fbac36; line-height:30px; margin-top:100px;}
.STYLE1 {color: #FF0000}
</style>
</head>

<body onLoad="init()">
<form name="Login" method="post" action="/LoginCheck">
<input type=hidden name=Username value="admin">
<input type="hidden" name="checkEn" value="0">
<table width="400" border="0" align="center" cellpadding="0" cellspacing="0" class="login">
<tr><td style="background-color:#fbac36; height:35px;" colspan="2"><font size="+1" style="font-weight:bold"> &nbsp;&nbsp;登录</font></td></tr>
  <tr>
    <td width="131" align="right">&nbsp;</td>
    <td width="267"><span class="STYLE1">
      <div id="message"></div></span></td>
  </tr>
  <tr>
    <td width="131" align="right">密码:</td>
    <td><input type="text" name="Password" maxlength="12" style="width:130px;" onKeyDown="enterDown(document.Login,event);"/>
    <span class="STYLE1">(原始密码:admin)</span></td>
<td style="display:none;"><input type="text" name="invalid" /></td>
  </tr>
  <tr id="login_tip">
    <td >&nbsp;</td>
    <td><input type="checkbox" name="nocheck"/>
    不再提示</td>
  </tr>
  <tr>
    <td height="35" colspan="2" align="center" valign="bottom"><input type="button" value="确定" class="button1" onMouseOver="style.color='#FF9933'" onMouseOut="style.color='#000000'" onClick="preSubmit(document.Login)">&nbsp;&nbsp;<input type="reset" value="取消" class="button1" onMouseOver="style.color='#FF9933'" onMouseOut="style.color='#000000'"></td>
  </tr>
  <tr>
    <td colspan="2" align="center">&nbsp;</td>
  </tr>
</table>
</form>
</body>
</html>

有没有办法破解?
回复列表(8|显示机器人聊天)
添加新回复
回复需要登录