Help
RSS
API
Feed
Maltego
Contact
Domain > www.xiaomeizi.org
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2016-03-11
183.3.202.16
(
ClassC
)
2026-03-08
172.67.219.139
(
ClassC
)
Port 80
HTTP/1.1 200 OKDate: Sun, 08 Mar 2026 08:48:46 GMTContent-Type: text/htmlTransfer-Encoding: chunkedConnection: keep-aliveServer: cloudflareLast-Modified: Sat, 28 Feb 2026 17:09:19 GMTNel: {report_to:cf-nel,success_fraction:0.0,max_age:604800}Vary: Accept-EncodingStrict-Transport-Security: max-age31536000Report-To: {group:cf-nel,max_age:604800,endpoints:{url:https://a.nel.cloudflare.com/report/v4?sXxkCMBgfmFismIp2mml7YCSTqpLn%2BVGFXUrRV9L%2FjtTOZMv6j3qJm966cYgi916K1sULYBlCBjE7eME2wPI3DGLgFIClRK8CRPD4yPUb4w%3D%3D}}cf-cache-status: DYNAMICCF-RAY: 9d90952f3a860eda-PDXalt-svc: h3:443; ma86400 !DOCTYPE html>html langzh-CN>head>meta http-equivcontent-type contenttext/html; charsetUTF-8> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1.0> meta namekeywords content> title>发车页/title> style> body { margin: 0; background: #0f0f0f; font-family: Segoe UI, PingFang SC, sans-serif; color: #f0f0f0; display: flex; flex-direction: column; align-items: center; padding: 40px 20px; } h1 { font-size: 3rem; color: #ff3cac; margin-bottom: 10px; } .subtitle { font-size: 1.5rem; color: #ffffffbb; margin-bottom: 1px; letter-spacing: 2px; } .button-container { display: flex; flex-direction: column; gap: 16px; width: 100%; max-width: 360px; } .button { background: linear-gradient(135deg, #ff3cac, #784ba0); border: none; color: white; padding: 14px 20px; font-size: 1rem; border-radius: 8px; text-align: center; text-decoration: none; cursor: pointer; transition: transform 0.2s ease; } .button:hover { transform: scale(1.03); } .note { margin-top: 1px; font-size: 0.9rem; color: #aaa; text-align: center; } .email { font-family: monospace; font-size: 0.9rem; color: #ff3cac; } #loadingOverlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999;}.overlay-backdrop { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 15, 15, 0.85);}.overlay-message { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #fff; background: #222; padding: 20px 30px; border-radius: 10px; font-size: 1.2rem; box-shadow: 0 0 10px rgba(0,0,0,0.5); animation: fadeIn 0.3s ease-out;}@keyframes fadeIn { from { opacity: 0; transform: translate(-50%, -45%); } to { opacity: 1; transform: translate(-50%, -50%); }} /style>/head>body> h1>发车页/h1> div classsubtitle>极速通道 · 安全保障/div> div classnote> /div> div classbutton-container> a classbutton> h2>正在连接,请稍后/h2> div idb1>div idlogOutput styledisplay: block;>/div>/div>script> const originalConsoleLog console.log; const logContainer document.getElementById(logOutput); console.log function (...args) { originalConsoleLog.apply(console, args); const message args.map(arg > typeof arg object ? JSON.stringify(arg, null, 2) : String(arg) ).join( ); const line document.createElement(div); line.textContent message; logContainer.appendChild(line); logContainer.scrollTop logContainer.scrollHeight; }; function shuffleArray(arr) { const array ...arr; for (let i array.length - 1; i > 0; i--) { const j Math.floor(Math.random() * (i + 1)); arrayi, arrayj arrayj, arrayi; } return array; } function sleep(ms) { return new Promise(resolve > setTimeout(resolve, ms)); } async function tryRandomUrl() { const urls shuffleArray( https://cc.llpr12.top, https://cc.llpr13.top ); const maxAttempts 3; const timeoutMs 15000; for (const url of urls) { console.log(`尝试访问网址`); let isLastAttemptSuccessful false; let durations ; let timeoutCount 0; for (let attempt 1; attempt maxAttempts; attempt++) { try { const controller new AbortController(); const timeoutId setTimeout(() > controller.abort(), timeoutMs); const startTime performance.now(); await fetch(url, { method: HEAD, mode: no-cors, signal: controller.signal }); const endTime performance.now(); clearTimeout(timeoutId); const duration Math.round(endTime - startTime); durations.push(duration); console.log(`第 ${attempt} 次连接成功,用时 ${duration}ms`); if (attempt maxAttempts) { isLastAttemptSuccessful true; } } catch (err) { const reason err.name AbortError? 请求超时 : err.message; console.log(`第 ${attempt} 次连接失败: ${reason}`); if (err.name AbortError) timeoutCount++; if (attempt maxAttempts) isLastAttemptSuccessful false; } await sleep(200); } if (timeoutCount maxAttempts) { const fullTimeout document.createElement(div); fullTimeout.textContent `🚫 所有尝试均超时`; fullTimeout.style.color #f00; fullTimeout.style.fontWeight bold; logContainer.appendChild(fullTimeout); } else { const avgDuration Math.round( durations.reduce((a, b) > a + b, 0) / durations.length ); console.log(`平均用时:${avgDuration}ms 超时次数:${timeoutCount}/${maxAttempts}`); if (avgDuration > 5000 || timeoutCount > 2) { const warn document.createElement(div); warn.textContent `⚠ 网络速度慢,建议更换其他网络`; warn.style.color #b00; warn.style.fontWeight bold; logContainer.appendChild(warn); } } if (isLastAttemptSuccessful) { console.log(`连接成功,即将跳转`); await showCountdownAndRedirect(url); return; } else { console.log(`失败,继续下一个`); } } console.log(所有网址都连接失败了,请使用VPN访问); } // 显示倒计时然后跳转 async function showCountdownAndRedirect(targetUrl) { const countdownDiv document.createElement(div); countdownDiv.className countdown; logContainer.appendChild(countdownDiv); let secondsLeft 2; function updateCountdown() { if (secondsLeft > 0) { countdownDiv.textContent `正在跳转…(${secondsLeft}秒)`; } else { countdownDiv.textContent `正在跳转…`; } } updateCountdown(); const intervalId setInterval(() > { secondsLeft--; updateCountdown(); if (secondsLeft 0) { clearInterval(intervalId); window.location.href targetUrl; } }, 500); } // 使用 setTimeout 在 1 秒后调用 tryRandomUrl 并显示日志输出区域 setTimeout(() > { logContainer.style.display block; tryRandomUrl(); }, 1000); /script>/a> /div>/body>/html>
Port 443
HTTP/1.1 200 OKDate: Sun, 08 Mar 2026 08:48:46 GMTContent-Type: text/htmlTransfer-Encoding: chunkedConnection: keep-aliveServer: cloudflareLast-Modified: Sat, 28 Feb 2026 17:09:19 GMTNel: {report_to:cf-nel,success_fraction:0.0,max_age:604800}Vary: Accept-EncodingStrict-Transport-Security: max-age31536000Report-To: {group:cf-nel,max_age:604800,endpoints:{url:https://a.nel.cloudflare.com/report/v4?sLu%2F6IwBXcFosDvYcNtkqvsErOSS0qQdTgkbihamciYyzTtBOj%2FBsFy5ZAtedtVs6fyulCOaeh12Xxn6fo6m5cK9LCtk3086zxA7tERRCZ%2FiJ}}cf-cache-status: DYNAMICCF-RAY: 9d90952fdc011d57-PDXalt-svc: h3:443; ma86400 !DOCTYPE html>html langzh-CN>head>meta http-equivcontent-type contenttext/html; charsetUTF-8> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1.0> meta namekeywords content> title>发车页/title> style> body { margin: 0; background: #0f0f0f; font-family: Segoe UI, PingFang SC, sans-serif; color: #f0f0f0; display: flex; flex-direction: column; align-items: center; padding: 40px 20px; } h1 { font-size: 3rem; color: #ff3cac; margin-bottom: 10px; } .subtitle { font-size: 1.5rem; color: #ffffffbb; margin-bottom: 1px; letter-spacing: 2px; } .button-container { display: flex; flex-direction: column; gap: 16px; width: 100%; max-width: 360px; } .button { background: linear-gradient(135deg, #ff3cac, #784ba0); border: none; color: white; padding: 14px 20px; font-size: 1rem; border-radius: 8px; text-align: center; text-decoration: none; cursor: pointer; transition: transform 0.2s ease; } .button:hover { transform: scale(1.03); } .note { margin-top: 1px; font-size: 0.9rem; color: #aaa; text-align: center; } .email { font-family: monospace; font-size: 0.9rem; color: #ff3cac; } #loadingOverlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999;}.overlay-backdrop { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 15, 15, 0.85);}.overlay-message { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #fff; background: #222; padding: 20px 30px; border-radius: 10px; font-size: 1.2rem; box-shadow: 0 0 10px rgba(0,0,0,0.5); animation: fadeIn 0.3s ease-out;}@keyframes fadeIn { from { opacity: 0; transform: translate(-50%, -45%); } to { opacity: 1; transform: translate(-50%, -50%); }} /style>/head>body> h1>发车页/h1> div classsubtitle>极速通道 · 安全保障/div> div classnote> /div> div classbutton-container> a classbutton> h2>正在连接,请稍后/h2> div idb1>div idlogOutput styledisplay: block;>/div>/div>script> const originalConsoleLog console.log; const logContainer document.getElementById(logOutput); console.log function (...args) { originalConsoleLog.apply(console, args); const message args.map(arg > typeof arg object ? JSON.stringify(arg, null, 2) : String(arg) ).join( ); const line document.createElement(div); line.textContent message; logContainer.appendChild(line); logContainer.scrollTop logContainer.scrollHeight; }; function shuffleArray(arr) { const array ...arr; for (let i array.length - 1; i > 0; i--) { const j Math.floor(Math.random() * (i + 1)); arrayi, arrayj arrayj, arrayi; } return array; } function sleep(ms) { return new Promise(resolve > setTimeout(resolve, ms)); } async function tryRandomUrl() { const urls shuffleArray( https://cc.llpr12.top, https://cc.llpr13.top ); const maxAttempts 3; const timeoutMs 15000; for (const url of urls) { console.log(`尝试访问网址`); let isLastAttemptSuccessful false; let durations ; let timeoutCount 0; for (let attempt 1; attempt maxAttempts; attempt++) { try { const controller new AbortController(); const timeoutId setTimeout(() > controller.abort(), timeoutMs); const startTime performance.now(); await fetch(url, { method: HEAD, mode: no-cors, signal: controller.signal }); const endTime performance.now(); clearTimeout(timeoutId); const duration Math.round(endTime - startTime); durations.push(duration); console.log(`第 ${attempt} 次连接成功,用时 ${duration}ms`); if (attempt maxAttempts) { isLastAttemptSuccessful true; } } catch (err) { const reason err.name AbortError? 请求超时 : err.message; console.log(`第 ${attempt} 次连接失败: ${reason}`); if (err.name AbortError) timeoutCount++; if (attempt maxAttempts) isLastAttemptSuccessful false; } await sleep(200); } if (timeoutCount maxAttempts) { const fullTimeout document.createElement(div); fullTimeout.textContent `🚫 所有尝试均超时`; fullTimeout.style.color #f00; fullTimeout.style.fontWeight bold; logContainer.appendChild(fullTimeout); } else { const avgDuration Math.round( durations.reduce((a, b) > a + b, 0) / durations.length ); console.log(`平均用时:${avgDuration}ms 超时次数:${timeoutCount}/${maxAttempts}`); if (avgDuration > 5000 || timeoutCount > 2) { const warn document.createElement(div); warn.textContent `⚠ 网络速度慢,建议更换其他网络`; warn.style.color #b00; warn.style.fontWeight bold; logContainer.appendChild(warn); } } if (isLastAttemptSuccessful) { console.log(`连接成功,即将跳转`); await showCountdownAndRedirect(url); return; } else { console.log(`失败,继续下一个`); } } console.log(所有网址都连接失败了,请使用VPN访问); } // 显示倒计时然后跳转 async function showCountdownAndRedirect(targetUrl) { const countdownDiv document.createElement(div); countdownDiv.className countdown; logContainer.appendChild(countdownDiv); let secondsLeft 2; function updateCountdown() { if (secondsLeft > 0) { countdownDiv.textContent `正在跳转…(${secondsLeft}秒)`; } else { countdownDiv.textContent `正在跳转…`; } } updateCountdown(); const intervalId setInterval(() > { secondsLeft--; updateCountdown(); if (secondsLeft 0) { clearInterval(intervalId); window.location.href targetUrl; } }, 500); } // 使用 setTimeout 在 1 秒后调用 tryRandomUrl 并显示日志输出区域 setTimeout(() > { logContainer.style.display block; tryRandomUrl(); }, 1000); /script>/a> /div>/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
]