Help
RSS
API
Feed
Maltego
Contact
Domain > shark6.cc
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2025-01-13
38.12.5.241
(
ClassC
)
2025-02-25
38.165.1.200
(
ClassC
)
2025-09-23
38.148.240.170
(
ClassC
)
2026-02-07
185.2.162.238
(
ClassC
)
Port 80
HTTP/1.1 200 OKDate: Sat, 07 Feb 2026 23:55:27 GMTContent-Type: text/htmlContent-Length: 14389Connection: keep-aliveVary: Accept-EncodingLast-Modified: Mon, 05 Jan 2026 07:39:05 GMTVary: Accept-EncodingETag: 695b6a99-3835Accept-Ranges: bytesServer: NginxX-Safe: 1770508527BI2l0JIuUWxghcWZx8SnJaaDdF6NxkgqROq1p3l6ptmPTm2rP1exiD4XxTF5FzxSbo6RAOoFvSTpITohzRbLbo3iu+vk3X6tkAA0/WUJ2wwkJi1mwg5LGrameBspYNyBZZWhi2rDC1E1k95UUWm+EUTyoCI0pMc5vUSbbvtVjouU2uYfHwllEUHLHNamNEQEX-VIA: l12MndFP0F0wvkRNOnX-VERSION: 1767614726X-Request-Id: F513F9E5-24B0-48C2-B734-A6C012173C55 !DOCTYPE html>html langzh-CN>head> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1.0> title>Shark/title> script srchttps://cdn.tailwindcss.com>/script> style> /* 根变量定义 - 白天/夜间模式配色 */ :root { --bg-gradient-day: linear-gradient(135deg, #f5f7fa 0%, #e4eaf5 100%); --bg-gradient-night: linear-gradient(135deg, #141e30 0%, #243b55 100%); --card-bg-day: rgba(255, 255, 255, 0.98); --card-bg-night: rgba(17, 25, 40, 0.98); --text-primary-day: #1d1d1f; --text-primary-night: #f5f5f7; --text-secondary-day: #86868b; --text-secondary-night: #a1a1aa; --shadow-day: 0 10px 30px rgba(0, 0, 0, 0.05); --shadow-night: 0 10px 30px rgba(0, 0, 0, 0.2); --transition-all: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); } /* 基础样式 */ body { background: var(--bg-gradient-day); font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif; -webkit-font-smoothing: antialiased; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; box-sizing: border-box; transition: var(--transition-all); } body.dark-mode { background: var(--bg-gradient-night); } .card { background-color: var(--card-bg-day); backdrop-filter: blur(20px); border-radius: 30px; box-shadow: var(--shadow-day); overflow: hidden; transition: var(--transition-all); position: relative; width: 100%; max-width: 400px; padding: 30px 25px; } body.dark-mode .card { background-color: var(--card-bg-night); box-shadow: var(--shadow-night); } /* 标题样式 */ .title { font-size: 32px; font-weight: 600; color: var(--text-primary-day); transition: var(--transition-all); text-align: center; margin-bottom: 8px; } body.dark-mode .title { color: var(--text-primary-night); } .subtitle { font-size: 17px; color: var(--text-secondary-day); text-align: center; margin-bottom: 35px; transition: var(--transition-all); } body.dark-mode .subtitle { color: var(--text-secondary-night); } /* 按钮通用样式 - 核心:图标+主文本 在左,域名标签 在右 */ .btn { position: relative; overflow: hidden; transition: var(--transition-all); font-weight: 500; display: flex; align-items: center; justify-content: space-between; /* 左右布局 */ padding: 18px 22px; text-decoration: none; border-radius: 22px; width: 100%; margin-bottom: 16px; } .btn:last-child { margin-bottom: 0; } /* 按钮左侧内容 (图标 + 主文本) */ .btn-left { display: flex; align-items: center; gap: 12px; } .btn-icon { width: 24px; height: 24px; stroke-width: 2; flex-shrink: 0; } .btn-main-text { font-size: 18px; color: inherit; /* 继承按钮颜色 */ } /* 按钮右侧域名 - 核心优化:使用标签样式 */ .btn-domain-tag { font-size: 15px; font-weight: 500; /* 加粗,更醒目 */ padding: 4px 10px; border-radius: 15px; /* 圆润的标签形状 */ text-align: center; min-width: 80px; /* 保证不同域名长度一致 */ } /* 商城按钮 (填充式) */ .btn-shop { color: white; background-image: linear-gradient(135deg, var(--tw-gradient-stops)); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); } .btn-shop:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); } /* 填充按钮的域名标签:使用半透明白色背景,与按钮形成柔和对比 */ .btn-shop .btn-domain-tag { background-color: rgba(255, 255, 255, 0.2); color: white; } /* 引导页按钮 (描边式) */ .btn-guide { color: var(--text-primary-day); background-color: transparent; border: 2px solid #e0e0e0; } .btn-guide:hover { background-color: rgba(0, 0, 0, 0.02); border-color: #d0d0d0; } /* 描边按钮的域名标签:使用与边框同色系的背景 */ .btn-guide .btn-domain-tag { background-color: rgba(0, 0, 0, 0.05); color: var(--text-secondary-day); } body.dark-mode .btn-guide { color: var(--text-primary-night); border-color: #333344; } body.dark-mode .btn-guide:hover { background-color: rgba(255, 255, 255, 0.02); border-color: #444455; } body.dark-mode .btn-guide .btn-domain-tag { background-color: rgba(255, 255, 255, 0.05); color: var(--text-secondary-night); } /* 按钮内部高光效果 */ .btn::before { content: ; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent); transform: skewX(-25deg); transition: all 0.7s ease-in-out; } .btn:hover::before { left: 150%; } /* 入场动画 */ .title, .subtitle, .btn { opacity: 0; transform: translateY(20px); animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards; } .subtitle { animation-delay: 0.2s; } .btn:nth-child(1) { animation-delay: 0.4s; } .btn:nth-child(2) { animation-delay: 0.5s; } .btn:nth-child(3) { animation-delay: 0.6s; } .btn:nth-child(4) { animation-delay: 0.7s; } .btn:nth-child(5) { animation-delay: 0.8s; } .btn:nth-child(6) { animation-delay: 0.9s; } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } /* 主题切换按钮样式 */ .theme-toggle { position: absolute; top: 25px; right: 25px; width: 40px; height: 40px; border-radius: 50%; background-color: rgba(0, 0, 0, 0.05); display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; transition: var(--transition-all); z-index: 10; } body.dark-mode .theme-toggle { background-color: rgba(255, 255, 255, 0.08); } .theme-toggle svg { width: 22px; height: 22px; transition: var(--transition-all); } .theme-icon-sun { fill: #ffcc00; } .theme-icon-moon { fill: #94a3b8; display: none; } body.dark-mode .theme-icon-sun { display: none; } body.dark-mode .theme-icon-moon { display: block; } .theme-toggle:hover { transform: scale(1.1); background-color: rgba(0, 0, 0, 0.08); } body.dark-mode .theme-toggle:hover { background-color: rgba(255, 255, 255, 0.12); } /* 底部文字 */ .footer-text { color: var(--text-secondary-day); transition: var(--transition-all); font-size: 12px; text-align: center; margin-top: 30px; opacity: 0.7; } body.dark-mode .footer-text { color: var(--text-secondary-night); } /style>/head>body> !-- 主卡片容器 --> div classcard> !-- 主题切换按钮 --> button classtheme-toggle idthemeToggle> svg classtheme-icon-sun xmlnshttp://www.w3.org/2000/svg viewBox0 0 24 24>path dM12 15a3 3 0 100-6 3 3 0 000 6z/>path fill-ruleevenodd dM12 2a10 10 0 100 20 10 10 0 000-20zm0 18a8 8 0 110-16 8 8 0 010 16z clip-ruleevenodd/>/svg> svg classtheme-icon-moon xmlnshttp://www.w3.org/2000/svg viewBox0 0 24 24>path dM12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10zm0-18c4.411 0 8 3.589 8 8s-3.589 8-8 8-8-3.589-8-8 3.589-8 8-8z/>/svg> /button> !-- 标题区域 --> div> h1 classtitle>鲨鱼引导页/h1> p classsubtitle>原域名暂无法使用,请移步其他域名/p> /div> !-- 按钮区域 - 图标+文本 在左,域名标签 在右 --> div classbtn-group> a hrefhttps://ozark.gg target_blank classbtn btn-shop bg-gradient-to-r from-blue-500 to-indigo-600> div classbtn-left> svg classbtn-icon xmlnshttp://www.w3.org/2000/svg fillnone viewBox0 0 24 24 strokecurrentColor>path stroke-linecapround stroke-linejoinround stroke-width2 dM16 11V7a4 4 0 00-8 0v4M5 9h14l1 12H4L5 9z/>/svg> span classbtn-main-text>商城Ⅰ/span> /div> span classbtn-domain-tag>ozark.gg/span> /a> a hrefhttps://shark.lc target_blank classbtn btn-shop bg-gradient-to-r from-emerald-500 to-teal-600> div classbtn-left> svg classbtn-icon xmlnshttp://www.w3.org/2000/svg fillnone viewBox0 0 24 24 strokecurrentColor>path stroke-linecapround stroke-linejoinround stroke-width2 dM16 11V7a4 4 0 00-8 0v4M5 9h14l1 12H4L5 9z/>/svg> span classbtn-main-text>商城Ⅱ/span> /div> span classbtn-domain-tag>shark.lc/span> /a> a hrefhttps://shark.gd target_blank classbtn btn-shop bg-gradient-to-r from-purple-500 to-violet-600> div classbtn-left> svg classbtn-icon xmlnshttp://www.w3.org/2000/svg fillnone viewBox0 0 24 24 strokecurrentColor>path stroke-linecapround stroke-linejoinround stroke-width2 dM16 11V7a4 4 0 00-8 0v4M5 9h14l1 12H4L5 9z/>/svg> span classbtn-main-text>商城Ⅲ/span> /div> span classbtn-domain-tag>shark.gd/span> /a> a hrefhttps://shark.sx target_blank classbtn btn-shop bg-gradient-to-r from-amber-500 to-orange-600> div classbtn-left> svg classbtn-icon xmlnshttp://www.w3.org/2000/svg fillnone viewBox0 0 24 24 strokecurrentColor>path stroke-linecapround stroke-linejoinround stroke-width2 dM16 11V7a4 4 0 00-8 0v4M5 9h14l1 12H4L5 9z/>/svg> span classbtn-main-text>商城Ⅳ/span> /div> span classbtn-domain-tag>shark.sx/span> /a> a hrefhttps://shark.flowus.cn target_blank classbtn btn-guide> div classbtn-left> svg classbtn-icon xmlnshttp://www.w3.org/2000/svg fillnone viewBox0 0 24 24 strokecurrentColor>path stroke-linecapround stroke-linejoinround stroke-width2 dM9 5l7 7-7 7/>/svg> span classbtn-main-text>主引导页/span> /div> span classbtn-domain-tag>shark.flowus.cn/span> /a> a hrefhttps://shark.ooo target_blank classbtn btn-guide> div classbtn-left> svg classbtn-icon xmlnshttp://www.w3.org/2000/svg fillnone viewBox0 0 24 24 strokecurrentColor>path stroke-linecapround stroke-linejoinround stroke-width2 dM9 5l7 7-7 7/>/svg> span classbtn-main-text>备用引导页/span> /div> span classbtn-domain-tag>shark.ooo/span> /a> /div> !-- 底部文字 --> p classfooter-text>点击按钮快速访问,或手动输入右侧域名/p> /div> !-- 纯净JS,仅保留主题切换 --> script> const themeToggle document.getElementById(themeToggle); const body document.body; const savedTheme localStorage.getItem(theme); if (savedTheme dark) { body.classList.add(dark-mode); } else if (savedTheme light) { body.classList.remove(dark-mode); } else { const now new Date(); const hour now.getHours(); if (hour > 18 || hour 6) { body.classList.add(dark-mode); localStorage.setItem(theme, dark); } else { body.classList.remove(dark-mode); localStorage.setItem(theme, light); } } themeToggle.addEventListener(click, () > { if (body.classList.contains(dark-mode)) { body.classList.remove(dark-mode); localStorage.setItem(theme, light); } else { body.classList.add(dark-mode); localStorage.setItem(theme, dark); } }); /script>/body>/html>
Port 443
HTTP/1.1 200 OKDate: Sat, 07 Feb 2026 23:55:28 GMTContent-Type: text/htmlContent-Length: 14389Connection: keep-aliveVary: Accept-EncodingLast-Modified: Mon, 05 Jan 2026 07:39:05 GMTVary: Accept-EncodingETag: 695b6a99-3835Accept-Ranges: bytesServer: NginxX-Safe: 1770508528jVBT0fM4UVKuvHmERRgUgCmK75uVCzGTMbgb9r9IBubk2rYmKhtRWiEHWm1253HDzA1Gl54kIVoGXEN2waIQL3ysVB+VHVsxD9gEo2lHaYxb66H1uE6FMIsNSVC0asNTzOQQW/ouBX0pTe3SzlxR5ZzDL4D8Etsz78PSmRXJgWXoWLNn92P07QO3OHq3jHnpX-VIA: l12MndFP0F0wvkRNOnX-VERSION: 1767614726X-Request-Id: 8BA8BA2E-ED67-4A78-B46F-9FA0279FC6DF !DOCTYPE html>html langzh-CN>head> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1.0> title>Shark/title> script srchttps://cdn.tailwindcss.com>/script> style> /* 根变量定义 - 白天/夜间模式配色 */ :root { --bg-gradient-day: linear-gradient(135deg, #f5f7fa 0%, #e4eaf5 100%); --bg-gradient-night: linear-gradient(135deg, #141e30 0%, #243b55 100%); --card-bg-day: rgba(255, 255, 255, 0.98); --card-bg-night: rgba(17, 25, 40, 0.98); --text-primary-day: #1d1d1f; --text-primary-night: #f5f5f7; --text-secondary-day: #86868b; --text-secondary-night: #a1a1aa; --shadow-day: 0 10px 30px rgba(0, 0, 0, 0.05); --shadow-night: 0 10px 30px rgba(0, 0, 0, 0.2); --transition-all: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); } /* 基础样式 */ body { background: var(--bg-gradient-day); font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif; -webkit-font-smoothing: antialiased; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; box-sizing: border-box; transition: var(--transition-all); } body.dark-mode { background: var(--bg-gradient-night); } .card { background-color: var(--card-bg-day); backdrop-filter: blur(20px); border-radius: 30px; box-shadow: var(--shadow-day); overflow: hidden; transition: var(--transition-all); position: relative; width: 100%; max-width: 400px; padding: 30px 25px; } body.dark-mode .card { background-color: var(--card-bg-night); box-shadow: var(--shadow-night); } /* 标题样式 */ .title { font-size: 32px; font-weight: 600; color: var(--text-primary-day); transition: var(--transition-all); text-align: center; margin-bottom: 8px; } body.dark-mode .title { color: var(--text-primary-night); } .subtitle { font-size: 17px; color: var(--text-secondary-day); text-align: center; margin-bottom: 35px; transition: var(--transition-all); } body.dark-mode .subtitle { color: var(--text-secondary-night); } /* 按钮通用样式 - 核心:图标+主文本 在左,域名标签 在右 */ .btn { position: relative; overflow: hidden; transition: var(--transition-all); font-weight: 500; display: flex; align-items: center; justify-content: space-between; /* 左右布局 */ padding: 18px 22px; text-decoration: none; border-radius: 22px; width: 100%; margin-bottom: 16px; } .btn:last-child { margin-bottom: 0; } /* 按钮左侧内容 (图标 + 主文本) */ .btn-left { display: flex; align-items: center; gap: 12px; } .btn-icon { width: 24px; height: 24px; stroke-width: 2; flex-shrink: 0; } .btn-main-text { font-size: 18px; color: inherit; /* 继承按钮颜色 */ } /* 按钮右侧域名 - 核心优化:使用标签样式 */ .btn-domain-tag { font-size: 15px; font-weight: 500; /* 加粗,更醒目 */ padding: 4px 10px; border-radius: 15px; /* 圆润的标签形状 */ text-align: center; min-width: 80px; /* 保证不同域名长度一致 */ } /* 商城按钮 (填充式) */ .btn-shop { color: white; background-image: linear-gradient(135deg, var(--tw-gradient-stops)); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); } .btn-shop:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); } /* 填充按钮的域名标签:使用半透明白色背景,与按钮形成柔和对比 */ .btn-shop .btn-domain-tag { background-color: rgba(255, 255, 255, 0.2); color: white; } /* 引导页按钮 (描边式) */ .btn-guide { color: var(--text-primary-day); background-color: transparent; border: 2px solid #e0e0e0; } .btn-guide:hover { background-color: rgba(0, 0, 0, 0.02); border-color: #d0d0d0; } /* 描边按钮的域名标签:使用与边框同色系的背景 */ .btn-guide .btn-domain-tag { background-color: rgba(0, 0, 0, 0.05); color: var(--text-secondary-day); } body.dark-mode .btn-guide { color: var(--text-primary-night); border-color: #333344; } body.dark-mode .btn-guide:hover { background-color: rgba(255, 255, 255, 0.02); border-color: #444455; } body.dark-mode .btn-guide .btn-domain-tag { background-color: rgba(255, 255, 255, 0.05); color: var(--text-secondary-night); } /* 按钮内部高光效果 */ .btn::before { content: ; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent); transform: skewX(-25deg); transition: all 0.7s ease-in-out; } .btn:hover::before { left: 150%; } /* 入场动画 */ .title, .subtitle, .btn { opacity: 0; transform: translateY(20px); animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards; } .subtitle { animation-delay: 0.2s; } .btn:nth-child(1) { animation-delay: 0.4s; } .btn:nth-child(2) { animation-delay: 0.5s; } .btn:nth-child(3) { animation-delay: 0.6s; } .btn:nth-child(4) { animation-delay: 0.7s; } .btn:nth-child(5) { animation-delay: 0.8s; } .btn:nth-child(6) { animation-delay: 0.9s; } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } /* 主题切换按钮样式 */ .theme-toggle { position: absolute; top: 25px; right: 25px; width: 40px; height: 40px; border-radius: 50%; background-color: rgba(0, 0, 0, 0.05); display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; transition: var(--transition-all); z-index: 10; } body.dark-mode .theme-toggle { background-color: rgba(255, 255, 255, 0.08); } .theme-toggle svg { width: 22px; height: 22px; transition: var(--transition-all); } .theme-icon-sun { fill: #ffcc00; } .theme-icon-moon { fill: #94a3b8; display: none; } body.dark-mode .theme-icon-sun { display: none; } body.dark-mode .theme-icon-moon { display: block; } .theme-toggle:hover { transform: scale(1.1); background-color: rgba(0, 0, 0, 0.08); } body.dark-mode .theme-toggle:hover { background-color: rgba(255, 255, 255, 0.12); } /* 底部文字 */ .footer-text { color: var(--text-secondary-day); transition: var(--transition-all); font-size: 12px; text-align: center; margin-top: 30px; opacity: 0.7; } body.dark-mode .footer-text { color: var(--text-secondary-night); } /style>/head>body> !-- 主卡片容器 --> div classcard> !-- 主题切换按钮 --> button classtheme-toggle idthemeToggle> svg classtheme-icon-sun xmlnshttp://www.w3.org/2000/svg viewBox0 0 24 24>path dM12 15a3 3 0 100-6 3 3 0 000 6z/>path fill-ruleevenodd dM12 2a10 10 0 100 20 10 10 0 000-20zm0 18a8 8 0 110-16 8 8 0 010 16z clip-ruleevenodd/>/svg> svg classtheme-icon-moon xmlnshttp://www.w3.org/2000/svg viewBox0 0 24 24>path dM12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10zm0-18c4.411 0 8 3.589 8 8s-3.589 8-8 8-8-3.589-8-8 3.589-8 8-8z/>/svg> /button> !-- 标题区域 --> div> h1 classtitle>鲨鱼引导页/h1> p classsubtitle>原域名暂无法使用,请移步其他域名/p> /div> !-- 按钮区域 - 图标+文本 在左,域名标签 在右 --> div classbtn-group> a hrefhttps://ozark.gg target_blank classbtn btn-shop bg-gradient-to-r from-blue-500 to-indigo-600> div classbtn-left> svg classbtn-icon xmlnshttp://www.w3.org/2000/svg fillnone viewBox0 0 24 24 strokecurrentColor>path stroke-linecapround stroke-linejoinround stroke-width2 dM16 11V7a4 4 0 00-8 0v4M5 9h14l1 12H4L5 9z/>/svg> span classbtn-main-text>商城Ⅰ/span> /div> span classbtn-domain-tag>ozark.gg/span> /a> a hrefhttps://shark.lc target_blank classbtn btn-shop bg-gradient-to-r from-emerald-500 to-teal-600> div classbtn-left> svg classbtn-icon xmlnshttp://www.w3.org/2000/svg fillnone viewBox0 0 24 24 strokecurrentColor>path stroke-linecapround stroke-linejoinround stroke-width2 dM16 11V7a4 4 0 00-8 0v4M5 9h14l1 12H4L5 9z/>/svg> span classbtn-main-text>商城Ⅱ/span> /div> span classbtn-domain-tag>shark.lc/span> /a> a hrefhttps://shark.gd target_blank classbtn btn-shop bg-gradient-to-r from-purple-500 to-violet-600> div classbtn-left> svg classbtn-icon xmlnshttp://www.w3.org/2000/svg fillnone viewBox0 0 24 24 strokecurrentColor>path stroke-linecapround stroke-linejoinround stroke-width2 dM16 11V7a4 4 0 00-8 0v4M5 9h14l1 12H4L5 9z/>/svg> span classbtn-main-text>商城Ⅲ/span> /div> span classbtn-domain-tag>shark.gd/span> /a> a hrefhttps://shark.sx target_blank classbtn btn-shop bg-gradient-to-r from-amber-500 to-orange-600> div classbtn-left> svg classbtn-icon xmlnshttp://www.w3.org/2000/svg fillnone viewBox0 0 24 24 strokecurrentColor>path stroke-linecapround stroke-linejoinround stroke-width2 dM16 11V7a4 4 0 00-8 0v4M5 9h14l1 12H4L5 9z/>/svg> span classbtn-main-text>商城Ⅳ/span> /div> span classbtn-domain-tag>shark.sx/span> /a> a hrefhttps://shark.flowus.cn target_blank classbtn btn-guide> div classbtn-left> svg classbtn-icon xmlnshttp://www.w3.org/2000/svg fillnone viewBox0 0 24 24 strokecurrentColor>path stroke-linecapround stroke-linejoinround stroke-width2 dM9 5l7 7-7 7/>/svg> span classbtn-main-text>主引导页/span> /div> span classbtn-domain-tag>shark.flowus.cn/span> /a> a hrefhttps://shark.ooo target_blank classbtn btn-guide> div classbtn-left> svg classbtn-icon xmlnshttp://www.w3.org/2000/svg fillnone viewBox0 0 24 24 strokecurrentColor>path stroke-linecapround stroke-linejoinround stroke-width2 dM9 5l7 7-7 7/>/svg> span classbtn-main-text>备用引导页/span> /div> span classbtn-domain-tag>shark.ooo/span> /a> /div> !-- 底部文字 --> p classfooter-text>点击按钮快速访问,或手动输入右侧域名/p> /div> !-- 纯净JS,仅保留主题切换 --> script> const themeToggle document.getElementById(themeToggle); const body document.body; const savedTheme localStorage.getItem(theme); if (savedTheme dark) { body.classList.add(dark-mode); } else if (savedTheme light) { body.classList.remove(dark-mode); } else { const now new Date(); const hour now.getHours(); if (hour > 18 || hour 6) { body.classList.add(dark-mode); localStorage.setItem(theme, dark); } else { body.classList.remove(dark-mode); localStorage.setItem(theme, light); } } themeToggle.addEventListener(click, () > { if (body.classList.contains(dark-mode)) { body.classList.remove(dark-mode); localStorage.setItem(theme, light); } else { body.classList.add(dark-mode); localStorage.setItem(theme, dark); } }); /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
]