Domain aaareps.org
CLOUDFLARENET
Software information

cloudflare cloudflare

tcp/443 tcp/80 tcp/8443

  • Open service 2606:4700:3030::ac43:b24c:8443 · aaareps.org

    2026-01-12 22:26

    HTTP/1.1 522 <none>
    Date: Mon, 12 Jan 2026 22:26:41 GMT
    Content-Type: text/plain; charset=UTF-8
    Content-Length: 15
    Connection: close
    Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
    Expires: Thu, 01 Jan 1970 00:00:01 GMT
    Referrer-Policy: same-origin
    Server-Timing: cfEdge;dur=19383,cfOrigin;dur=0
    X-Frame-Options: SAMEORIGIN
    Server: cloudflare
    CF-RAY: 9bd0133b3ff11185-YYZ
    alt-svc: h3=":8443"; ma=86400
    
    
    error code: 522
    Found 2 days ago by HttpPlugin
    Create report
  • Open service 2606:4700:3037::6815:11ce:80 · aaareps.org

    2026-01-12 22:26

    HTTP/1.1 301 Moved Permanently
    Date: Mon, 12 Jan 2026 22:26:22 GMT
    Content-Type: text/plain
    Content-Length: 24
    Connection: close
    Server: cloudflare
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Location: https://aaareps.org/
    Host-Header: 8441280b0c35cbc1147f8ba998a563a7
    X-Proxy-Cache-Info: DT:1
    cf-cache-status: DYNAMIC
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Hs6fNAuTjUTuWHpb2EQpjIQMGLrKcjsdzkgTsji0PDbBZRIiG4sINaecNB5iLwzKJ5o6QMK14v0Ftj5sHM393N%2By7dHcZFlv37ILDVyWh1Uo9sQeCTSK"}]}
    CF-RAY: 9bd013368ba706ca-AMS
    alt-svc: h3=":443"; ma=86400
    
    
    301 - Moved Permanently
    
    Found 2 days ago by HttpPlugin
    Create report
  • Open service 2606:4700:3037::6815:11ce:8443 · aaareps.org

    2026-01-12 22:26

    HTTP/1.1 522 <none>
    Date: Mon, 12 Jan 2026 22:26:42 GMT
    Content-Type: text/plain; charset=UTF-8
    Content-Length: 15
    Connection: close
    Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
    Expires: Thu, 01 Jan 1970 00:00:01 GMT
    Referrer-Policy: same-origin
    X-Frame-Options: SAMEORIGIN
    Server: cloudflare
    CF-RAY: 9bd0133ae848c4d8-FRA
    alt-svc: h3=":8443"; ma=86400
    
    
    error code: 522
    Found 2 days ago by HttpPlugin
    Create report
  • Open service 2606:4700:3030::ac43:b24c:443 · aaareps.org

    2026-01-12 22:26

    HTTP/1.1 200 OK
    Date: Mon, 12 Jan 2026 22:26:22 GMT
    Content-Type: text/html; charset=UTF-8
    Transfer-Encoding: chunked
    Connection: close
    Server: cloudflare
    vary: Accept-Encoding
    x-httpd-modphp: 1
    host-header: 8441280b0c35cbc1147f8ba998a563a7
    x-proxy-cache: HIT
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=46MC7cr3d%2FD2p%2FO54l82QEC1WglIVlZdAnQ0ZBV%2F4iqv1Dm9nem%2BELGloOA4jpyh3VFZ%2F9ctpURsTXRC0bOaHaAW69O8FQ796In4O7Z56D7ayGDCbJvH"}]}
    cf-cache-status: DYNAMIC
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    CF-RAY: 9bd01337390637d2-FRA
    alt-svc: h3=":443"; ma=86400
    
    Page title: 设备信息
    
    <!DOCTYPE html>
    <html lang="zh-CN">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>设备信息</title>
        <style>
            /* 样式和布局 */
        </style>
    </head>
    <body>
        <div class="container">
            <h2>当前设备信息</h2>
            <div class="info">
                <strong>客户端 IP 地址:</strong>
                <p id="client-ip">正在获取...</p>
            </div>
    
            <div class="info">
                <strong>浏览器和操作系统:</strong>
                <p id="browser-info">正在获取...</p>
            </div>
    
            <div class="info">
                <strong>本地 IP 地址:</strong>
                <p id="local-ip">正在获取...</p>
            </div>
    
            <div class="info">
                <strong>浏览器语言:</strong>
                <p id="browser-language">正在获取...</p>
            </div>
    
            <div class="info">
                <strong>DNS 服务器:</strong>
                <p id="dns-info">正在获取...</p>
            </div>
        </div>
    
        <script>
            // 获取客户端 IP
            async function getClientIP() {
                const response = await fetch('https://api.ipify.org?format=json');
                const data = await response.json();
                return data.ip;
            }
    
            // 获取本地 IP(使用 WebRTC)
            function getLocalIP() {
                return new Promise((resolve, reject) => {
                    const pc = new RTCPeerConnection({ iceServers: [] });
                    pc.createDataChannel('');
                    pc.createOffer().then(offer => pc.setLocalDescription(offer));
                    pc.onicecandidate = event => {
                        if (event.candidate) {
                            const ip = /([0-9]{1,3}\.){3}[0-9]{1,3}/.exec(event.candidate.candidate);
                            if (ip) {
                                resolve(ip[0]);
                            }
                        }
                    };
                    setTimeout(() => reject('无法获取本地 IP'), 1000);
                });
            }
    
            // 获取浏览器信息
            function getBrowserInfo() {
                return navigator.userAgent;
            }
    
            // 获取浏览器语言
            function getBrowserLanguage() {
                return navigator.language || navigator.userLanguage;
            }
    
            // 获取 DNS 信息
            async function getDNSInfo() {
                // DNS 获取通常需要后端支持,这里可以替换为静态数据或其他方式
                return '无法直接获取 DNS 信息';
            }
    
            // 获取并显示信息
            getClientIP().then(ip => {
                document.getElementById("client-ip").textContent = ip;
            });
    
            getLocalIP().then(ip => {
                document.getElementById("local-ip").textContent = ip;
            }).catch(error => {
                document.getElementById("local-ip").textContent = '无法获取本地 IP';
            });
    
            document.getElementById("browser-info").textContent = getBrowserInfo();
            document.getElementById("browser-language").textContent = getBrowserLanguage();
    
            getDNSInfo().then(dns => {
                document.getElementById("dns-info").textContent = dns;
            });
        </script>
    </body>
    </html>
    
    Found 2 days ago by HttpPlugin
    Create report
  • Open service 104.21.17.206:8443 · aaareps.org

    2026-01-12 22:26

    HTTP/1.1 522 <none>
    Date: Mon, 12 Jan 2026 22:26:41 GMT
    Content-Type: text/plain; charset=UTF-8
    Content-Length: 15
    Connection: close
    Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
    Expires: Thu, 01 Jan 1970 00:00:01 GMT
    Referrer-Policy: same-origin
    X-Frame-Options: SAMEORIGIN
    Server: cloudflare
    CF-RAY: 9bd0133accb4dbe7-FRA
    alt-svc: h3=":8443"; ma=86400
    
    
    error code: 522
    Found 2 days ago by HttpPlugin
    Create report
  • Open service 2606:4700:3030::ac43:b24c:80 · aaareps.org

    2026-01-12 22:26

    HTTP/1.1 301 Moved Permanently
    Date: Mon, 12 Jan 2026 22:26:21 GMT
    Content-Type: text/plain
    Content-Length: 24
    Connection: close
    Server: cloudflare
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Location: https://aaareps.org/
    Host-Header: 8441280b0c35cbc1147f8ba998a563a7
    X-Proxy-Cache-Info: DT:1
    cf-cache-status: DYNAMIC
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=rNAqPWUbjl6IxPfo7q%2FkudPhOMPgy8g7mOcd%2FweqxdhZO7kk7WV5PcAIzJ6Pem589cbYzqKKTMz3yMVNimDA0KSx7itPP32N8fbD7huRdLn02k%2FiWlw6"}]}
    CF-RAY: 9bd01335af683ee4-AMS
    alt-svc: h3=":443"; ma=86400
    
    
    301 - Moved Permanently
    
    Found 2 days ago by HttpPlugin
    Create report
  • Open service 104.21.17.206:443 · aaareps.org

    2026-01-12 22:26

    HTTP/1.1 202 Accepted
    Date: Mon, 12 Jan 2026 22:26:22 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    Server: cloudflare
    sg-captcha: challenge
    x-robots-tag: noindex
    Set-Cookie: nevercache-b39818=Y;Max-Age=-1
    expires: Thu, 01 Jan 1970 00:00:01 GMT
    Cache-Control: no-store,no-cache,max-age=0
    host-header: 8441280b0c35cbc1147f8ba998a563a7
    x-proxy-cache-info: DT:1
    cf-cache-status: DYNAMIC
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=8EmELFAkZLUX%2F2W3a17GJCbjaaylwkSLZDd5fM2lPtAOQVgVKH19aCcZUmXuTkL3g5mbiU1w7%2FcWXiSMcML4TkOejPxZunyFEdf9"}]}
    CF-RAY: 9bd013368cfb293c-LHR
    alt-svc: h3=":443"; ma=86400
    
    
    <html><head><link rel="icon" href="data:;"><meta http-equiv="refresh" content="0;/.well-known/sgcaptcha/?r=%2F&y=ipc:209.97.180.8:1768256782.145"></meta></head></html>
    Found 2 days ago by HttpPlugin
    Create report
  • Open service 172.67.178.76:8443 · aaareps.org

    2026-01-12 22:26

    HTTP/1.1 522 <none>
    Date: Mon, 12 Jan 2026 22:26:41 GMT
    Content-Type: text/plain; charset=UTF-8
    Content-Length: 15
    Connection: close
    Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
    Expires: Thu, 01 Jan 1970 00:00:01 GMT
    Referrer-Policy: same-origin
    Server-Timing: cfEdge;dur=19504,cfOrigin;dur=0
    X-Frame-Options: SAMEORIGIN
    Server: cloudflare
    CF-RAY: 9bd0133a7911aac0-YYZ
    alt-svc: h3=":8443"; ma=86400
    
    
    error code: 522
    Found 2 days ago by HttpPlugin
    Create report
  • Open service 2606:4700:3037::6815:11ce:443 · aaareps.org

    2026-01-12 22:26

    HTTP/1.1 200 OK
    Date: Mon, 12 Jan 2026 22:26:22 GMT
    Content-Type: text/html; charset=UTF-8
    Transfer-Encoding: chunked
    Connection: close
    Server: cloudflare
    vary: Accept-Encoding
    x-httpd-modphp: 1
    host-header: 8441280b0c35cbc1147f8ba998a563a7
    x-proxy-cache: HIT
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=9WMIBC5ClgdOwv%2FvHZvGXWhjRTEOcHwQLJkkMF85QQ6V4tHIKsjGMqrCFzpX9mk9e%2BaISDZRrLdcoX%2F50%2F%2F1rY3uEueWqjpi%2BuikXooONygrqltMVOW2"}]}
    cf-cache-status: DYNAMIC
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server-Timing: cfCacheStatus;desc="DYNAMIC"
    Server-Timing: cfEdge;dur=5,cfOrigin;dur=327
    CF-RAY: 9bd0133a9f820b2c-BOM
    alt-svc: h3=":443"; ma=86400
    
    Page title: 设备信息
    
    <!DOCTYPE html>
    <html lang="zh-CN">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>设备信息</title>
        <style>
            /* 样式和布局 */
        </style>
    </head>
    <body>
        <div class="container">
            <h2>当前设备信息</h2>
            <div class="info">
                <strong>客户端 IP 地址:</strong>
                <p id="client-ip">正在获取...</p>
            </div>
    
            <div class="info">
                <strong>浏览器和操作系统:</strong>
                <p id="browser-info">正在获取...</p>
            </div>
    
            <div class="info">
                <strong>本地 IP 地址:</strong>
                <p id="local-ip">正在获取...</p>
            </div>
    
            <div class="info">
                <strong>浏览器语言:</strong>
                <p id="browser-language">正在获取...</p>
            </div>
    
            <div class="info">
                <strong>DNS 服务器:</strong>
                <p id="dns-info">正在获取...</p>
            </div>
        </div>
    
        <script>
            // 获取客户端 IP
            async function getClientIP() {
                const response = await fetch('https://api.ipify.org?format=json');
                const data = await response.json();
                return data.ip;
            }
    
            // 获取本地 IP(使用 WebRTC)
            function getLocalIP() {
                return new Promise((resolve, reject) => {
                    const pc = new RTCPeerConnection({ iceServers: [] });
                    pc.createDataChannel('');
                    pc.createOffer().then(offer => pc.setLocalDescription(offer));
                    pc.onicecandidate = event => {
                        if (event.candidate) {
                            const ip = /([0-9]{1,3}\.){3}[0-9]{1,3}/.exec(event.candidate.candidate);
                            if (ip) {
                                resolve(ip[0]);
                            }
                        }
                    };
                    setTimeout(() => reject('无法获取本地 IP'), 1000);
                });
            }
    
            // 获取浏览器信息
            function getBrowserInfo() {
                return navigator.userAgent;
            }
    
            // 获取浏览器语言
            function getBrowserLanguage() {
                return navigator.language || navigator.userLanguage;
            }
    
            // 获取 DNS 信息
            async function getDNSInfo() {
                // DNS 获取通常需要后端支持,这里可以替换为静态数据或其他方式
                return '无法直接获取 DNS 信息';
            }
    
            // 获取并显示信息
            getClientIP().then(ip => {
                document.getElementById("client-ip").textContent = ip;
            });
    
            getLocalIP().then(ip => {
                document.getElementById("local-ip").textContent = ip;
            }).catch(error => {
                document.getElementById("local-ip").textContent = '无法获取本地 IP';
            });
    
            document.getElementById("browser-info").textContent = getBrowserInfo();
            document.getElementById("browser-language").textContent = getBrowserLanguage();
    
            getDNSInfo().then(dns => {
                document.getElementById("dns-info").textContent = dns;
            });
        </script>
    <script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"047bbeaf22884033a079ce229b5da425","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
    </body>
    </html>
    
    Found 2 days ago by HttpPlugin
    Create report
  • Open service 172.67.178.76:443 · aaareps.org

    2026-01-12 22:26

    HTTP/1.1 202 Accepted
    Date: Mon, 12 Jan 2026 22:26:21 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    Server: cloudflare
    sg-captcha: challenge
    x-robots-tag: noindex
    Set-Cookie: nevercache-b39818=Y;Max-Age=-1
    expires: Thu, 01 Jan 1970 00:00:01 GMT
    Cache-Control: no-store,no-cache,max-age=0
    host-header: 8441280b0c35cbc1147f8ba998a563a7
    x-proxy-cache-info: DT:1
    cf-cache-status: DYNAMIC
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server-Timing: cfCacheStatus;desc="DYNAMIC"
    Server-Timing: cfEdge;dur=8,cfOrigin;dur=34
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=b6vWC2HFZjgyROyIJ%2F663wuMcKb3yNdhNfpPNSxXltbtdOPhDfPogsi8w%2FQnl3BtPIu%2FrXD3Pmpu9vFZCDqtZ%2B9Yu9CT4%2FSwMQ%3D%3D"}]}
    CF-RAY: 9bd013348c244faa-EWR
    alt-svc: h3=":443"; ma=86400
    
    
    <html><head><link rel="icon" href="data:;"><meta http-equiv="refresh" content="0;/.well-known/sgcaptcha/?r=%2F&y=ipc:167.71.175.236:1768256781.560"></meta></head></html><script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"047bbeaf22884033a079ce229b5da425","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
    
    Found 2 days ago by HttpPlugin
    Create report
  • Open service 172.67.178.76:80 · aaareps.org

    2026-01-12 22:26

    HTTP/1.1 202 Accepted
    Date: Mon, 12 Jan 2026 22:26:22 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    Server: cloudflare
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    SG-Captcha: challenge
    X-Robots-Tag: noindex
    Set-Cookie: nevercache-b39818=Y;Max-Age=-1
    Expires: Thu, 01 Jan 1970 00:00:01 GMT
    Cache-Control: no-store,no-cache,max-age=0
    Host-Header: 8441280b0c35cbc1147f8ba998a563a7
    X-Proxy-Cache-Info: DT:1
    cf-cache-status: DYNAMIC
    Server-Timing: cfCacheStatus;desc="DYNAMIC"
    Server-Timing: cfEdge;dur=16,cfOrigin;dur=675
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=oQiwx5PCw9ek9WgAfiTzJ2JFSlvfPvqCVp%2Fc9WoxHaGAeu6QIW%2B26lOVMDaKdnQAGswlbZ2Bjh1AzEkBwr7nmVQNez0k%2FJHmMg%3D%3D"}]}
    CF-RAY: 9bd01336bcf6b675-BOM
    alt-svc: h3=":443"; ma=86400
    
    
    <html><head><link rel="icon" href="data:;"><meta http-equiv="refresh" content="0;/.well-known/sgcaptcha/?r=%2F&y=ipc:157.245.105.107:1768256782.359"></meta></head></html><script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"047bbeaf22884033a079ce229b5da425","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
    
    Found 2 days ago by HttpPlugin
    Create report
  • Open service 104.21.17.206:80 · aaareps.org

    2026-01-12 22:26

    HTTP/1.1 202 Accepted
    Date: Mon, 12 Jan 2026 22:26:21 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    Server: cloudflare
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    SG-Captcha: challenge
    X-Robots-Tag: noindex
    Set-Cookie: nevercache-b39818=Y;Max-Age=-1
    Expires: Thu, 01 Jan 1970 00:00:01 GMT
    Cache-Control: no-store,no-cache,max-age=0
    Host-Header: 8441280b0c35cbc1147f8ba998a563a7
    X-Proxy-Cache-Info: DT:1
    cf-cache-status: DYNAMIC
    Server-Timing: cfCacheStatus;desc="DYNAMIC"
    Server-Timing: cfEdge;dur=21,cfOrigin;dur=43
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=2S91BYbSsaCKO2J5sqnHpQpTEcoTegsd%2FQO5NUJlaEk3xgtylooOLgLQGqSC6xivJyNEMVmTL652KC2pDXB4Ej0xw7VGD7St7D1A"}]}
    CF-RAY: 9bd01333fd273705-YYZ
    alt-svc: h3=":443"; ma=86400
    
    
    <html><head><link rel="icon" href="data:;"><meta http-equiv="refresh" content="0;/.well-known/sgcaptcha/?r=%2F&y=ipc:143.110.217.244:1768256781.483"></meta></head></html><script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"047bbeaf22884033a079ce229b5da425","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
    
    Found 2 days ago by HttpPlugin
    Create report
aaareps.org*.aaareps.org
CN:
aaareps.org
Key:
ECDSA-256
Issuer:
WE1
Not before:
2026-01-12 21:24
Not after:
2026-04-12 22:23