之前电信劫持经常加入周边楼盘的广告(浙大某校区卖地造的)(而且还是在 CSGO 的欢迎页面),最近又加了城西银泰(浙大某校区边上的)广告,最早在 Apple.com/cn 上还有针对性广告,这劫持不是内部干的真的是不敢信。通过 ip.cn 查到是江苏电信。想想看 9to5mac 插入中国地址的广告链接本身就不可能,加上开了代理就消失,这绝对是内部人员所为。
今天这个真 TM 整个劫持过去就无语了,关键还是这 html 作者绝对是 《 21 天精通 jQuery 》阅读者。
<!DOCTYPE html><html><head lang="en">
<meta charset="UTF-8">
<title>小蜜蜂安卓模拟器_小蜜蜂手游助手_小蜜蜂模拟器官网_安卓模拟器电脑版 - 小蜜蜂安卓手游模拟器官方站</title>
<meta name="keywords" content="小蜜蜂手游助手,小蜜蜂安卓模拟器,安卓模拟器电脑版">
<meta name="description" content="小蜜蜂模拟器是专业的电脑版安卓系统,小蜜蜂模拟器提供各类安卓手游下载,安卓手游多开、安卓手游挂机、安卓手游推荐等内容。无限流量畅玩,安卓手游充值福利等应有尽有。">
<style>
* {margin:0; padding:0;}
body {margin:0; padding:0;}
body{
position: fixed;
left: 0;
top:0;
right: 0;
bottom: 0;
margin: 0;
padding: 0;
overflow: hidden;
}
#page{
width:100%;
height: 100%;
list-style: none;
margin: 0;
padding: 0;
top:0;
position: relative;
}
#page li{
width: 100%;
height: 100%;
position: relative;
text-align:center;
}
#page li .bg{
width: 100%;
height: 100%;
}
#page li .bg2{
text-align:center;
vertical-align:middle;
}
.imgcenter{
position:absolute;top:11.5%; left:12.8%
}
#nav{
position: fixed;
top:50%;
z-index: 999;
list-style: none;
right: 50px;
margin-top: -120px;
}
#nav li span{
display: block;
border-radius: 50%;
width: 10px;
height: 10px;
background: #333333;
margin: auto;
}
#nav li .active{
width:18px;
height: 18px;
}
#nav li{
margin-top: 10px;
}
.down{
position:fixed;
right: 50px;
top:50px;
cursor: pointer;
width:218px;
height: 66px;
z-index: 999;
}
.downdiv{
width:100%;
height:100%;
background-image:url('image/index_bdbtn.png') ;
background-position: 0px 66px;
}
.downdiv:hover {
background-image:url('image/index_bdbtn.png') ;
background-position: 0px 0px;
}
.down_active{
position:absolute;
width:300px;
height:78px;
right:19%;
bottom:37%;
cursor: pointer;
z-index: 999;
}
.down_active img{
width: 100%;
height: 100%;
}
.down img{
width: 100%;
height: 100%;
}
a {
border:0px;
}
.uldiv {
width:450px;
height:250px;
background-size:100%;background:url(image/newsback.png) no-repeat;
}
.uldiv ul {
text-align:left;
margin-top:50px;
margin-left:40px;
padding:0px;
}
.uldiv ul li{
text-align:left;
line-height:20px;
}
.uldiv ul li a{
text-align:left;
color:#333333;
font-size:15px;
text-decoration:none;
font-family:"微软雅黑";
line-height:22px;
}
#youlink {
}
#youlink a{
color:#999999;
text-decoration:none;
padding-right:8px
}
#youlink a:hover{
text-decoration:underline;
color:#fff;
}
</style>
<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
<script>
$(function () {
var s_i = 0, mouseVal = 0;
var scrollFunc = function (e, temp) {
e = e || window.event;
$temps = $("#page"), h = $(window).height();
mouseVal = (e.wheelDelta) ? e.wheelDelta : e.detail;
if (e.wheelDelta) {
s_i = (mouseVal > 0) ? s_i - 1 : s_i + 1;
} else if (e.detail) {
s_i = (mouseVal > 0) ? s_i + 1 : s_i - 1;
}
if (s_i < 0) {
s_i = 0;
} else if (s_i > 5) {
s_i = 5;
};
document.removeEventListener("DOMMouseScroll", scrollFunc, false);
window.onmousewheel = document.onmousewheel = function () { };//IE/Opera/Chrome
$temps.stop().animate({ "top": "-" + (h * s_i) + "px" }, 1000, function () {
$("#nav li span").removeClass("active").eq(s_i).addClass("active");
MouseWheel();
});
};
function MouseWheel() {
if (document.addEventListener) {
document.addEventListener('DOMMouseScroll', scrollFunc, false);
}
window.onmousewheel = document.onmousewheel = scrollFunc;//IE/Opera/Chrome
};
MouseWheel();
$("#nav li span").on("click", function () {
$("#nav li span").removeClass("active");
$(this).addClass("active");
s_i = $(this).parent("li").index();
$temps = $("#page"), h = $(window).height();
$temps.stop().animate({ "top": "-" + (h * s_i) + "px" }, 1000);
})
})
</script>
<script>
//自动适应屏幕
function load() {
var bili = 1920 / $(window).width();
$(".bg2").each(function (i) {
var img = $(this);
//这里做下说明,$("<img/>")这里是创建一个临时的 img 标签,类似 js 创建一个 new Image()对象!
$("<img/>").attr("src", $(img).attr("src")).load(function () {
$(img).width(this.width / bili);
});
});
// $(".uldiv li a").css("font-size", (15 / bili) + "px");
// $(".uldiv li a").css("line-height", (22 / bili) + "px");
}
$(window).resize(function () {
load();
});
$(function () {
load();
});
</script>
</head>
<body>
<div style="display:none">
<script type="text/javascript">var cnzz_protocol = (("https:" == document.location.protocol) ? " https://" : " http://"); document.write(unescape("%3Cspan id='cnzz_stat_icon_1258731321'%3E%3C/span%3E%3Cscript src='" + cnzz_protocol + "s95.cnzz.com/z_stat.php%3Fid%3D1258731321' type='text/javascript'%3E%3C/script%3E"));</script><span id="cnzz_stat_icon_1258731321"><a href="http://www.cnzz.com/stat/website.php?web_id=1258731321" target="_blank" title="站长统计">站长统计</a></span><script src=" http://s95.cnzz.com/z_stat.php?id=1258731321" type="text/javascript"></script><script src="http://c.cnzz.com/core.php?web_id=1258731321&t=z" charset="utf-8" type="text/javascript"></script>
</div>
<a class="down" href="http://xiaomifeng-down.oss-cn-hangzhou.aliyuncs.com/BeeGCSetup_2002.exe"><div class="downdiv"></div></a>
<ul id="nav">
<li><span class="active"></span></li>
<li><span class=""></span></li>
<li><span></span></li>
<li><span></span></li>
<li><span></span></li>
<li><span></span></li>
</ul>
<ul id="page" style="top: 0px;">
<li style="text-align:center">
<div style="width:100%; margin:auto 0px;height:76%;background-color:#59BFFD;">
<img src="image/logo.png" class="bg2 " style="position: absolute; top: 1.5%; left: 20%; width: 92.0906px;">
<img src="image/1-1.JPG" class="bg2 " style="position: absolute; top: 18%; left: 18%; width: 366.502px;">
<img src="image/1-2.png" class="bg2 " style="position: absolute; top: 19%; left: 60%; width: 197.204px;">
<!-- <a href="http://xiaomifeng-down.oss-cn-hangzhou.aliyuncs.com/BeeGCSetup_2002.exe" class=" ">
<img src="image/1-3.png" class="bg2 " style=" position:absolute;top:53%; left:62.1%"/>
</a>-->
<div style=" position:absolute;top:45.3%; left:60%; text-align:left" class="uldiv">
<ul>
<script>
var result = $.ajax({
type: 'GET',
url: "AJAX/indexAJAX.aspx",
data: {
t: "news"
},
dataType: 'json', async: false
});
var resJSON = eval('[' + result.responseText + ']');
var txt = "";
for (var i = 0; i < resJSON[0].t_news.length; i++) {
txt += ' <li style="text-align:left"> <a target="_blank" href="../new.aspx?id=' + resJSON[0].t_news[i].id + '" >' + resJSON[0].t_news[i].title + '<a/></li>';
}
document.write(txt);
</script> <li style="text-align:left"> <a target="_blank" href="../new.aspx?id=108">全新内容抢先曝光 《暴风战舰》即将删档计费测试</a><a></a></li><a> </a><li style="text-align:left"><a> </a><a target="_blank" href="../new.aspx?id=106">坐骑系统开放 《仙灵世界》手游全新版本重磅前瞻</a><a></a></li><a> </a><li style="text-align:left"><a> </a><a target="_blank" href="../new.aspx?id=105">魔戒史诗国战手游《龙戒》今日不限号 万人国战再临</a><a></a></li><a> </a><li style="text-align:left"><a> </a><a target="_blank" href="../new.aspx?id=104">马天宇正式代言 《幻城》手游首席颜值官今日揭晓</a><a></a></li><a> </a><li style="text-align:left"><a> </a><a target="_blank" href="../new.aspx?id=103">《神武 2 》手游全新主题曲今日发布 晨悠组合演唱</a><a></a></li><a> </a><li style="text-align:left"><a> </a><a target="_blank" href="../new.aspx?id=102">《天下 X 天下》资料片邪影之志今日上线 十万大奖</a><a></a></li><a> </a><li style="text-align:left"><a> </a><a target="_blank" href="../new.aspx?id=101">《仙境传说 RO :守护永恒的爱》手游删档封测来袭</a><a></a></li><a>
</a></ul><a>
</a></div><a>
</a></div><a>
<div style="width:100%; margin:auto 0px;height:24%;background-color:#F0F9FF;">
<div style=" text-align:center ;width:70%; margin :0 auto;padding-top:0.9%">
<img src="image/1-4.png" class="bg2 " style="margin-left: 0%; width: 69.3005px;">
<img src="image/1-5.png" class="bg2 " style="margin-left: 6%; width: 69.3005px;">
<img src="image/1-6.png" class="bg2 " style="margin-left: 6%; width: 69.3005px;">
<img src="image/1-7.png" class="bg2 " style="margin-left: 6%; width: 69.3005px;">
<img src="image/1-8.png" class="bg2 " style="margin-left: 6%; width: 69.3005px;">
</div>
</div>
</a></li><a>
<li style="background-color:#FFFFCD">
<img src="image/2-1.JPG" class="bg2 " style="position: absolute; top: 11.5%; left: 20%; width: 242.319px;">
<img src="image/2-2.png" class="bg2 " style="position: absolute; top: 40.5%; left: 52%; width: 219.994px;">
</li>
<li style="background-color:#F76977">
<img src="image/3-0.jpg" class="bg2 imgcenter" style="width: 665.099px;">
</li>
<li style="background-color:#FFFFCB">
<img src="image/4-0.jpg" class="bg2 imgcenter" style="width: 624.635px;">
</li>
<li style="background-color:#77D9DA">
<img src="image/5-0.jpg" class="bg2 imgcenter" style="width: 633.472px;">
</li>
</a><li style="background-color:#FFFFCF"><a>
<div style="height:75%;background-color:#FFFFCF">
<img src="image/6-0.jpg" class=" " style="top:4.5%;width:872px">
</div>
</a><div style=" background-color:#333333;height:25%;text-align:center"><a>
</a><div style="margin:0 auto;width:1024px;font-family:'微软雅黑';text-align:left" id="youlink"><a>
<p style="color:#fff;line-height:50px;font-size:17px;margin:0px;padding:0px">友情链接</p>
<script>
var result = $.ajax({
type: 'GET',
url: "AJAX/indexAJAX.aspx",
data: {
t: "linke"
},
dataType: 'json', async: false
});
var resJSON = eval('[' + result.responseText + ']');
var txt = "";
for (var i = 0; i < resJSON[0].t_you_link.length; i++) {
txt += '<a href="' + resJSON[0].t_you_link[i].linke + '">' + resJSON[0].t_you_link[i].name + '</a> ';
}
document.write(txt);
</script></a><a href="http://wangyou.pcgames.com.cn/zhuanti/qqmx/">勇者大冒险</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/k/">王牌对决</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/yl/">御龙在天</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/300/">300 英雄</a> <a href="http://tl3.pcgames.com.cn/">新天龙八部</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/tx2/">天下 2</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/my/">魔域</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/tlw/">通灵王</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/hg/">黑暗之光</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/eos/">灵魂回响</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/lw/">龙武</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/zt2/">征途 2</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/12sky2/">十二之天贰</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/sgshero/">三国杀英雄传</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/zxsj/">诛仙世界</a> <a href="http://zy.pcgames.com.cn/">战音 OL</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/sl/">狩龙战记</a> <a href="http://shen.pcgames.com.cn/"> 众神争霸</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/fsf/">自由足球</a> <a href="http://hj.pcgames.com.cn/">黑金</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/sgs/">三国杀</a> <a href="http://wow.pcgames.com.cn/">魔兽世界</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/sw/">神武</a> <a href="http://fight.pcgames.com.cn/blizzarddota/">风暴英雄</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/jx3/">剑侠情缘 3</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/mhxy/">梦幻西游</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/mxm/">全职大师</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/mxd2/">冒险岛 2</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/fmo/">足球经理</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/poe/">流放之路</a> <a href="http://bns.pcgames.com.cn/">剑灵</a> <a href="http://dzs.pcgames.com.cn/">斗战神</a> <a href="http://wuxia.pcgames.com.cn/">天涯明月刀</a> <a href="http://jf.pcgames.com.cn/">疾风之刃</a> <a href="http://tianyu.pcgames.com.cn/">天谕</a> <a href="http://age.pcgames.com.cn/">上古世纪</a> <a href="http://smite.pcgames.com.cn/">SMITE</a> <a href="http://mho.pcgames.com.cn/">怪物猎人 ol</a> <a href="http://dnf.pcgames.com.cn/">地下城与勇士</a> <a href="http://gw2.pcgames.com.cn/">激战 2</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/meng3guo/">梦三国 2</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/ly/">龙翼编年史</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/zgphs/">战国破坏神</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/mf/">魂之猎手</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/kuf2/">炽焰帝国 2</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/ct2/">苍天 2</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/tsj/">天神纪</a> <a href="http://seiya.pcgames.com.cn/">圣斗士星矢 ol</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/yyx/">音乐侠</a> <a href=" http://wh.pcgames.com.cn/">武魂 2</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/dn/">龙之谷</a> <a href="http://sd.pcgames.com.cn/">射雕</a> <a href="http://9yin.pcgames.com.cn/">九阴真经</a> <a href="http://lj.pcgames.com.cn/">龙剑</a> <a href="http://nw.pcgames.com.cn/">无冬之夜</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/taoyuan/">桃园</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/zh/">斩魂</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/rh/">颓废之心</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/shws/">水浒无双</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/qn/">新倩女幽魂</a> <a href="http://fs2.pcgames.com.cn/">自由篮球</a> <a href=" http://wangyou.pcgames.com.cn/zhuanti/xdzw/">炫斗之王</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/fox/">狐狸三国</a> <a href="http://bsg.pcgames.com.cn/">霸三国</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/dydg/">电影帝国</a> <a href="http://xxsj.pcgames.com.cn/">仙侠世界</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/zw/">零世界</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/qqxy/">QQ 西游</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/xyj/">西游记</a> <a href="http://tx3.pcgames.com.cn/">天下 3</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/qqxianjing/">QQ 仙境</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/popkart/">跑跑卡丁车</a> <a href="http://ws.pcgames.com.cn/">巫师之怒</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/xcb/">星辰变</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/touch/">TOUCH</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/thyj/">桃花源记</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/9/">九天神话</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/tiantang/">天堂</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/lz/">梦幻聊斋</a> <a href="http://wangyou.pcgames.com.cn/zhuanti/csxy/">创世西游</a>
</div>
</div>
</li>
</ul>
</body></html>
1
notgod 2016-07-10 18:07:47 +08:00
看到这代码 小伙伴也惊呆了
|
2
vmebeh 2016-07-10 18:21:43 +08:00
联通劫持 steam ,弹窗+点击弹窗,弓形部举报没人理,只能把那几个域名加到 hosts 了
插了一条 <script type="text/javascript" src="h ttp://cip3.e1977.com/promote.php?id=100285"></script> |
3
fengxiang 2016-07-10 18:30:05 +08:00
别提了,我们这把油腻的师姐的广告加到 steam 里去了,我也是无语了。
|
4
lovedebug 2016-07-10 18:43:25 +08:00
投诉过江苏电信 我也是醉了。他们客服自己明明知道是劫持还装作一本正经的处理问题。。。
|
5
qq651438555 2016-07-11 03:04:28 +08:00
@lovedebug 他们经常这样的,没办法。用用吧,全国都一样,广告劫持满天飞
|
6
lovedebug 2016-07-11 10:00:51 +08:00
@qq651438555 基本投诉完就会给你去掉
|
7
ClassicOldSong 2016-07-11 14:15:11 +08:00 via Android
我这里移动劫持更恶心,底部加广告,动不动弹窗广告,插的 js 会遍历页面上的所有图片然后在图片上插广告。。。。。。。。。投诉无效,客服一直说他们没有做这种事情,投诉工信部无效,工信部表示没有查到我在移动的投诉记录不予处理
移不动再也不见~ |
8
smithtel 2016-07-11 16:42:38 +08:00
深圳电信从没被劫持过。。。
|