首页
社区
课程
招聘
歌华宽带的对付大家的新武器--大家谁给分析一下?
2004-7-15 01:01 5454

歌华宽带的对付大家的新武器--大家谁给分析一下?

2004-7-15 01:01
5454
歌华宽带的对付大家的新武器--大家谁给分析一下?
以下代码是我使用的歌华宽带的"新武器",他使许多使用路由器的朋友忽然无法共享上网了.
具体的情况是这个样子的:
当用户首次访问网络时,浏览器会自动打开歌华的登陆网页,要求输入用户ID和口令.输入正确,则弹出含有以下代码的窗口.这个窗口歌华要求用户在上网时保持开启状态,如果关闭,则就会使网络断开连接.

大家有谁比较熟悉JAVASCRIPT的,帮忙给分析一下吧.:)
------------------------------
<html>
<head>
<meta http-equiv="pragma" content="no-cache; charset=GB2312">
<title>宽带连接</title>
<link rel="stylesheet" href='http://219.237.129.130/portal/template/common.css" type="text/css">
<SCRIPT LANGUAGE=javascript>
<!--
var parselimit=180;
var limitNum = 1;
var timerID;

var priveLinkStatues;
if(0 == 0)
{
priveLinkStatues='1';
}
else
{
priveLinkStatues='0';
}
var unlinkCount =5;
var unlink =5;

var beatstate;
var subWin;
var nowDay = new Date();
var nowTime = nowDay.getTime();
var bsure =false;
var handleClose = 1;

var fromTime=1089822901481;
var amounts = nowTime - fromTime;

function getCookie(Name) {
var search = Name + "=";
if(document.cookie.length > 0) {
offset = document.cookie.indexOf(search);
if(offset != -1) {
offset += search.length;
end = document.cookie.indexOf(";", offset);
if(end == -1) end = document.cookie.length;
return unescape(document.cookie.substring(offset, end));
}
else return('');
}
else return('');
}

function fclose()
{
if(false == bsure){
if(getCookie("filterFlag")=='true'){
document.links[0].href='http://219.237.129.130/portal/CloseConnWin.jsp?Language=Chinese&strPrivateIP=219.237.69.144&PublicIP=219.237.69.144&strOldPrivateIP=219.237.69.144&strOldPublicIP=219.237.69.144&sessionID=-2924196199613981373&StartTime=1089822901481&heartbeat=180&shkOvertime=900&linkStatues=0&strUserPortNo=A1_5200_0-vlan-03-0000@vlan&iIPCONFIG=0&iTimeStamp=1085075951582&iUserStatus=99';
document.links[0].click();
}else{
subWin=window.open('http://219.237.129.130/portal/CloseConnWin.jsp?Language=Chinese&strPrivateIP=219.237.69.144&PublicIP=219.237.69.144&strOldPrivateIP=219.237.69.144&strOldPublicIP=219.237.69.144&sessionID=-2924196199613981373&StartTime=1089822901481&heartbeat=180&shkOvertime=900&linkStatues=0&strUserPortNo=A1_5200_0-vlan-03-0000@vlan&iIPCONFIG=0&iTimeStamp=1085075951582&iUserStatus=99',
'connpage'+nowTime,'height=395px,width=370px');
}
}
}

function MM_findObj(n, d) {
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && document.getElementById) x=document.getElementById(n); return x;
}

function MM_showHideLayers() {
var i,p,v,obj,args=MM_showHideLayers.arguments;
for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v; }
obj.visibility=v; }
}

function shownum(imageid,num){
for(var i = 0; i < 10; i++){
if (i == num){
MM_showHideLayers(imageid+i,'','show');}
else{
MM_showHideLayers(imageid+i,'','hide');}
}
}

function MyConfirm(){
bsure = true;
}

function extract(h,m,s)
{
if (!document.images)return;
if(h<10) {
shownum("clocksb",0);
shownum("clockss",0);
shownum("clocksg",h);
}else if(h<100) {
shownum("clocksb",0);
shownum("clockss",Math.floor(h/10));
shownum("clocksg",(h%10));
}else {
shownum("clocksb",Math.floor((h/100)%10));
shownum("clockss",Math.floor((h%100)/10));
shownum("clocksg",(h%10));
}
if (m<10) {
shownum("clockfs",0);
shownum("clockfg",m);
} else {
shownum("clockfs",Math.floor(m/10));
shownum("clockfg",(m%10));
}
if (s<10) {
shownum("clockms",0);
shownum("clockmg",s);
} else {
shownum("clockms",Math.floor(s/10));
shownum("clockmg",(s%10));
}
}

function show3()
{
if (!document.images)
{
timerID = setTimeout("show3()",1000);
return;
}
var hours=0;
var minutes=0;
var seconds=0;
var currentDay = new Date();
var currentTime= currentDay.getTime();
var amounts = currentTime - fromTime;
var theSeconds = Math.floor(amounts/1000);

hours = Math.floor(theSeconds/3600);
minutes = Math.floor((theSeconds%3600)/60);
seconds = theSeconds%60;
extract(hours,minutes,seconds);

limitNum-=1;

if(limitNum == 0)
{ /*obtain refresh result*/
beatstate = window.document.formInLogin.myaction.value;
if (priveLinkStatues == window.document.formInLogin.linkStatues.value)
{
unlink-=1;
if (0 == unlink)
{
beatstate=5;
}
}
else
{
parselimit = window.document.formInLogin.heartbeat.value;
if(0<parselimit)
{
unlinkCount =(window.document.formInLogin.shkOvertime.value)/(window.document.formInLogin.heartbeat.value);

}

unlink=unlinkCount;
}

if((parseInt(beatstate,10) == 5) || (parseInt(beatstate,10) == 3) || (parseInt(beatstate,10) == 2))
{
clearTimeout(timerID);
bsure = true;
handleClose = 5;
if(parseInt(beatstate,10) == 5)
{
alert("连接超时,已经下线。");
}
else
{
alert("您的宽带连接已经断开。");
}
parent.close();
}
else if(parseInt(beatstate,10) == 1)
{
clearTimeout(timerID);
bsure = true;
handleClose = 5;
parent.close();
}
else if(parseInt(beatstate,10) == 4)
{
clearTimeout(timerID);
bsure = true;
handleClose = 5;
alert("系统将要关闭,请断开连接。");
}

if(priveLinkStatues != window.document.formInLogin.linkStatues.value)
{
priveLinkStatues = window.document.formInLogin.linkStatues.value;
/*refresh page*/
if(priveLinkStatues == '0')
{
window.parent.downFrame_a.location.replace('http://219.237.129.130/portal/loginDown.jsp?Language=Chinese&strPrivateIP=219.237.69.144&PublicIP=219.237.69.144&strOldPrivateIP=219.237.69.144&strOldPublicIP=219.237.69.144&sessionID=-2924196199613981373&StartTime=1089822901481&heartbeat=180&shkOvertime=900&linkStatues=1&strUserPortNo=A1_5200_0-vlan-03-0000@vlan&iUserStatus=' + window.document.formInLogin.iUserStatus.value + '&iIPCONFIG=0&iTimeStamp=' + window.document.formInLogin.iTimeStamp.value );
}
else if(priveLinkStatues == '1')
{
window.parent.downFrame_a.location.replace('http://219.237.129.130/portal/loginDown.jsp?Language=Chinese&strPrivateIP=219.237.69.144&PublicIP=219.237.69.144&strOldPrivateIP=219.237.69.144&strOldPublicIP=219.237.69.144&sessionID=-2924196199613981373&StartTime=1089822901481&heartbeat=180&shkOvertime=900&linkStatues=0&strUserPortNo=A1_5200_0-vlan-03-0000@vlan&iUserStatus=' + window.document.formInLogin.iUserStatus.value + '&iIPCONFIG=0&iTimeStamp=' + window.document.formInLogin.iTimeStamp.value );
}
}
else
{
priveLinkStatues = window.document.formInLogin.linkStatues.value;
/*refresh page*/
if(priveLinkStatues == '0')
{
window.parent.downFrame_b.location.replace('http://219.237.129.130/portal/loginDown.jsp?Language=Chinese&strPrivateIP=219.237.69.144&PublicIP=219.237.69.144&strOldPrivateIP=219.237.69.144&strOldPublicIP=219.237.69.144&sessionID=-2924196199613981373&StartTime=1089822901481&heartbeat=180&shkOvertime=900&linkStatues=1&strUserPortNo=A1_5200_0-vlan-03-0000@vlan&iUserStatus=' + window.document.formInLogin.iUserStatus.value + '&iIPCONFIG=0&iTimeStamp=' + window.document.formInLogin.iTimeStamp.value );
}
else if(priveLinkStatues == '1')
{
window.parent.downFrame_b.location.replace('http://219.237.129.130/portal/loginDown.jsp?Language=Chinese&strPrivateIP=219.237.69.144&PublicIP=219.237.69.144&strOldPrivateIP=219.237.69.144&strOldPublicIP=219.237.69.144&sessionID=-2924196199613981373&StartTime=1089822901481&heartbeat=180&shkOvertime=900&linkStatues=0&strUserPortNo=A1_5200_0-vlan-03-0000@vlan&iUserStatus=' + window.document.formInLogin.iUserStatus.value + '&iIPCONFIG=0&iTimeStamp=' + window.document.formInLogin.iTimeStamp.value );
}
}

limitNum=parselimit;

}

timerID = setTimeout("show3()",1000);
}
//-->
</SCRIPT>
</head>
<body bgcolor="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onunload="java script:fclose();" onload="java script:show3();" oncontextmenu="return false">

<div id="clocksb0" style="position:absolute; left:30px; top:210px; width:16px; height:21px; z-index:1; visibility: visible;"><img src='http://219.237.129.130/portal/template/images/clock/c0.gif" width="16" height="21"></div>
<div id="clocksb1" style="position:absolute; left:30px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c1.gif" width="16" height="21"></div>
<div id="clocksb2" style="position:absolute; left:30px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c2.gif" width="16" height="21"></div>
<div id="clocksb3" style="position:absolute; left:30px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c3.gif" width="16" height="21"></div>
<div id="clocksb4" style="position:absolute; left:30px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c4.gif" width="16" height="21"></div>
<div id="clocksb5" style="position:absolute; left:30px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c5.gif" width="16" height="21"></div>
<div id="clocksb6" style="position:absolute; left:30px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c6.gif" width="16" height="21"></div>
<div id="clocksb7" style="position:absolute; left:30px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c7.gif" width="16" height="21"></div>
<div id="clocksb8" style="position:absolute; left:30px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c8.gif" width="16" height="21"></div>
<div id="clocksb9" style="position:absolute; left:30px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c9.gif" width="16" height="21"></div>
<div id="clockss0" style="position:absolute; left:46px; top:210px; width:16px; height:21px; z-index:1; visibility: visible;"><img src='http://219.237.129.130/portal/template/images/clock/c0.gif" width="16" height="21"></div>
<div id="clockss1" style="position:absolute; left:46px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c1.gif" width="16" height="21"></div>
<div id="clockss2" style="position:absolute; left:46px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c2.gif" width="16" height="21"></div>
<div id="clockss3" style="position:absolute; left:46px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c3.gif" width="16" height="21"></div>
<div id="clockss4" style="position:absolute; left:46px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c4.gif" width="16" height="21"></div>
<div id="clockss5" style="position:absolute; left:46px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c5.gif" width="16" height="21"></div>
<div id="clockss6" style="position:absolute; left:46px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c6.gif" width="16" height="21"></div>
<div id="clockss7" style="position:absolute; left:46px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c7.gif" width="16" height="21"></div>
<div id="clockss8" style="position:absolute; left:46px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c8.gif" width="16" height="21"></div>
<div id="clockss9" style="position:absolute; left:46px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c9.gif" width="16" height="21"></div>
<div id="clocksg0" style="position:absolute; left:62px; top:210px; width:16px; height:21px; z-index:1; visibility: visible;"><img src='http://219.237.129.130/portal/template/images/clock/c0.gif" width="16" height="21"></div>
<div id="clocksg1" style="position:absolute; left:62px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c1.gif" width="16" height="21"></div>
<div id="clocksg2" style="position:absolute; left:62px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c2.gif" width="16" height="21"></div>
<div id="clocksg3" style="position:absolute; left:62px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c3.gif" width="16" height="21"></div>
<div id="clocksg4" style="position:absolute; left:62px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c4.gif" width="16" height="21"></div>
<div id="clocksg5" style="position:absolute; left:62px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c5.gif" width="16" height="21"></div>
<div id="clocksg6" style="position:absolute; left:62px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c6.gif" width="16" height="21"></div>
<div id="clocksg7" style="position:absolute; left:62px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c7.gif" width="16" height="21"></div>
<div id="clocksg8" style="position:absolute; left:62px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c8.gif" width="16" height="21"></div>
<div id="clocksg9" style="position:absolute; left:62px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c9.gif" width="16" height="21"></div>
<div id="clockmh" style="position:absolute; left:78px; top:210px; width:16px; height:21px; z-index:1; visibility: visible;"><img src='http://219.237.129.130/portal/template/images/clock/colon.gif" width="16" height="21"></div>
<div id="clockfs0" style="position:absolute; left:94px; top:210px; width:16px; height:21px; z-index:1; visibility: visible;"><img src='http://219.237.129.130/portal/template/images/clock/c0.gif" width="16" height="21"></div>
<div id="clockfs1" style="position:absolute; left:94px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c1.gif" width="16" height="21"></div>
<div id="clockfs2" style="position:absolute; left:94px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c2.gif" width="16" height="21"></div>
<div id="clockfs3" style="position:absolute; left:94px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c3.gif" width="16" height="21"></div>
<div id="clockfs4" style="position:absolute; left:94px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c4.gif" width="16" height="21"></div>
<div id="clockfs5" style="position:absolute; left:94px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c5.gif" width="16" height="21"></div>
<div id="clockfs6" style="position:absolute; left:94px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c6.gif" width="16" height="21"></div>
<div id="clockfs7" style="position:absolute; left:94px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c7.gif" width="16" height="21"></div>
<div id="clockfs8" style="position:absolute; left:94px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c8.gif" width="16" height="21"></div>
<div id="clockfs9" style="position:absolute; left:94px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c9.gif" width="16" height="21"></div>
<div id="clockfg0" style="position:absolute; left:110px; top:210px; width:16px; height:21px; z-index:1; visibility: visible;"><img src='http://219.237.129.130/portal/template/images/clock/c0.gif" width="16" height="21"></div>
<div id="clockfg1" style="position:absolute; left:110px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c1.gif" width="16" height="21"></div>
<div id="clockfg2" style="position:absolute; left:110px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c2.gif" width="16" height="21"></div>
<div id="clockfg3" style="position:absolute; left:110px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c3.gif" width="16" height="21"></div>
<div id="clockfg4" style="position:absolute; left:110px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c4.gif" width="16" height="21"></div>
<div id="clockfg5" style="position:absolute; left:110px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c5.gif" width="16" height="21"></div>
<div id="clockfg6" style="position:absolute; left:110px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c6.gif" width="16" height="21"></div>
<div id="clockfg7" style="position:absolute; left:110px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c7.gif" width="16" height="21"></div>
<div id="clockfg8" style="position:absolute; left:110px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c8.gif" width="16" height="21"></div>
<div id="clockfg9" style="position:absolute; left:110px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c9.gif" width="16" height="21"></div>
<div id="clockmh" style="position:absolute; left:126px; top:210px; width:16px; height:21px; z-index:1; visibility: visible;"><img src='http://219.237.129.130/portal/template/images/clock/colon.gif" width="16" height="21"></div>
<div id="clockms0" style="position:absolute; left:142px; top:210px; width:16px; height:21px; z-index:1; visibility: visible;"><img src='http://219.237.129.130/portal/template/images/clock/c0.gif" width="16" height="21"></div>
<div id="clockms1" style="position:absolute; left:142px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c1.gif" width="16" height="21"></div>
<div id="clockms2" style="position:absolute; left:142px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c2.gif" width="16" height="21"></div>
<div id="clockms3" style="position:absolute; left:142px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c3.gif" width="16" height="21"></div>
<div id="clockms4" style="position:absolute; left:142px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c4.gif" width="16" height="21"></div>
<div id="clockms5" style="position:absolute; left:142px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c5.gif" width="16" height="21"></div>
<div id="clockms6" style="position:absolute; left:142px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c6.gif" width="16" height="21"></div>
<div id="clockms7" style="position:absolute; left:142px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c7.gif" width="16" height="21"></div>
<div id="clockms8" style="position:absolute; left:142px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c8.gif" width="16" height="21"></div>
<div id="clockms9" style="position:absolute; left:142px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c9.gif" width="16" height="21"></div>
<div id="clockmg0" style="position:absolute; left:158px; top:210px; width:16px; height:21px; z-index:1; visibility: visible;"><img src='http://219.237.129.130/portal/template/images/clock/c0.gif" width="16" height="21"></div>
<div id="clockmg1" style="position:absolute; left:158px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c1.gif" width="16" height="21"></div>
<div id="clockmg2" style="position:absolute; left:158px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c2.gif" width="16" height="21"></div>
<div id="clockmg3" style="position:absolute; left:158px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c3.gif" width="16" height="21"></div>
<div id="clockmg4" style="position:absolute; left:158px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c4.gif" width="16" height="21"></div>
<div id="clockmg5" style="position:absolute; left:158px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c5.gif" width="16" height="21"></div>
<div id="clockmg6" style="position:absolute; left:158px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c6.gif" width="16" height="21"></div>
<div id="clockmg7" style="position:absolute; left:158px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c7.gif" width="16" height="21"></div>
<div id="clockmg8" style="position:absolute; left:158px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c8.gif" width="16" height="21"></div>
<div id="clockmg9" style="position:absolute; left:158px; top:210px; width:16px; height:21px; z-index:1; visibility: hidden;"><img src='http://219.237.129.130/portal/template/images/clock/c9.gif" width="16" height="21"></div>
<form name="formInLogin" method="post" action="/portal/logout.jsp" target="_parent">
<table border="0" cellpadding="0" cellspacing="0" width="340" align="center">
<tr valign="top">
<td align='center'>
<IMG width='195' height='206' src='http://219.237.129.130/portal/template/images/time.jpg'>
</td>
</tr>
</table>
<table align="center" height="30">
<tr>
<td width="50%"></td>
<td><font class="tWhite">(本时钟仅供参考!)</font></td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="340" align="center">
<tr valign="top">
<td align="center">
<table width="295" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td class="tWhite">您已经建立了宽带上网的连接,这是一项收费服务,如果您想继续使用宽带上网功能,请不要关闭本窗口。如果您想断开宽带上网的连接,请按"断开"按钮。</td>
</tr>
<tr><td height='5'></td></tr>
</table>
<input type="hidden" name="Language" value="Chinese">

<input type="hidden" name="strPrivateIP" value="219.237.69.144">
<input type="hidden" name="PublicIP" value="219.237.69.144">
<input type="hidden" name="strOldPrivateIP" value="219.237.69.144">
<input type="hidden" name="strOldPublicIP" value="219.237.69.144">

<input type="hidden" name="sessionID" value="-2924196199613981373">
<input type="hidden" name="StartTime" value="1089822901481">
<input type="hidden" name="heartbeat" value="180">
<input type="hidden" name="shkOvertime" value="900">
<input type="submit" name="Submit1" value="断 开" onClick="java script:MyConfirm();">
<input type="hidden" name="myaction" type="text" value="0">
<input type="hidden" name="linkStatues" value="0">
<input type="hidden" name="iIPCONFIG" value="0">

<input type="hidden" name="strUserPortNo" value="A1_5200_0-vlan-03-0000@vlan">
<input type="hidden" name="iTimeStamp" value="1085075951582">
<input type="hidden" name="iUserStatus" value="99">
<a href="" target="_blank"></a>
</td>
</tr>
</table>
</form>

</body>
</html>
----------------------------------------

[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课

收藏
免费 2
打赏
分享
最新回复 (2)
雪    币: 3246
活跃值: (339)
能力值: (RANK:20 )
在线值:
发帖
回帖
粉丝
blowfish 2004-7-15 09:32
2
0
我用的歌华,没碰到过这个问题
雪    币: 202
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
cranger 2004-7-15 09:51
3
0
这是portal的上网方式,具体能否通过破解这个网页来搞定,很难说。没有仔细研究过。
游客
登录 | 注册 方可回帖
返回