Help
RSS
API
Feed
Maltego
Contact
Domain > 3z75.top
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2024-11-23
104.21.78.93
(
ClassC
)
2025-11-03
172.67.219.99
(
ClassC
)
Port 80
HTTP/1.1 200 OKDate: Mon, 03 Nov 2025 11:40:51 GMTContent-Type: text/html; charsetUTF-8Transfer-Encoding: chunkedConnection: keep-aliveServer: cloudflareNel: {report_to:cf-nel,success_fraction:0.0,max_age:604800}Vary: Accept-EncodingReport-To: {group:cf-nel,max_age:604800,endpoints:{url:https://a.nel.cloudflare.com/report/v4?sViAyE2YqE%2B47M8ghgtt3eTU2pfxL%2F9bkusyZxxPt7nUHHeRps75D9yZSGWouG4j1vd%2F6pWSgtXqW0Er8nHv1Ybempll0INiX}}cf-cache-status: DYNAMICCF-RAY: 998b99653d73c12a-PDXalt-svc: h3:443; ma86400 !DOCTYPE html>html langen-US> head> meta charsetUTF-8> meta http-equivX-UA-Compatible contentIEedge> meta nameviewport contentwidthdevice-width, initial-scale1> title>兴趣院 | 发布/title> meta namegenerator contentJekyll v3.10.0 /> meta propertyog:title content兴趣院 /> meta propertyog:locale contenten_US /> meta namedescription content发布 /> meta propertyog:description content发布 /> link relcanonical hrefhttps://bcc66.github.io/ /> meta propertyog:url contenthttps://bcc66.github.io/ /> meta propertyog:site_name content兴趣院 /> meta propertyog:type contentwebsite /> meta nametwitter:card contentsummary /> meta propertytwitter:title content兴趣院 /> script typeapplication/ld+json> {@context:https://schema.org,@type:WebSite,description:发布,headline:bcc66,name:bcc66,url:https://bcc66.github.io/} /script> style> .container { text-align: center; padding: 20px; background-color: #fff; border: 1px solid #ccc; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } .alert { padding: 15px; margin-bottom: 20px; border: 1px solid transparent; border-radius: 8px; font-size: 14px; line-height: 1.5; } .alert-danger { color: #721c24; background-color: #f8d7da; border-color: #f5c6cb; } .alert-warning { color: #856404; background-color: #fff3cd; border-color: #ffeaa7; } .alert-info { color: #0c5460; background-color: #d1ecf1; border-color: #bee5eb; } .btn { display: inline-block; padding: 8px 16px; font-size: 14px; font-weight: 500; text-align: center; text-decoration: none; border: 1px solid transparent; border-radius: 6px; cursor: pointer; transition: all 0.2s ease; } .btn-primary { color: #fff; background-color: #007bff; border-color: #007bff; } .btn-primary:hover { background-color: #0056b3; border-color: #0056b3; } .btn-sm { padding: 6px 12px; font-size: 12px; } .mt-2 { margin-top: 8px; } .loading-text { color: #6c757d; font-style: italic; animation: loading-pulse 1.5s ease-in-out infinite; } @keyframes loading-pulse { 0% { opacity: 0.6; } 50% { opacity: 1; } 100% { opacity: 0.6; } } .link-item { margin-bottom: 0; } .link-item a { color: #0366d6; text-decoration: none; transition: color 0.2s ease; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .link-item a:hover { color: #0056b3; text-decoration: underline; } /* 手机端链接优化 */ @media (max-width: 768px) { .link-item a { max-width: 100%; text-align: left; } ol, ul { padding-left: 20px; } } /* 头部logo样式 */ h1 { text-align: center; margin-bottom: 1.5rem; } h1 img { max-width: 100%; height: auto; display: block; margin: 0 auto; } /* 移动端优化 */ @media (max-width: 768px) { h1 img { max-width: 80%; } } @media (max-width: 480px) { h1 img { max-width: 90%; } } /style> script> const dynamicKey ab1e8b73369a156ace6e6f73ed90f803b33990696f002e3d524a8c488f83a5c1; window.onload function() { // 直接加载链接数据 loadLinksFromJson(); } // 获取当前访问的路径(不包括域名部分) function getCurrentPath() { const path window.location.pathname; // 如果是根目录或index.php,返回空字符串 if (path / || path /index.php) { return ; } return path; } // 清除路径后缀,跳转到首页 function clearPathSuffix() { window.location.href /; } async function loadLinksFromJson(retryCount 0) { const maxRetries 3; const currentPath getCurrentPath(); // 获取当前路径 // 如果检测到路径,显示提示信息 if (currentPath) { const tipElement document.getElementById(bookmark-tip); const pathElement document.getElementById(detected-path); if (tipElement && pathElement) { pathElement.textContent currentPath; tipElement.style.display block; } } try { const response await fetch(/data.php?key + dynamicKey + &t + Date.now()); if (!response.ok) { throw new Error(`HTTP ${response.status}: ${response.statusText}`); } const data await response.json(); if (!data || !data.main || !data.publish) { throw new Error(数据格式错误); } const mainLinksContainer document.getElementById(main-links); if (mainLinksContainer && data.main) { mainLinksContainer.innerHTML ; data.main.forEach((link, index) > { const li document.createElement(li); li.className link-item; const a document.createElement(a); let url, displayText; if (typeof link object && link.url) { url link.url; displayText (link.display && link.display.trim() ! ) ? link.display : (url.startsWith(http) ? url.replace(/^https?:\/\//, ) : url); } else { url link; displayText url.startsWith(http) ? url.replace(/^https?:\/\//, ) : url; } // 拼接当前路径到主站URL if (currentPath) { url url + currentPath; displayText displayText + currentPath; } a.href url; a.textContent `地址${index + 1}:${displayText}`; li.appendChild(a); mainLinksContainer.appendChild(li); }); } const publishLinksContainer document.getElementById(publish-links); if (publishLinksContainer && data.publish) { publishLinksContainer.innerHTML ; data.publish.forEach((link, index) > { const li document.createElement(li); li.className link-item; const a document.createElement(a); let url, displayText; if (typeof link object && link.url) { url link.url; displayText (link.display && link.display.trim() ! ) ? link.display : (url.startsWith(http) ? url.replace(/^https?:\/\//, ) : url); } else { url link; displayText url.startsWith(http) ? url.replace(/^https?:\/\//, ) : url; } a.href url; a.textContent `发布页${index + 1}:${displayText}`; li.appendChild(a); publishLinksContainer.appendChild(li); }); } clearErrorMessage(); } catch (error) { console.error(`加载链接失败 (尝试 ${retryCount + 1}/${maxRetries}):`, error); if (retryCount maxRetries) { showRetryMessage(retryCount + 1, maxRetries); setTimeout(() > { loadLinksFromJson(retryCount + 1); }, 1000 * (retryCount + 1)); } else { showErrorMessage(error.message); loadBackupLinks(); } } } function showRetryMessage(currentTry, maxTries) { const container document.querySelector(.container-lg); if (container) { clearErrorMessage(); const retryDiv document.createElement(div); retryDiv.id retry-message; retryDiv.className alert alert-warning; retryDiv.innerHTML ` strong>正在重试.../strong>br> 第 ${currentTry} 次尝试,共 ${maxTries} 次br> small>请稍候.../small> `; container.insertBefore(retryDiv, container.firstChild); } } function showErrorMessage(message) { const container document.querySelector(.container-lg); if (container) { clearErrorMessage(); const errorDiv document.createElement(div); errorDiv.id error-message; errorDiv.className alert alert-danger; errorDiv.innerHTML ` strong>⚠️ 加载失败/strong>br> strong>错误信息:/strong>${message}br> strong>解决方案:/strong>br> • 请检查网络连接br> • 稍后重试br> • 如果问题持续,请联系管理员br> button onclickretryLoad() classbtn btn-primary btn-sm mt-2>重新加载/button> `; container.insertBefore(errorDiv, container.firstChild); } } function clearErrorMessage() { const existingError document.getElementById(error-message); const existingRetry document.getElementById(retry-message); if (existingError) existingError.remove(); if (existingRetry) existingRetry.remove(); } function retryLoad() { clearErrorMessage(); loadLinksFromJson(); } function loadBackupLinks() { const container document.querySelector(.container-lg); if (container) { const backupDiv document.createElement(div); backupDiv.className alert alert-info; backupDiv.innerHTML ` strong>ℹ️ 备用信息/strong>br> 由于无法加载最新链接,请使用以下备用方式:br> • 发送邮件至:qiqiwuqi7757@gmail.combr> • 等待系统自动恢复br> • 请尝试:xqy123.combr> • 联系技术支持 `; container.insertBefore(backupDiv, container.firstChild); } } /script> style>body {font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif; line-height: 1.6; margin: 0; padding: 0; background-color: #fff;} .container-lg {max-width: 960px; margin: 0 auto; padding: 20px;} h1 {font-size: 2rem; margin-bottom: 1rem;} h2 {font-size: 1.5rem; margin-bottom: 1rem;} ul, ol {margin: 0 0 1rem 1.25rem;} p {margin: 0 0 1rem;} a {color: #0366d6; text-decoration: none;} a:hover {text-decoration: underline;} blockquote {margin: 1rem 0; padding: 0.5rem 1rem; background-color: #f6f8fa; border-left: 4px solid #dfe2e5;} blockquote p {margin: 0;} hr {border: 0; height: 1px; background: #dfe2e5; margin: 2rem 0;} /style> /head> body> div classcontainer-lg px-3 my-5 markdown-body> h1>a hrefhttps://bcc66.github.io/>img src/images/a.png alt兴趣院>/a>/h1> h2 idmain-address>主站地址:/h2> div idbookmark-tip classalert alert-info stylemargin-bottom: 15px; display: none;> strong>💡 书签路径识别:/strong>检测到您通过书签访问(路径:span iddetected-path>/span>),下方主站地址已自动拼接该路径,点击即可直达新域名对应的页面。 button onclickclearPathSuffix() classbtn btn-primary btn-sm mt-2 stylemargin-left: 10px;>清除后缀/button> /div> ol idmain-links> li>span classloading-text>数据正在加载.../span>/li> li>span classloading-text>数据正在加载.../span>/li> li>span classloading-text>数据正在加载.../span>/li> li>span classloading-text>数据正在加载.../span>/li> li>span classloading-text>数据正在加载.../span>/li> /ol>p>请多尝试几遍各个网址,使用速度最快的域名访问。以上域名如果均被封无法访问,请勿着急,会及时更新最新域名网址...敬请留意!/p> h2 idpublish-page>发布页:/h2> ul idpublish-links> li>span classloading-text>数据正在加载.../span>/li> li>span classloading-text>数据正在加载.../span>/li> li>span classloading-text>数据正在加载.../span>/li> li>span classloading-text>数据正在加载.../span>/li> /ul> p>strong>找回邮箱/strong>:a href/cdn-cgi/l/email-protection class__cf_email__ data-cfemail6f1e061e06181a1e0658585a582f08020e0603410c0002>email protected/a>/p> p>通过发送任意邮件至该邮箱,您将会自动收到当前最新的发布地址信息,确保您始终保持访问。/p> hr /> blockquote> p>strong>1/strong>: 如果网址不能正常访问,请更换浏览器或网络环境进行尝试,推荐谷歌、火狐浏览器;(移动网络及国产浏览器会拦截)!/p> p>strong>2/strong>: 如果您记不住本站域名,请收藏该页地址,或截屏收藏本分享页,收藏并分享给好朋友。/p> p>strong>3/strong>: 如果以上所有网址依然不能访问,请搭梯子,老司机都懂,一切问题的终极解决办法。/p> /blockquote> /div> script data-cfasyncfalse src/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js>/script>/body>/html>
Port 443
HTTP/1.1 200 OKDate: Mon, 03 Nov 2025 11:40:51 GMTContent-Type: text/html; charsetUTF-8Transfer-Encoding: chunkedConnection: keep-aliveServer: cloudflareNel: {report_to:cf-nel,success_fraction:0.0,max_age:604800}Vary: Accept-EncodingReport-To: {group:cf-nel,max_age:604800,endpoints:{url:https://a.nel.cloudflare.com/report/v4?sS2MjtevJD9Chm0vtnBIP%2F6W5qidyxOL7Q3Y%2Bgvy6Snc3W1n1mDWTcKdOQgoOQLXpqzBWGW1p0UVBRk49KC8iu1gDDuc3bwuW}}cf-cache-status: DYNAMICCF-RAY: 998b9965dc8a1d57-PDXalt-svc: h3:443; ma86400 !DOCTYPE html>html langen-US> head> meta charsetUTF-8> meta http-equivX-UA-Compatible contentIEedge> meta nameviewport contentwidthdevice-width, initial-scale1> title>兴趣院 | 发布/title> meta namegenerator contentJekyll v3.10.0 /> meta propertyog:title content兴趣院 /> meta propertyog:locale contenten_US /> meta namedescription content发布 /> meta propertyog:description content发布 /> link relcanonical hrefhttps://bcc66.github.io/ /> meta propertyog:url contenthttps://bcc66.github.io/ /> meta propertyog:site_name content兴趣院 /> meta propertyog:type contentwebsite /> meta nametwitter:card contentsummary /> meta propertytwitter:title content兴趣院 /> script typeapplication/ld+json> {@context:https://schema.org,@type:WebSite,description:发布,headline:bcc66,name:bcc66,url:https://bcc66.github.io/} /script> style> .container { text-align: center; padding: 20px; background-color: #fff; border: 1px solid #ccc; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } .alert { padding: 15px; margin-bottom: 20px; border: 1px solid transparent; border-radius: 8px; font-size: 14px; line-height: 1.5; } .alert-danger { color: #721c24; background-color: #f8d7da; border-color: #f5c6cb; } .alert-warning { color: #856404; background-color: #fff3cd; border-color: #ffeaa7; } .alert-info { color: #0c5460; background-color: #d1ecf1; border-color: #bee5eb; } .btn { display: inline-block; padding: 8px 16px; font-size: 14px; font-weight: 500; text-align: center; text-decoration: none; border: 1px solid transparent; border-radius: 6px; cursor: pointer; transition: all 0.2s ease; } .btn-primary { color: #fff; background-color: #007bff; border-color: #007bff; } .btn-primary:hover { background-color: #0056b3; border-color: #0056b3; } .btn-sm { padding: 6px 12px; font-size: 12px; } .mt-2 { margin-top: 8px; } .loading-text { color: #6c757d; font-style: italic; animation: loading-pulse 1.5s ease-in-out infinite; } @keyframes loading-pulse { 0% { opacity: 0.6; } 50% { opacity: 1; } 100% { opacity: 0.6; } } .link-item { margin-bottom: 0; } .link-item a { color: #0366d6; text-decoration: none; transition: color 0.2s ease; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .link-item a:hover { color: #0056b3; text-decoration: underline; } /* 手机端链接优化 */ @media (max-width: 768px) { .link-item a { max-width: 100%; text-align: left; } ol, ul { padding-left: 20px; } } /* 头部logo样式 */ h1 { text-align: center; margin-bottom: 1.5rem; } h1 img { max-width: 100%; height: auto; display: block; margin: 0 auto; } /* 移动端优化 */ @media (max-width: 768px) { h1 img { max-width: 80%; } } @media (max-width: 480px) { h1 img { max-width: 90%; } } /style> script> const dynamicKey ab1e8b73369a156ace6e6f73ed90f803b33990696f002e3d524a8c488f83a5c1; window.onload function() { // 直接加载链接数据 loadLinksFromJson(); } // 获取当前访问的路径(不包括域名部分) function getCurrentPath() { const path window.location.pathname; // 如果是根目录或index.php,返回空字符串 if (path / || path /index.php) { return ; } return path; } // 清除路径后缀,跳转到首页 function clearPathSuffix() { window.location.href /; } async function loadLinksFromJson(retryCount 0) { const maxRetries 3; const currentPath getCurrentPath(); // 获取当前路径 // 如果检测到路径,显示提示信息 if (currentPath) { const tipElement document.getElementById(bookmark-tip); const pathElement document.getElementById(detected-path); if (tipElement && pathElement) { pathElement.textContent currentPath; tipElement.style.display block; } } try { const response await fetch(/data.php?key + dynamicKey + &t + Date.now()); if (!response.ok) { throw new Error(`HTTP ${response.status}: ${response.statusText}`); } const data await response.json(); if (!data || !data.main || !data.publish) { throw new Error(数据格式错误); } const mainLinksContainer document.getElementById(main-links); if (mainLinksContainer && data.main) { mainLinksContainer.innerHTML ; data.main.forEach((link, index) > { const li document.createElement(li); li.className link-item; const a document.createElement(a); let url, displayText; if (typeof link object && link.url) { url link.url; displayText (link.display && link.display.trim() ! ) ? link.display : (url.startsWith(http) ? url.replace(/^https?:\/\//, ) : url); } else { url link; displayText url.startsWith(http) ? url.replace(/^https?:\/\//, ) : url; } // 拼接当前路径到主站URL if (currentPath) { url url + currentPath; displayText displayText + currentPath; } a.href url; a.textContent `地址${index + 1}:${displayText}`; li.appendChild(a); mainLinksContainer.appendChild(li); }); } const publishLinksContainer document.getElementById(publish-links); if (publishLinksContainer && data.publish) { publishLinksContainer.innerHTML ; data.publish.forEach((link, index) > { const li document.createElement(li); li.className link-item; const a document.createElement(a); let url, displayText; if (typeof link object && link.url) { url link.url; displayText (link.display && link.display.trim() ! ) ? link.display : (url.startsWith(http) ? url.replace(/^https?:\/\//, ) : url); } else { url link; displayText url.startsWith(http) ? url.replace(/^https?:\/\//, ) : url; } a.href url; a.textContent `发布页${index + 1}:${displayText}`; li.appendChild(a); publishLinksContainer.appendChild(li); }); } clearErrorMessage(); } catch (error) { console.error(`加载链接失败 (尝试 ${retryCount + 1}/${maxRetries}):`, error); if (retryCount maxRetries) { showRetryMessage(retryCount + 1, maxRetries); setTimeout(() > { loadLinksFromJson(retryCount + 1); }, 1000 * (retryCount + 1)); } else { showErrorMessage(error.message); loadBackupLinks(); } } } function showRetryMessage(currentTry, maxTries) { const container document.querySelector(.container-lg); if (container) { clearErrorMessage(); const retryDiv document.createElement(div); retryDiv.id retry-message; retryDiv.className alert alert-warning; retryDiv.innerHTML ` strong>正在重试.../strong>br> 第 ${currentTry} 次尝试,共 ${maxTries} 次br> small>请稍候.../small> `; container.insertBefore(retryDiv, container.firstChild); } } function showErrorMessage(message) { const container document.querySelector(.container-lg); if (container) { clearErrorMessage(); const errorDiv document.createElement(div); errorDiv.id error-message; errorDiv.className alert alert-danger; errorDiv.innerHTML ` strong>⚠️ 加载失败/strong>br> strong>错误信息:/strong>${message}br> strong>解决方案:/strong>br> • 请检查网络连接br> • 稍后重试br> • 如果问题持续,请联系管理员br> button onclickretryLoad() classbtn btn-primary btn-sm mt-2>重新加载/button> `; container.insertBefore(errorDiv, container.firstChild); } } function clearErrorMessage() { const existingError document.getElementById(error-message); const existingRetry document.getElementById(retry-message); if (existingError) existingError.remove(); if (existingRetry) existingRetry.remove(); } function retryLoad() { clearErrorMessage(); loadLinksFromJson(); } function loadBackupLinks() { const container document.querySelector(.container-lg); if (container) { const backupDiv document.createElement(div); backupDiv.className alert alert-info; backupDiv.innerHTML ` strong>ℹ️ 备用信息/strong>br> 由于无法加载最新链接,请使用以下备用方式:br> • 发送邮件至:qiqiwuqi7757@gmail.combr> • 等待系统自动恢复br> • 请尝试:xqy123.combr> • 联系技术支持 `; container.insertBefore(backupDiv, container.firstChild); } } /script> style>body {font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif; line-height: 1.6; margin: 0; padding: 0; background-color: #fff;} .container-lg {max-width: 960px; margin: 0 auto; padding: 20px;} h1 {font-size: 2rem; margin-bottom: 1rem;} h2 {font-size: 1.5rem; margin-bottom: 1rem;} ul, ol {margin: 0 0 1rem 1.25rem;} p {margin: 0 0 1rem;} a {color: #0366d6; text-decoration: none;} a:hover {text-decoration: underline;} blockquote {margin: 1rem 0; padding: 0.5rem 1rem; background-color: #f6f8fa; border-left: 4px solid #dfe2e5;} blockquote p {margin: 0;} hr {border: 0; height: 1px; background: #dfe2e5; margin: 2rem 0;} /style> /head> body> div classcontainer-lg px-3 my-5 markdown-body> h1>a hrefhttps://bcc66.github.io/>img src/images/a.png alt兴趣院>/a>/h1> h2 idmain-address>主站地址:/h2> div idbookmark-tip classalert alert-info stylemargin-bottom: 15px; display: none;> strong>💡 书签路径识别:/strong>检测到您通过书签访问(路径:span iddetected-path>/span>),下方主站地址已自动拼接该路径,点击即可直达新域名对应的页面。 button onclickclearPathSuffix() classbtn btn-primary btn-sm mt-2 stylemargin-left: 10px;>清除后缀/button> /div> ol idmain-links> li>span classloading-text>数据正在加载.../span>/li> li>span classloading-text>数据正在加载.../span>/li> li>span classloading-text>数据正在加载.../span>/li> li>span classloading-text>数据正在加载.../span>/li> li>span classloading-text>数据正在加载.../span>/li> /ol>p>请多尝试几遍各个网址,使用速度最快的域名访问。以上域名如果均被封无法访问,请勿着急,会及时更新最新域名网址...敬请留意!/p> h2 idpublish-page>发布页:/h2> ul idpublish-links> li>span classloading-text>数据正在加载.../span>/li> li>span classloading-text>数据正在加载.../span>/li> li>span classloading-text>数据正在加载.../span>/li> li>span classloading-text>数据正在加载.../span>/li> /ul> p>strong>找回邮箱/strong>:a href/cdn-cgi/l/email-protection class__cf_email__ data-cfemail8afbe3fbe3fdfffbe3bdbdbfbdcaede7ebe3e6a4e9e5e7>email protected/a>/p> p>通过发送任意邮件至该邮箱,您将会自动收到当前最新的发布地址信息,确保您始终保持访问。/p> hr /> blockquote> p>strong>1/strong>: 如果网址不能正常访问,请更换浏览器或网络环境进行尝试,推荐谷歌、火狐浏览器;(移动网络及国产浏览器会拦截)!/p> p>strong>2/strong>: 如果您记不住本站域名,请收藏该页地址,或截屏收藏本分享页,收藏并分享给好朋友。/p> p>strong>3/strong>: 如果以上所有网址依然不能访问,请搭梯子,老司机都懂,一切问题的终极解决办法。/p> /blockquote> /div> script data-cfasyncfalse src/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js>/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
]