https://cn.dongti.me/

Eingereichte URL:
https://cn.dongti.me/
Bericht beendet:

Die von der Seite ausgehenden identifizierten Links

LinkText
https://links.dongti.me/redirect.html?url=https%3A%2F%2Foverwatch.dog%2F科学上网
https://baidu.dearher.chat/随便看看
https://www.dongti.me回到【胴体的秘密】

JavaScript-Variablen · 10 gefunden

Globale JavaScript-Variablen, die in das Window Object einer Seite geladen werden, sind Variablen, die außerhalb von Funktionen deklariert werden und von jeder Stelle des Codes innerhalb des aktuellen Bereichs zugänglich sind

NameTyp
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
getIpInfofunction
randomVpnLinkfunction
_paqobject
Piwikobject
Matomoobject
AnalyticsTrackerobject
piwik_logfunction

Konsolenprotokoll-Meldungen · 0 gefunden

In der Web-Konsole protokollierte Meldungen

HTML

Der HTML-Rohtext der Seite

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <meta name="robots" content="noindex, nofollow">
    <title>访问限制提示</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            text-align: center;
            padding: 50px;
            background-color: #f9f9f9;
        }
        .info-block {
            margin: 20px auto;
            padding: 20px;
            border: 1px solid #ccc;
            border-radius: 5px;
            background: white;
            display: inline-block;
            width: 60%;
            text-align: left;
            word-wrap: break-word; /* 添加自动换行属性 */
        }
        .loading {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
        }
        .message {
            font-size: 18px;
            color: #333;
            margin-bottom: 20px;
        }
        p {
            margin: 10px 0;
        }
        svg {
            margin: 20px 0;
        }
        .option-link {
            margin-top: 20px;
        }
        .option-link a {
            display: inline-block;
            padding: 10px 20px;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s;
            margin-right: 10px; /* 添加右边距 */
        }
		
        .option-link a:hover {
            background-color: #0056b3;
        }
        .redirect-button {
            margin-top: 20px;
            display: none; /* 默认隐藏 */
            opacity: 0;
            transition: opacity 0.5s ease-in-out; /* 添加淡入效果 */
        }
        .redirect-button a {
            display: inline-block;
            padding: 10px 20px;
            background-color: #28a745;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        .redirect-button a:hover {
            background-color: #218838;
        }
        /* 优化信息显示的颜色 */
        .allow-access {
            color: #28a745;
            font-weight: bold;
        }
        .deny-access {
            color: #dc3545;
            font-weight: bold;
        }
    </style>
</head>
<body>
    <div id="msg" class="message"><p class="allow-access">您的所在国家和地区可以访问此网站。</p></div>
    <div class="info-block">
        <div id="loading" class="loading" style="display: none;">正在加载IP信息...(如果长时间未响应,请科学上网方可访问本站。)</div>
        <p>您的IP: <span id="userAgentIp">2a09:bac5:3128:e64::16f:3</span></p>
        <p>国家: <span id="userAgentCountry">ES</span></p>
        <p>地区: <span id="userAgentRegion">Madrid</span></p>
        <p>城市: <span id="userAgentCity">Chamartin</span></p>
        <p>ISP提供商: <span id="userAgentIsp">CLOUDFLARENET</span></p>
        <p>设备: <span id="userAgentDevice">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36</span></p>
    </div>
    <div>
        <svg height="100" width="100" xmlns="http://www.w3.org/2000/svg">
            <line x1="10" y1="90" x2="50" y2="10" style="stroke:#333;stroke-width:2"></line>
            <line x1="50" y1="10" x2="90" y2="90" style="stroke:#333;stroke-width:2"></line>
            <line x1="20" y1="80" x2="80" y2="80" style="stroke:#333;stroke-width:2"></line>
            <line x1="30" y1="70" x2="70" y2="70" style="stroke:#333;stroke-width:2"></line>
            <line x1="40" y1="60" x2="60" y2="60" style="stroke:#333;stroke-width:2"></line>
            <line x1="45" y1="50" x2="55" y2="50" style="stroke:#333;stroke-width:2"></line>
        </svg>
    </div>

    <div class="option-link">
        <a id="vpnLink" href="https://links.dongti.me/redirect.html?url=https%3A%2F%2Foverwatch.dog%2F" target="_blank">科学上网</a>
        <a href="https://baidu.dearher.chat/" target="_blank">随便看看</a>
    </div>

    <div class="redirect-button" id="redirectButton" style="display: block; opacity: 1;">
        <a href="https://www.dongti.me" target="_blank">回到【胴体的秘密】</a>
    </div>

    <script async="" src="//analytics.dongti.me/matomo.js"></script><script>
        function getIpInfo() {
            var fetchUrl = "https://ipapi.co/json";
            fetch(fetchUrl)
              .then(res => res.json())
              .then(json => {
                var country = json.country;
                var ip = json.ip;
                var region = json.region;
                var city = json.city;
                var org = json.org;
                document.getElementById("userAgentIp").innerHTML = ip;
                document.getElementById("userAgentCountry").innerHTML = country;
                document.getElementById("userAgentRegion").innerHTML = region;
                document.getElementById("userAgentCity").innerHTML = city;
                document.getElementById("userAgentIsp").innerHTML = org;
                var uaInfo = navigator.userAgent;
                document.getElementById("userAgentDevice").innerHTML = uaInfo;
                document.getElementById("loading").style.display = 'none';

                var msgElement = document.getElementById('msg');
                var redirectButton = document.getElementById('redirectButton');
                if (country === 'CN') {
                    msgElement.innerHTML = '<p class="deny-access">抱歉...本网站的内容暂时无法在您的国家和地区显示。</p>';
                } else {
                    msgElement.innerHTML = '<p class="allow-access">您的所在国家和地区可以访问此网站。</p>';
                    redirectButton.style.display = 'block'; // 显示跳转按钮
                    setTimeout(() => {
                        redirectButton.style.opacity = 1; // 逐渐显示按钮
                    }, 200); // 延迟 200ms 触发
                }
              }).catch(error => {
                console.error('Error fetching IP information:', error);
                document.getElementById("loading").innerHTML = '无法加载IP信息,请稍后再试。';
              });
        }

        getIpInfo();
		function randomVpnLink() {
			var vpnLinks = [
				"https://overwatch.dog/",
			];
			var randomLink = vpnLinks[Math.floor(Math.random() * vpnLinks.length)];
			// 将目标 URL 传递给中间跳转页面
			document.getElementById("vpnLink").href = `https://links.dongti.me/redirect.html?url=${encodeURIComponent(randomLink)}`;
		}

        randomVpnLink(); // 调用函数设置随机VPN链接
    </script>
    <!-- Matomo -->
    <script>
        var _paq = window._paq = window._paq || [];
        /* tracker methods like "setCustomDimension" should be called before "trackPageView" */
        _paq.push(['trackPageView']);
        _paq.push(['enableLinkTracking']);
        (function() {
        var u="//analytics.dongti.me/";
        _paq.push(['setTrackerUrl', u+'matomo.php']);
        _paq.push(['setSiteId', '1']);
        var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
        g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
        })();
    </script>
    <!-- End Matomo Code --> 


</body></html>