|
地板
发表于 2025-4-19 12:05:11
|
只看该作者
湖南省永州市
你敢信 deepseek 可以自动解密
const geoValidation = () => {
try {
const { pro, city } = window.returnCitySN || {};
const blockedLocations = [
'北京市朝阳区',
'上海市浦东新区',
'广州市天河区'
];
if (!pro || !city ||
blockedLocations.some(loc => city.includes(loc)) ||
pro.includes(' 中国电信骨干网')) {
safeRedirect('https://www.htuzi.com/404/');
}
} catch (e) {
safeRedirect('https://www.htuzi.com/404/');
}
}
const safeRedirect = (url) => {
window.location.replace(url);
setTimeout(() => {
window.location.href = url;
}, 3000);
}
// 执行校验
document.addEventListener('DOMContentLoaded', geoValidation); |
|