Help
RSS
API
Feed
Maltego
Contact
Domain > shdxby.com
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2023-01-16
122.228.7.207
(
ClassC
)
2026-01-27
106.75.176.115
(
ClassC
)
Port 80
HTTP/1.1 200 OKServer: nginxDate: Tue, 27 Jan 2026 13:28:52 GMTContent-Type: text/htmlContent-Length: 7526Last-Modified: Tue, 15 Jul 2025 17:37:10 GMTConnection: keep-aliveVary: Accept-EncodingETag: 687691c6-1d66Accept-Ranges: bytes !DOCTYPE html>html langzh-CN>head> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1.0> title>访信/title> script srchttps://cdn.tailwindcss.com>/script> link hrefhttps://cdn.jsdelivr.net/npm/font-awesome@4.7.0/css/font-awesome.min.css relstylesheet> !-- 配置Tailwind --> script> tailwind.config { theme: { extend: { colors: { primary: #3b82f6, secondary: #6366f1, accent: #8b5cf6, dark: #1e293b, }, fontFamily: { sans: Inter, system-ui, sans-serif, }, }, } } /script> style typetext/tailwindcss> @layer utilities { .content-auto { content-visibility: auto; } .bg-gradient-blue { background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%); } .text-shadow { text-shadow: 0 2px 4px rgba(0,0,0,0.1); } .animate-pulse-slow { animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite; } .animate-float { animation: float 6s ease-in-out infinite; } .transition-custom { transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); } } @keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } } /style>/head>body classmin-h-screen bg-gradient-blue text-white flex flex-col items-center justify-center p-4 overflow-hidden> !-- 装饰元素 --> div classabsolute top-0 left-0 w-full h-full overflow-hidden pointer-events-none> div classabsolute -top-10 -left-10 w-40 h-40 rounded-full bg-white/10 animate-float styleanimation-delay: 0s;>/div> div classabsolute top-1/3 -right-16 w-64 h-64 rounded-full bg-white/5 animate-float styleanimation-delay: 1s;>/div> div classabsolute bottom-10 -left-20 w-80 h-80 rounded-full bg-white/5 animate-float styleanimation-delay: 2s;>/div> /div> div classrelative z-10 max-w-md w-full mx-auto text-center> !-- Logo区域 --> div classmb-8> div classinline-flex items-center justify-center w-16 h-16 rounded-full bg-white/10 backdrop-blur-sm mb-4> i classfa fa-random text-3xl>/i> /div> h1 classtext-clamp(2rem,5vw,3rem) font-bold text-shadow mb-2>即将跳转/h1> p classtext-white/80 text-lg>我们将在 span idcountdown classfont-bold text-2xl>3/span> 秒后为您跳转访信APP/p> /div> !-- 倒计时动画 --> div classrelative w-40 h-40 mx-auto mb-8> div classabsolute inset-0 rounded-full border-4 border-white/20>/div> div idcircle-progress classabsolute inset-0 rounded-full border-4 border-t-transparent border-b-transparent border-white/80 animate-spin styleanimation-duration: 5s;>/div> div classabsolute inset-0 flex items-center justify-center> span idcountdown-number classtext-clamp(3rem,10vw,5rem) font-bold text-shadow>3/span> /div> /div> !-- 提示信息 --> div classmb-8> p classtext-white/80 mb-4>浏览人数:span idvisitor-count classfont-semibold>0/span>/p> p classtext-white/70>如果您的浏览器没有自动跳转,请点击下方按钮/p> /div> !-- 操作按钮 --> div classspace-y-4 mb-8> button idskip-btn classw-full bg-white text-primary font-bold py-3 px-6 rounded-full shadow-lg hover:shadow-xl transform hover:-translate-y-1 transition-custom> 立即跳转 /button> button idrefresh-btn classw-full bg-white/10 backdrop-blur-sm text-white font-bold py-3 px-6 rounded-full hover:bg-white/20 transition-custom> i classfa fa-refresh mr-2>/i>换一个 /button> /div> !-- 客服链接 --> div classmt-auto> a hrefhttps://m.zhujuetv.com/#/pages/service/service?customerId02ec25dda4a043fdaad505eb3e75c2fa idservice-link classinline-flex items-center text-white/80 hover:text-white transition-custom> i classfa fa-headphones mr-2>/i> span>在线客服/span> /a> /div> /div> !-- 友盟统计代码 --> script> // 替换为你的友盟统计ID var _czc _czc || ; _czc.push(_setAccount, your_umeng_id); // 记录访问 _czc.push(_trackPageview, /redirect-page); // 目标跳转网址列表 const redirectUrls ./index1.html, ; // 获取随机网址 function getRandomUrl() { const randomIndex Math.floor(Math.random() * redirectUrls.length); return redirectUrlsrandomIndex; } // 当前随机网址 let currentUrl getRandomUrl(); // 倒计时和跳转逻辑 let countdown 3; const countdownEl document.getElementById(countdown); const countdownNumberEl document.getElementById(countdown-number); const skipBtn document.getElementById(skip-btn); const refreshBtn document.getElementById(refresh-btn); const serviceLink document.getElementById(service-link); // 更新浏览人数 (模拟) function updateVisitorCount() { const countEl document.getElementById(visitor-count); // 从localStorage获取上次的计数或初始化为0 let count localStorage.getItem(visitorCount) || 0; // 模拟增加计数 count parseInt(count) + 1; localStorage.setItem(visitorCount, count); countEl.textContent count.toLocaleString(); } // 开始倒计时 function startCountdown() { const countdownInterval setInterval(() > { countdown--; countdownEl.textContent countdown; countdownNumberEl.textContent countdown; if (countdown 0) { clearInterval(countdownInterval); redirectToRandomUrl(); } }, 1000); } // 跳转到随机网址 function redirectToRandomUrl() { window.location.href currentUrl; } // 绑定按钮事件 skipBtn.addEventListener(click, redirectToRandomUrl); refreshBtn.addEventListener(click, () > { // 重置倒计时 countdown 3; countdownEl.textContent countdown; countdownNumberEl.textContent countdown; // 获取新的随机网址 currentUrl getRandomUrl(); // 记录换一个操作 _czc.push(_trackEvent, redirect, refresh); // 重新开始倒计时 clearInterval(window.countdownInterval); startCountdown(); // 添加按钮动画 refreshBtn.classList.add(animate-pulse-slow); setTimeout(() > { refreshBtn.classList.remove(animate-pulse-slow); }, 1000); }); // 客服链接点击事件 serviceLink.addEventListener(click, () > { // 记录客服点击 _czc.push(_trackEvent, service, click); // 打开客服对话框或链接 alert(客服链接已点击,即将跳转至客服页面); // 实际项目中可以替换为打开客服链接的代码 // window.open(https://your-service-url.com, _blank); }); // 初始化 updateVisitorCount(); startCountdown(); /script>/body>/html>
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]