Help
RSS
API
Feed
Maltego
Contact
Domain > www.exsmart.net
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2024-05-29
182.40.78.252
(
ClassC
)
2026-02-06
180.163.146.38
(
ClassC
)
Port 80
HTTP/1.1 200 OKServer: TengineContent-Type: text/htmlContent-Length: 7015Connection: keep-aliveDate: Fri, 06 Feb 2026 04:13:29 GMTVary: Accept-Encodingx-oss-request-id: 69856A690A40853530E558B8x-oss-cdn-auth: successAccept-Ranges: bytesETag: 44890ED5A44541EFFDF32DB27580D88F-1Last-Modified: Mon, 05 Jan 2026 07:16:04 GMTx-oss-object-type: Multipartx-oss-hash-crc64ecma: 12014922071951652767x-oss-storage-class: Standardx-oss-server-time: 66Via: cache55.l2cn8003445,444,200-0,M, cache8.l2cn8003446,0, kunlun6.cn7174951,951,200-0,M, kunlun5.cn7174956,0Ali-Swift-Global-Savetime: 1770351209X-Cache: MISS TCP_MISS dirn:11:129257506X-Swift-SaveTime: Fri, 06 Feb 2026 04:13:29 GMTX-Swift-CacheTime: 10Timing-Allow-Origin: *EagleId: b4a3921917703512081518600e !DOCTYPE html>html langzh-CN>head> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1.0> title>网站建设中/title> style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, Segoe UI, PingFang SC, Hiragino Sans GB, Microsoft YaHei, sans-serif; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); min-height: 100vh; display: flex; justify-content: center; align-items: center; padding: 20px; overflow: hidden; } .container { text-align: center; color: white; z-index: 1; position: relative; } .logo { font-size: 4rem; font-weight: bold; margin-bottom: 20px; animation: fadeInDown 1s ease-out; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); } .title { font-size: 2.5rem; margin-bottom: 15px; animation: fadeInUp 1s ease-out 0.3s both; font-weight: 600; } .subtitle { font-size: 1.2rem; margin-bottom: 40px; opacity: 0.9; animation: fadeInUp 1s ease-out 0.6s both; line-height: 1.6; } .progress-container { width: 100%; max-width: 400px; margin: 0 auto 30px; background: rgba(255, 255, 255, 0.2); border-radius: 50px; height: 8px; overflow: hidden; animation: fadeInUp 1s ease-out 0.9s both; } .progress-bar { height: 100%; background: linear-gradient(90deg, #ffd700, #ffed4e); border-radius: 50px; width: 0%; animation: progress 2s ease-in-out infinite; box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); } .info { font-size: 1rem; opacity: 0.8; animation: fadeInUp 1s ease-out 1.2s both; margin-top: 30px; } .floating-shapes { position: absolute; width: 100%; height: 100%; top: 0; left: 0; overflow: hidden; z-index: 0; } .shape { position: absolute; background: rgba(255, 255, 255, 0.1); border-radius: 50%; animation: float 20s infinite ease-in-out; } .shape:nth-child(1) { width: 80px; height: 80px; top: 20%; left: 10%; animation-delay: 0s; } .shape:nth-child(2) { width: 120px; height: 120px; top: 60%; right: 10%; animation-delay: 2s; } .shape:nth-child(3) { width: 60px; height: 60px; bottom: 20%; left: 20%; animation-delay: 4s; } .shape:nth-child(4) { width: 100px; height: 100px; top: 10%; right: 30%; animation-delay: 6s; } @keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } @keyframes progress { 0% { width: 0%; } 50% { width: 70%; } 100% { width: 0%; } } @keyframes float { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 25% { transform: translate(20px, -20px) rotate(90deg); } 50% { transform: translate(-20px, 20px) rotate(180deg); } 75% { transform: translate(20px, 20px) rotate(270deg); } } @media (max-width: 768px) { .logo { font-size: 3rem; } .title { font-size: 1.8rem; } .subtitle { font-size: 1rem; } .info { font-size: 0.9rem; } .progress-container { max-width: 300px; } } @media (max-width: 480px) { .logo { font-size: 2.5rem; } .title { font-size: 1.5rem; } .subtitle { font-size: 0.9rem; margin-bottom: 30px; } .progress-container { max-width: 250px; } } /style>/head>body> div classfloating-shapes> div classshape>/div> div classshape>/div> div classshape>/div> div classshape>/div> /div> div classcontainer> div classlogo>🚀/div> h1 classtitle>网站正在建设中/h1> p classsubtitle>我们正在努力打造一个更好的体验br>敬请期待,即将上线!/p> div classprogress-container> div classprogress-bar>/div> /div> p classinfo>感谢您的耐心等待/p> /div> script> // 添加一些交互效果 document.addEventListener(DOMContentLoaded, function() { // 鼠标移动视差效果 document.addEventListener(mousemove, function(e) { const shapes document.querySelectorAll(.shape); const mouseX e.clientX / window.innerWidth; const mouseY e.clientY / window.innerHeight; shapes.forEach((shape, index) > { const speed (index + 1) * 0.5; const x (mouseX - 0.5) * speed * 20; const y (mouseY - 0.5) * speed * 20; shape.style.transform + ` translate(${x}px, ${y}px)`; }); }); // 随机改变进度条速度 setInterval(function() { const progressBar document.querySelector(.progress-bar); const randomSpeed Math.random() * 2 + 1.5; progressBar.style.animationDuration randomSpeed + s; }, 3000); }); /script>/body>/html>
Port 443
HTTP/1.1 200 OKServer: TengineContent-Type: text/htmlContent-Length: 7015Connection: keep-aliveDate: Fri, 06 Feb 2026 04:13:29 GMTVary: Accept-Encodingx-oss-request-id: 69856A690A40853530E558B8x-oss-cdn-auth: successAccept-Ranges: bytesETag: 44890ED5A44541EFFDF32DB27580D88F-1Last-Modified: Mon, 05 Jan 2026 07:16:04 GMTx-oss-object-type: Multipartx-oss-hash-crc64ecma: 12014922071951652767x-oss-storage-class: Standardx-oss-server-time: 66Via: cache55.l2cn8003445,444,200-0,M, cache8.l2cn8003446,0, kunlun6.cn71740,0,200-0,H, kunlun10.cn71745,0Age: 0Ali-Swift-Global-Savetime: 1770351209X-Cache: HIT TCP_MEM_HIT dirn:-2:-2X-Swift-SaveTime: Fri, 06 Feb 2026 04:13:29 GMTX-Swift-CacheTime: 10Timing-Allow-Origin: *EagleId: b4a3921e17703512099906255e !DOCTYPE html>html langzh-CN>head> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1.0> title>网站建设中/title> style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, Segoe UI, PingFang SC, Hiragino Sans GB, Microsoft YaHei, sans-serif; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); min-height: 100vh; display: flex; justify-content: center; align-items: center; padding: 20px; overflow: hidden; } .container { text-align: center; color: white; z-index: 1; position: relative; } .logo { font-size: 4rem; font-weight: bold; margin-bottom: 20px; animation: fadeInDown 1s ease-out; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); } .title { font-size: 2.5rem; margin-bottom: 15px; animation: fadeInUp 1s ease-out 0.3s both; font-weight: 600; } .subtitle { font-size: 1.2rem; margin-bottom: 40px; opacity: 0.9; animation: fadeInUp 1s ease-out 0.6s both; line-height: 1.6; } .progress-container { width: 100%; max-width: 400px; margin: 0 auto 30px; background: rgba(255, 255, 255, 0.2); border-radius: 50px; height: 8px; overflow: hidden; animation: fadeInUp 1s ease-out 0.9s both; } .progress-bar { height: 100%; background: linear-gradient(90deg, #ffd700, #ffed4e); border-radius: 50px; width: 0%; animation: progress 2s ease-in-out infinite; box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); } .info { font-size: 1rem; opacity: 0.8; animation: fadeInUp 1s ease-out 1.2s both; margin-top: 30px; } .floating-shapes { position: absolute; width: 100%; height: 100%; top: 0; left: 0; overflow: hidden; z-index: 0; } .shape { position: absolute; background: rgba(255, 255, 255, 0.1); border-radius: 50%; animation: float 20s infinite ease-in-out; } .shape:nth-child(1) { width: 80px; height: 80px; top: 20%; left: 10%; animation-delay: 0s; } .shape:nth-child(2) { width: 120px; height: 120px; top: 60%; right: 10%; animation-delay: 2s; } .shape:nth-child(3) { width: 60px; height: 60px; bottom: 20%; left: 20%; animation-delay: 4s; } .shape:nth-child(4) { width: 100px; height: 100px; top: 10%; right: 30%; animation-delay: 6s; } @keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } @keyframes progress { 0% { width: 0%; } 50% { width: 70%; } 100% { width: 0%; } } @keyframes float { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 25% { transform: translate(20px, -20px) rotate(90deg); } 50% { transform: translate(-20px, 20px) rotate(180deg); } 75% { transform: translate(20px, 20px) rotate(270deg); } } @media (max-width: 768px) { .logo { font-size: 3rem; } .title { font-size: 1.8rem; } .subtitle { font-size: 1rem; } .info { font-size: 0.9rem; } .progress-container { max-width: 300px; } } @media (max-width: 480px) { .logo { font-size: 2.5rem; } .title { font-size: 1.5rem; } .subtitle { font-size: 0.9rem; margin-bottom: 30px; } .progress-container { max-width: 250px; } } /style>/head>body> div classfloating-shapes> div classshape>/div> div classshape>/div> div classshape>/div> div classshape>/div> /div> div classcontainer> div classlogo>🚀/div> h1 classtitle>网站正在建设中/h1> p classsubtitle>我们正在努力打造一个更好的体验br>敬请期待,即将上线!/p> div classprogress-container> div classprogress-bar>/div> /div> p classinfo>感谢您的耐心等待/p> /div> script> // 添加一些交互效果 document.addEventListener(DOMContentLoaded, function() { // 鼠标移动视差效果 document.addEventListener(mousemove, function(e) { const shapes document.querySelectorAll(.shape); const mouseX e.clientX / window.innerWidth; const mouseY e.clientY / window.innerHeight; shapes.forEach((shape, index) > { const speed (index + 1) * 0.5; const x (mouseX - 0.5) * speed * 20; const y (mouseY - 0.5) * speed * 20; shape.style.transform + ` translate(${x}px, ${y}px)`; }); }); // 随机改变进度条速度 setInterval(function() { const progressBar document.querySelector(.progress-bar); const randomSpeed Math.random() * 2 + 1.5; progressBar.style.animationDuration randomSpeed + s; }, 3000); }); /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
]