Host 52.222.136.82
United States
AMAZON-02
Software information

AmazonS3 AmazonS3

tcp/443

Apache Apache 2.4.62

tcp/443

Apache Apache

tcp/443

CloudFront

tcp/443 tcp/80

OpenSSL OpenSSL 1.0.2k-fips

tcp/443

PHP PHP 7.4.15

tcp/443

cloudflare cloudflare

tcp/443

nginx nginx

tcp/443 tcp/80

nginx nginx 1.27.4

tcp/443

  • Git configuration and history exposed
    First seen 2025-07-05 02:15
    Last seen 2026-01-02 16:45
    Open for 181 days
    • Severity: medium
      Fingerprint: 2580fa947178c88602b1737db148c044b81b03713d63bb82370a6522b38bc560

      [core]
      	repositoryformatversion = 0
      	filemode = true
      	bare = false
      	logallrefupdates = true
      [remote "origin"]
      	url = https://github.com/linx-security/CDN
      	fetch = +refs/heads/*:refs/remotes/origin/*
      [gc]
      	auto = 0
      [http "https://github.com/"]
      	extraheader = AUTHORIZATION: basic eC1hY2Nlc3MtdG9rZW46Z2hzX2tpTUdrWVRFczNwMnR4RmNQWW5KYjhPakhzbEhCSDF2YmFVWg==
      [branch "dev"]
      	remote = origin
      	merge = refs/heads/dev
      
      Found on 2026-01-02 16:45
      412 Bytes
  • Open service 52.222.136.82:443 · guardnine.in

    2026-01-12 06:26

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 57442
    Connection: close
    Last-Modified: Thu, 21 Aug 2025 04:58:04 GMT
    Server: AmazonS3
    Date: Mon, 12 Jan 2026 06:26:32 GMT
    ETag: "91299e00d1bdbf21d4c0ca0db9d365f9"
    X-Cache: Hit from cloudfront
    Via: 1.1 4f762327597c2647c5dac5e573d910fa.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: JMjUpiN2QbU1X-tdd17i194Q-jlC7wIOGdg0HYaLrHO3UNZ7NvaH2A==
    Age: 3
    
    Page title: GuardNine ‑ Proactive Cloud Security
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <title>GuardNine ‑ Proactive Cloud Security</title>
      <link rel="icon" type="image/png" href="assets/favicon.png" />
      <script src="https://cdn.tailwindcss.com?plugins=forms,typography"></script>
      <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
      <script>
        tailwind.config = {
          theme: {
            extend: {
              colors: {
                primary: '#22c55e',
                'primary-dark': '#16a34a',
                accent: '#10b981',
                'accent-dark': '#059669',
                neutral: '#ffffff',
                'neutral-dark': '#1f2937',
              }
            }
          }
        }
      </script>
      <style>
        .hover-lift {
          transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        }
        .hover-lift:hover {
          transform: translateY(-2px);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .stats-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
          gap: 1.5rem;
        }
        @media (min-width: 768px) {
          .stats-grid {
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
          }
        }
        .underline-accent {
          position: relative;
        }
        .underline-accent::after {
          content: '';
          position: absolute;
          bottom: -8px;
          left: 0;
          width: 120px;
          height: 4px;
          background-color: #22c55e;
          border-radius: 2px;
        }
        .floating-message {
          position: absolute;
          z-index: 10;
          opacity: 0;
          pointer-events: none;
          max-width: 350px;
          width: max-content;
          animation-duration: 4s;
          animation-timing-function: ease-out;
          animation-fill-mode: forwards;
        }
        
        /* Animation from bottom */
        @keyframes floatFromBottom {
          0% {
            opacity: 0;
            transform: translateY(50px) scale(0.8);
          }
          15% {
            opacity: 1;
            transform: translateY(0px) scale(1);
          }
          85% {
            opacity: 1;
          }
          100% {
            opacity: 0;
            transform: translateY(-100px) translateX(var(--drift-x, 0px)) scale(0.9);
          }
        }
        
        /* Animation from left */
        @keyframes floatFromLeft {
          0% {
            opacity: 0;
            transform: translateX(-100px) scale(0.8);
          }
          15% {
            opacity: 1;
            transform: translateX(0px) scale(1);
          }
          85% {
            opacity: 1;
          }
          100% {
            opacity: 0;
            transform: translateX(var(--drift-x, 50px)) translateY(var(--drift-y, -50px)) scale(0.9);
          }
        }
        
        /* Animation from right */
        @keyframes floatFromRight {
          0% {
            opacity: 0;
            transform: translateX(100px) scale(0.8);
          }
          15% {
            opacity: 1;
            transform: translateX(0px) scale(1);
          }
          85% {
            opacity: 1;
          }
          100% {
            opacity: 0;
            transform: translateX(var(--drift-x, -50px)) translateY(var(--drift-y, -50px)) scale(0.9);
          }
        }
        
        /* Animation from top */
        @keyframes floatFromTop {
          0% {
            opacity: 0;
            transform: translateY(-50px) scale(0.8);
          }
          15% {
            opacity: 1;
            transform: translateY(0px) scale(1);
          }
          85% {
            opacity: 1;
          }
          100% {
            opacity: 0;
            transform: translateY(100px) translateX(var(--drift-x, 0px)) scale(0.9);
          }
        }
        
        /* Animation from center (expand) */
        @keyframes floatFromCenter {
          0% {
            opacity: 0;
            transform: scale(0.3);
          }
          15% {
            opacity: 1;
            transform: scale(1);
          }
          85% {
            opacity: 1;
          }
          100% {
            opacity: 0;
            transform: scale(1.2) translateX(var(--drift-x, 0px)) translateY(var(--drift-y, 0px));
          }
        }
        .message-critical {
          background: linear-gradient(135deg, #fee2e2, #fecaca);
          border: 0.5px solid #dc2626;
          color: #7f1d1d;
        }
        .message-warning {
    
    Found 3 days ago by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · guardnine.in

    2026-01-12 06:26

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Mon, 12 Jan 2026 06:26:33 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://guardnine.in/
    X-Cache: Redirect from cloudfront
    Via: 1.1 611ca6d7a586f9a7ac13f280c5d6da36.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: 6i18T0U4ulc6EAdVmiHNl3aqh91x3RszaSWh2j6brap3QHpPxlp0Hw==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 3 days ago by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · softluxx.com

    2026-01-12 05:02

    HTTP/1.1 200 OK
    Content-Type: text/html; charset=utf-8
    Content-Length: 5862
    Connection: close
    Date: Mon, 12 Jan 2026 05:02:29 GMT
    Pragma: no-cache
    Set-Cookie: acw_tc=0a002db417681941495425923e35d02afbea7cea23839e3c0271a9a1636216;path=/;HttpOnly;Max-Age=1800
    Content-Encoding: gzip
    Cache-Control: no-cache, no-store
    X-Cache: Miss from cloudfront
    Via: 1.1 7f01ac3c2b3b2aec2108ed414afd3146.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: _8elfOfM_VFCcXq1nqls-8wJ9Q0YcuWx2iJkYS3zvg2gQitiHqKEDw==
    
    
    <html>
    <script>
        var arg1='0FA3F062D7CD9D57B4809F3448D36E329B965522';
        function setCookie(name,value){var expiredate=new Date();expiredate.setTime(expiredate.getTime()+(3600*1000));document.cookie=name+"="+value+";expires="+expiredate.toGMTString()+";max-age=3600;path=/";}
        function reload(x) {setCookie("acw_sc__v2", x);document.location.reload();}
    </script>
    <script name="aliyunwaf_6a6f5ea8">var _0x4818=['\x63\x73\x4b\x48\x77\x71\x4d\x49','\x5a\x73\x4b\x4a\x77\x72\x38\x56\x65\x41\x73\x79','\x55\x63\x4b\x69\x4e\x38\x4f\x2f\x77\x70\x6c\x77\x4d\x41\x3d\x3d','\x4a\x52\x38\x43\x54\x67\x3d\x3d','\x59\x73\x4f\x6e\x62\x53\x45\x51\x77\x37\x6f\x7a\x77\x71\x5a\x4b\x65\x73\x4b\x55\x77\x37\x6b\x77\x58\x38\x4f\x52\x49\x51\x3d\x3d','\x77\x37\x6f\x56\x53\x38\x4f\x53\x77\x6f\x50\x43\x6c\x33\x6a\x43\x68\x4d\x4b\x68\x77\x36\x48\x44\x6c\x73\x4b\x58\x77\x34\x73\x2f\x59\x73\x4f\x47','\x66\x77\x56\x6d\x49\x31\x41\x74\x77\x70\x6c\x61\x59\x38\x4f\x74\x77\x35\x63\x4e\x66\x53\x67\x70\x77\x36\x4d\x3d','\x4f\x63\x4f\x4e\x77\x72\x6a\x43\x71\x73\x4b\x78\x54\x47\x54\x43\x68\x73\x4f\x6a\x45\x57\x45\x38\x50\x63\x4f\x63\x4a\x38\x4b\x36','\x55\x38\x4b\x35\x4c\x63\x4f\x74\x77\x70\x56\x30\x45\x4d\x4f\x6b\x77\x34\x37\x44\x72\x4d\x4f\x58','\x48\x4d\x4f\x32\x77\x6f\x48\x43\x69\x4d\x4b\x39\x53\x6c\x58\x43\x6c\x63\x4f\x6f\x43\x31\x6b\x3d','\x61\x73\x4b\x49\x77\x71\x4d\x44\x64\x67\x4d\x75\x50\x73\x4f\x4b\x42\x4d\x4b\x63\x77\x72\x72\x43\x74\x6b\x4c\x44\x72\x4d\x4b\x42\x77\x36\x34\x64','\x77\x71\x49\x6d\x4d\x54\x30\x74\x77\x36\x52\x4e\x77\x35\x6b\x3d','\x44\x4d\x4b\x63\x55\x30\x4a\x6d\x55\x77\x55\x76','\x56\x6a\x48\x44\x6c\x4d\x4f\x48\x56\x63\x4f\x4e\x58\x33\x66\x44\x69\x63\x4b\x4a\x48\x51\x3d\x3d','\x77\x71\x68\x42\x48\x38\x4b\x6e\x77\x34\x54\x44\x68\x53\x44\x44\x67\x4d\x4f\x64\x77\x72\x6a\x43\x6e\x63\x4f\x57\x77\x70\x68\x68\x4e\x38\x4b\x43\x47\x63\x4b\x71\x77\x36\x64\x48\x41\x55\x35\x2b\x77\x72\x67\x32\x4a\x63\x4b\x61\x77\x34\x49\x45\x4a\x63\x4f\x63\x77\x72\x52\x4a\x77\x6f\x5a\x30\x77\x71\x46\x39\x59\x67\x41\x56','\x64\x7a\x64\x32\x77\x35\x62\x44\x6d\x33\x6a\x44\x70\x73\x4b\x33\x77\x70\x59\x3d','\x77\x34\x50\x44\x67\x63\x4b\x58\x77\x6f\x33\x43\x6b\x63\x4b\x4c\x77\x72\x35\x71\x77\x72\x59\x3d','\x77\x72\x4a\x4f\x54\x63\x4f\x51\x57\x4d\x4f\x67','\x77\x71\x54\x44\x76\x63\x4f\x6a\x77\x34\x34\x37\x77\x72\x34\x3d','\x77\x35\x58\x44\x71\x73\x4b\x68\x4d\x46\x31\x2f','\x77\x72\x41\x79\x48\x73\x4f\x66\x77\x70\x70\x63','\x4a\x33\x64\x56\x50\x63\x4f\x78\x4c\x67\x3d\x3d','\x77\x72\x64\x48\x77\x37\x70\x39\x5a\x77\x3d\x3d','\x77\x34\x72\x44\x6f\x38\x4b\x6d\x4e\x45\x77\x3d','\x49\x4d\x4b\x41\x55\x6b\x42\x74','\x77\x36\x62\x44\x72\x63\x4b\x51\x77\x70\x56\x48\x77\x70\x4e\x51\x77\x71\x55\x3d','\x64\x38\x4f\x73\x57\x68\x41\x55\x77\x37\x59\x7a\x77\x72\x55\x3d','\x77\x71\x6e\x43\x6b\x73\x4f\x65\x65\x7a\x72\x44\x68\x77\x3d\x3d','\x55\x73\x4b\x6e\x49\x4d\x4b\x57\x56\x38\x4b\x2f','\x77\x34\x7a\x44\x6f\x63\x4b\x38\x4e\x55\x5a\x76','\x63\x38\x4f\x78\x5a\x68\x41\x4a\x77\x36\x73\x6b\x77\x71\x4a\x6a','\x50\x63\x4b\x49\x77\x34\x6e\x43\x6b\x6b\x56\x62','\x4b\x48\x67\x6f\x64\x4d\x4f\x32\x56\x51\x3d\x3d','\x77\x70\x73\x6d\x77\x71\x76\x44\x6e\x47\x46\x71','\x77\x71\x4c\x44\x74\x38\x4f\x6b\x77\x34\x63\x3d','\x77\x37\x77\x31\x77\x34\x50\x43\x70\x73\x4f\x34\x77\x71\x41\x3d','\x77\x71\x39\x46\x52\x73\x4f\x71\x57\x4d\x4f\x71','\x62\x79\x42\x68\x77\x37\x72\x44\x6d\x33\x34\x3d','\x4c\x48\x67\x2b\x53\x38\x4f\x74\x54\x77\x3d\x3d','\x77\x71\x68\x4f\x77\x37\x31\x35\x64\x73\x4f\x48','\x55\x38\x4f\x37\x56\x73\x4f\x30\x77\x71\x76\x44\x76\x63\x4b\x75\x4b\x73\x4f\x71\x58\x38\x4b\x72','\x59\x69\x74\x74\x77\x35\x44\x44\x6e\x57\x6e\x44\x72\x41\x3d\x3d','\x59\x4d\x4b\x49\x77\x71\x55\x55\x66\x67\x49\x6b','\x61\x42\x37\x44\x6c\x4d\x4f\x44\x54\x51\x3d\x3d','\x77\x70\x66\x44\x68\x38\x4f\x72\x77\x36\x6b\x6b','\x77\x37\x76\x43\x71\x4d\x4f\x72\x59\x38\x4b\x41\x56\x6b\x35\x4f\x77\x70\x6e\x43\x75\x38\x4f\x61\x58\x73\x4b\x5a\x50\x33\x44\x43\x6c\x63\x4b\x79\x77\x36\x48\x44\x72\x51\x3d\x3d','\x77\x6f\x77\x2b\x77\x36\x76\x44\x6d\x48\x70\x73\x77\x37\x52\x74\x77\x6f\x39\x38\x4c\x43\x37\x43\x69\x47\x37\x43\x6b\x73\x4f\x52\x54
    Found 3 days ago by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · softluxx.com

    2026-01-12 05:02

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Mon, 12 Jan 2026 05:02:28 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://softluxx.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 1e882280b9c5d046c63d8cd0c1faf9c0.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: k9LB0-GmN6mCS1oXMJFiC4Oce0wufIkdq2FlI1WjoP4IBz2ul6TjaA==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 3 days ago by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · viarelay.dev

    2026-01-11 16:14

    HTTP/1.1 403 Forbidden
    Server: CloudFront
    Date: Sun, 11 Jan 2026 16:14:57 GMT
    Content-Type: text/html
    Content-Length: 919
    Connection: close
    X-Cache: Error from cloudfront
    Via: 1.1 89d30ce8a4c37b9d11d7f552521193ae.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: 8dcND-WdOpcU7fNW1yrv_xWRVP-9GLSjH0STw068lfu-SJnR0NOE1A==
    
    Page title: ERROR: The request could not be satisfied
    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <HTML><HEAD><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
    <TITLE>ERROR: The request could not be satisfied</TITLE>
    </HEAD><BODY>
    <H1>403 ERROR</H1>
    <H2>The request could not be satisfied.</H2>
    <HR noshade size="1px">
    Request blocked.
    We can't connect to the server for this app or website at this time. There might be too much traffic or a configuration error. Try again later, or contact the app or website owner.
    <BR clear="all">
    If you provide content to customers through CloudFront, you can find steps to troubleshoot and help prevent this error by reviewing the CloudFront documentation.
    <BR clear="all">
    <HR noshade size="1px">
    <PRE>
    Generated by cloudfront (CloudFront)
    Request ID: 8dcND-WdOpcU7fNW1yrv_xWRVP-9GLSjH0STw068lfu-SJnR0NOE1A==
    </PRE>
    <ADDRESS>
    </ADDRESS>
    </BODY></HTML>
    Found 2026-01-11 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · viarelay.dev

    2026-01-11 16:14

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Sun, 11 Jan 2026 16:14:57 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://viarelay.dev/
    X-Cache: Redirect from cloudfront
    Via: 1.1 df11b13b779c62601ca4cd4d2bb0ce18.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: EYn04LOps9lyyjxlI-h5aSVNoj-jFcFbs6BWmWjUnUZrOJZa0pvlgA==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2026-01-11 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · www.liveataffinity.com

    2026-01-10 17:50

    HTTP/1.1 301 Moved Permanently
    Content-Length: 0
    Connection: close
    Date: Sat, 10 Jan 2026 01:33:14 GMT
    Location: https://www.affinityforliving.com/liveataffinity_com/
    Server: AmazonS3
    X-Cache: Hit from cloudfront
    Via: 1.1 1ad022b197e464938f7729463478f0c8.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: rdc1yzNz6YqV22i_1gluNDWROzd13aXV7e_8s9lv4EFnZIMU2rksbA==
    Age: 58628
    
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · femoup.com

    2026-01-10 16:53

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 1863
    Connection: close
    Last-Modified: Tue, 06 Jan 2026 17:59:51 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: LSuWhOdz7KGE4_ddikeO3Q7Z_kK0s8dH
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Sat, 10 Jan 2026 02:39:23 GMT
    ETag: "57f54a64eb2e645463cbae5d0ab9f51b"
    X-Cache: Error from cloudfront
    Via: 1.1 1e882280b9c5d046c63d8cd0c1faf9c0.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: 0HDJo2-MuqCpbPLCH1kSR5LDtzkU7riQhwcLd-8aQn8Fg9RoHP4ixw==
    Age: 51270
    
    Page title: femoup
    
    <!doctype html>
    <html>
        <head>
            <meta charset="UTF-8" />
            <!-- Google Tag Manager -->
            <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
            new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
            j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
            'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
            })(window,document,'script','dataLayer','GTM-PFRSMZWX');</script>
            <!-- End Google Tag Manager -->
            <!-- 标准 PNG favicon(32x32)-->
            <!-- standard PNG favicon -->
            <link rel="icon" type="image/png" sizes="32x32" href="/logo_orange_2@4x.png?v=1" />
    
            <!-- 备用 16x16(小标签页,老浏览器使用)-->
            <!-- backup 16x16 (small tab, old browser use) -->
            <link rel="icon" type="image/png" sizes="16x16" href="/logo_orange_2@4x.png?v=1" />
    
            <!-- Apple touch icon(用于 iOS 主屏幕快捷方式)-->
            <!-- Apple touch icon (for iOS home screen shortcut) -->
            <link rel="apple-touch-icon" sizes="180x180" href="/logo_orange_2@4x.png?v=1" />
            <meta name="viewport" content="width=device-width, initial-scale=1.0" />
            <title>femoup</title>
            <script src="https://developers.kakao.com/sdk/js/kakao.min.js"></script>
          <script type="module" crossorigin src="/assets/index-DpVFyDoL.js"></script>
          <link rel="stylesheet" crossorigin href="/assets/index-BGocye3c.css">
        </head>
        <body>
            <!-- Google Tag Manager (noscript) -->
            <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PFRSMZWX"
            height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
            <!-- End Google Tag Manager (noscript) -->
            <div id="app"></div>
        </body>
    </html>
    
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · femoup.com

    2026-01-10 16:53

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Sat, 10 Jan 2026 16:53:50 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://femoup.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 4f762327597c2647c5dac5e573d910fa.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: YqbyFryHzuoyKKN4udVqF4VTse6aQQoHsSb26PraYvZSc1ZBasv0PQ==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · sportybet.com

    2026-01-10 12:12

    HTTP/1.1 301 Moved Permanently
    Content-Type: text/html
    Content-Length: 162
    Connection: close
    Date: Sat, 10 Jan 2026 12:12:50 GMT
    Location: http://www.sportybet.com/
    Server: nginx
    X-Cache: Miss from cloudfront
    Via: 1.1 f353b9615396320dcfec689a26cf519e.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: q2fkTIXOVgv4QM7lF3eXmLQJzL3YFmgWX67mlsQSsYr40aTLLosRMA==
    X-XSS-Protection: 1; mode=block
    X-Frame-Options: SAMEORIGIN
    Referrer-Policy: strict-origin-when-cross-origin
    X-Content-Type-Options: nosniff
    Strict-Transport-Security: max-age=31536000
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>nginx</center>
    </body>
    </html>
    
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · sportybet.com

    2026-01-10 12:12

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Sat, 10 Jan 2026 12:12:50 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://sportybet.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 d7b95fc49388e3b88d8d8ce14a277aac.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: InYNE2z2ySp0KRZj_W4negMnRuybn6MeKE0RNgjFBIoLzNJeRXPedA==
    X-XSS-Protection: 1; mode=block
    X-Frame-Options: SAMEORIGIN
    Referrer-Policy: strict-origin-when-cross-origin
    X-Content-Type-Options: nosniff
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · usaholidaysmart.com

    2026-01-10 12:07

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Sat, 10 Jan 2026 12:07:18 GMT
    Content-Length: 0
    Connection: close
    Location: https://www.usaholidaysmart.com/
    X-Cache: FunctionGeneratedResponse from cloudfront
    Via: 1.1 2696c49ebf3abec704c6af790acf6778.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: U4GQDFtEzHwRQu6g-YM8ln6MG_9BvHjArusVhu7-0rww5_JYyjvLmA==
    X-XSS-Protection: 1; mode=block
    X-Frame-Options: SAMEORIGIN
    Referrer-Policy: strict-origin-when-cross-origin
    X-Content-Type-Options: nosniff
    Strict-Transport-Security: max-age=31536000
    
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · miyagi-jihan.jp

    2026-01-10 00:11

    HTTP/1.1 200 OK
    Content-Type: text/html; charset=UTF-8
    Transfer-Encoding: chunked
    Connection: close
    Server: nginx
    Date: Sat, 10 Jan 2026 00:11:11 GMT
    Link: <https://miyagi-jihan.jp/wp-json/>; rel="https://api.w.org/"
    X-Cache: Miss from cloudfront
    Via: 1.1 06659e009eac6940f260d2b396e0460c.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: E7Lp964uZTBmiwwZwjBFFTeV8wx-THPx7N7O_nzRPmEWsQHSrjYDKw==
    
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · photown6brockton.com

    2026-01-09 22:41

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 16087
    Connection: close
    Last-Modified: Wed, 22 Jan 2025 16:55:30 GMT
    x-amz-version-id: nGY8EAznfZHtPB3aNf4JtDYLkWPWFOYL
    Server: AmazonS3
    Date: Fri, 09 Jan 2026 22:41:57 GMT
    ETag: "7d0888bac4d88720b91569d3703224be"
    X-Cache: Hit from cloudfront
    Via: 1.1 f353b9615396320dcfec689a26cf519e.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: QLSZfw9MUBlkV3hynO4TgZsmmsTqQTE_vEwRPRLOG2FrRlY3dXJQ-Q==
    Age: 53541
    
    Page title: Home | Pho Town 6
    
    <!doctype html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
        <meta http-equiv="Pragma" content="no-cache">
        <meta http-equiv="Expires" content="0">
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=6.0, minimum-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <meta name="description" content="Brockton, MA 02301 Vietnamese food for Pickup -  Order from Pho Town 6 in Brockton, MA 02301, phone: 508-232-3827 ">
        <meta name="keywords" content="Brockton, MA 02301 Vietnamese food for Pickup  Order Vietnamese food for Pickup,  Best Vietnamese food for Pickup">
        <link rel="shortcut icon" href="/assets/images/ico/favicon.ico">
        <link rel="apple-touch-icon-precomposed" sizes="144x144"
              href="/assets/images/ico/apple-touch-icon-144-precomposed.png">
        <link rel="apple-touch-icon-precomposed" sizes="114x114"
              href="/assets/images/ico/apple-touch-icon-114-precomposed.png">
        <link rel="apple-touch-icon-precomposed" sizes="72x72"
              href="/assets/images/ico/apple-touch-icon-72-precomposed.png">
        <link rel="apple-touch-icon-precomposed" href="/assets/images/ico/apple-touch-icon-57-precomposed.png">
        <title>Home | Pho Town 6</title>
        <link rel="canonical" href="https://photown6brockton.com">
        <link rel="stylesheet" href="/assets/css/main.css"/>
        <script>
            !function(t,e){var o,n,p,r;e.__SV||(window.posthog=e,e._i=[],e.init=function(i,s,a){function g(t,e){var o=e.split(".");2==o.length&&(t=t[o[0]],e=o[1]),t[e]=function(){t.push([e].concat(Array.prototype.slice.call(arguments,0)))}}(p=t.createElement("script")).type="text/javascript",p.async=!0,p.src=s.api_host+"/static/array.js",(r=t.getElementsByTagName("script")[0]).parentNode.insertBefore(p,r);var u=e;for(void 0!==a?u=e[a]=[]:a="posthog",u.people=u.people||[],u.toString=function(t){var e="posthog";return"posthog"!==a&&(e+="."+a),t||(e+=" (stub)"),e},u.people.toString=function(){return u.toString(1)+".people (stub)"},o="capture identify alias people.set people.set_once set_config register register_once unregister opt_out_capturing has_opted_out_capturing opt_in_capturing reset isFeatureEnabled onFeatureFlags".split(" "),n=0;n<o.length;n++)g(u,o[n]);e._i.push([i,s,a])},e.__SV=1)}(document,window.posthog||[]);
            posthog.init('phc_wRTKEH4zhknRP3t80Ttjj05BeWL43PdhQQGpg0mE6OV',{api_host:'https://app.posthog.com'})
        </script>
    </head>
    <body>
    <section style="display: none;">
        <a href="#header" aria-label="skip to navigation">Skip to Navigation</a>
        <a href="#main" aria-label="skip to main content">Skip to Main Content</a>
    </section>
    <header id="header">
        <nav class="navbar" aria-label="Navigation">
            <ul id="navlinks" class="navbar__container"><li><a class="navbar--link" href="/#home">Home</a></li><li><a class="navbar--link" href="/order/">Order Online</a></li><li><a class="navbar--link" href="/#contact">Contact Us</a></li></ul>
        </nav>
    </header>
    
    <main id="main">
        <section id="home" class="hero__container">
            <div class="hero__sliders-container"><img id="hero-slider1" class="hero--image" loading="lazy" src="/assets/images/slider1.jpg" alt="Chinese Food"><img id="hero-slider2" class="hero--image" loading="lazy" src="/assets/images/slider2.jpg" alt="Chinese Food"><ol class="carousel-indicators"><li tabindex="0" role="button"><span class="acsb-sr-only" aria-hidden="false">Carousel slide 1</span></li><li tabindex="0" role="button"><span class="acsb-sr-only" aria-hidden="false">Carousel slide 2</span></li></ol></div>
            <div class="hero__overlay">
                <h1 id="name" class="title"><span class="welcome-title">Welcome To Pho Town 6</span></h1>
                <div class="stars mt-3">★★★★★★★★★★★★★★★★★★★★</div>
                <h2 id="slogan" class="slogan mt-1 mb-3">Best Food, Great Value</h2>
                <a id="order_online_link" class="button button-primary" href="/order/">Order Online</a>
                
        
    Found 2026-01-09 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · photown6brockton.com

    2026-01-09 22:41

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Fri, 09 Jan 2026 22:42:00 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://photown6brockton.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 1e882280b9c5d046c63d8cd0c1faf9c0.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: O9j2WcyKHKwEmtH62WJymHgVMMYZZrcYfbtlfdh0JDIab4413zA-rw==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2026-01-09 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · phoenixcityor.com

    2026-01-09 22:19

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Fri, 09 Jan 2026 22:19:10 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://phoenixcityor.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 1e882280b9c5d046c63d8cd0c1faf9c0.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: cTer2MSHrxi-NRptOWViSBDP7HqTO1_kcixqGfnlWl1Zy567-k6VRA==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2026-01-09 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · phoenixcityor.com

    2026-01-09 22:19

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 15613
    Connection: close
    Date: Thu, 08 Jan 2026 23:52:33 GMT
    Last-Modified: Wed, 21 Feb 2024 08:30:18 GMT
    x-amz-version-id: JlWGdvP24tx00yZKuBvX6fWHl0U_JOBE
    ETag: "f784ec914934734dbe64742f090f9ee1"
    Server: AmazonS3
    X-Cache: Hit from cloudfront
    Via: 1.1 1ad022b197e464938f7729463478f0c8.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: oe1gIJwR6Tra3DC2sFqGrgWPDHQL75XVNIhT3tQ_vwX2DmPPpPFIDg==
    Age: 80797
    
    Page title: Home | Phoenix City Seafood Restaurant
    
    <!doctype html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
        <meta http-equiv="Pragma" content="no-cache">
        <meta http-equiv="Expires" content="0">
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=6.0, minimum-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <meta name="description" content="Portland, OR 97206 Chinese food for Pickup - Delivery Order from Phoenix City Seafood Restaurant in Portland, OR 97206, phone: 503-788-3128 ">
        <meta name="keywords" content="Portland, OR 97206 Chinese food for Pickup Delivery Order Chinese food for Pickup, Delivery Best Chinese food for Pickup">
        <link rel="shortcut icon" href="/assets/images/ico/favicon.ico">
        <link rel="apple-touch-icon-precomposed" sizes="144x144"
              href="/assets/images/ico/apple-touch-icon-144-precomposed.png">
        <link rel="apple-touch-icon-precomposed" sizes="114x114"
              href="/assets/images/ico/apple-touch-icon-114-precomposed.png">
        <link rel="apple-touch-icon-precomposed" sizes="72x72"
              href="/assets/images/ico/apple-touch-icon-72-precomposed.png">
        <link rel="apple-touch-icon-precomposed" href="/assets/images/ico/apple-touch-icon-57-precomposed.png">
        <title>Home | Phoenix City Seafood Restaurant</title>
        <link rel="canonical" href="https://phoenixcityor.com">
        <link rel="stylesheet" href="/assets/css/main.css"/>
        <script>
            !function(t,e){var o,n,p,r;e.__SV||(window.posthog=e,e._i=[],e.init=function(i,s,a){function g(t,e){var o=e.split(".");2==o.length&&(t=t[o[0]],e=o[1]),t[e]=function(){t.push([e].concat(Array.prototype.slice.call(arguments,0)))}}(p=t.createElement("script")).type="text/javascript",p.async=!0,p.src=s.api_host+"/static/array.js",(r=t.getElementsByTagName("script")[0]).parentNode.insertBefore(p,r);var u=e;for(void 0!==a?u=e[a]=[]:a="posthog",u.people=u.people||[],u.toString=function(t){var e="posthog";return"posthog"!==a&&(e+="."+a),t||(e+=" (stub)"),e},u.people.toString=function(){return u.toString(1)+".people (stub)"},o="capture identify alias people.set people.set_once set_config register register_once unregister opt_out_capturing has_opted_out_capturing opt_in_capturing reset isFeatureEnabled onFeatureFlags".split(" "),n=0;n<o.length;n++)g(u,o[n]);e._i.push([i,s,a])},e.__SV=1)}(document,window.posthog||[]);
            posthog.init('phc_wRTKEH4zhknRP3t80Ttjj05BeWL43PdhQQGpg0mE6OV',{api_host:'https://app.posthog.com'})
        </script>
    </head>
    <body>
    <section style="display: none;">
        <a href="#header" aria-label="skip to navigation">Skip to Navigation</a>
        <a href="#main" aria-label="skip to main content">Skip to Main Content</a>
    </section>
    <header id="header">
        <nav class="navbar" aria-label="Navigation">
            <ul id="navlinks" class="navbar__container"><li><a class="navbar--link" href="/#home">Home</a></li><li><a class="navbar--link" href="/order/">Order Online</a></li><li><a class="navbar--link" href="/#contact">Contact Us</a></li></ul>
        </nav>
    </header>
    
    <main id="main">
        <section id="home" class="hero__container">
            <div class="hero__sliders-container"><img id="hero-slider1" class="hero--image" loading="lazy" src="/assets/images/slider1.jpg" alt="Chinese Food"><img id="hero-slider2" class="hero--image" loading="lazy" src="/assets/images/slider2.jpg" alt="Chinese Food"><ol class="carousel-indicators"><li></li><li></li></ol></div>
            <div class="hero__overlay">
                <h1 id="name" class="title"><span class="welcome-title">Welcome To Phoenix City Seafood Restaurant</span></h1>
                <div class="stars mt-3" aria-hidden="true">★★★★★★★★★★★★★★★★★★★★</div>
                <h2 id="slogan" class="slogan mt-1 mb-3">Best Food, Great Value</h2>
                <a id="order_online_link" class="button button-primary" href="/order/">Order Online</a>
            </div>
        </section>
        <section id="specialties" class="mt-5">
            <h2 id="specialty_title" class="specia
    Found 2026-01-09 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · dollarfiftyascoopupco.com

    2026-01-09 22:18

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 16105
    Connection: close
    Last-Modified: Wed, 29 Jan 2025 22:06:32 GMT
    x-amz-version-id: cZMqEU2R272RU67CHpaorUSR4JpOgnh2
    Server: AmazonS3
    Date: Fri, 09 Jan 2026 08:09:00 GMT
    ETag: "5cfcd01e2281b5cadca1a7dddbe22803"
    X-Cache: Hit from cloudfront
    Via: 1.1 611ca6d7a586f9a7ac13f280c5d6da36.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: 1-03vyeFT9OiWZLSqwoP1Y0bQiXUeb5EQEBZVzlRUOk9z-j9eqFdRQ==
    Age: 50962
    
    Page title: Home | Dollar Fifty A Scoop & Up
    
    <!doctype html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
        <meta http-equiv="Pragma" content="no-cache">
        <meta http-equiv="Expires" content="0">
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=6.0, minimum-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <meta name="description" content="Greeley, CO 80634 Chinese food for Pickup - Delivery Order from Dollar Fifty A Scoop & Up in Greeley, CO 80634, phone: 970-356-2018 ">
        <meta name="keywords" content="Greeley, CO 80634 Chinese food for Pickup Delivery Order Chinese food for Pickup, Delivery Best Chinese food for Pickup">
        <link rel="shortcut icon" href="/assets/images/ico/favicon.ico">
        <link rel="apple-touch-icon-precomposed" sizes="144x144"
              href="/assets/images/ico/apple-touch-icon-144-precomposed.png">
        <link rel="apple-touch-icon-precomposed" sizes="114x114"
              href="/assets/images/ico/apple-touch-icon-114-precomposed.png">
        <link rel="apple-touch-icon-precomposed" sizes="72x72"
              href="/assets/images/ico/apple-touch-icon-72-precomposed.png">
        <link rel="apple-touch-icon-precomposed" href="/assets/images/ico/apple-touch-icon-57-precomposed.png">
        <title>Home | Dollar Fifty A Scoop & Up</title>
        <link rel="canonical" href="https://dollarfiftyascoopupco.com">
        <link rel="stylesheet" href="/assets/css/main.css"/>
        <script>
            !function(t,e){var o,n,p,r;e.__SV||(window.posthog=e,e._i=[],e.init=function(i,s,a){function g(t,e){var o=e.split(".");2==o.length&&(t=t[o[0]],e=o[1]),t[e]=function(){t.push([e].concat(Array.prototype.slice.call(arguments,0)))}}(p=t.createElement("script")).type="text/javascript",p.async=!0,p.src=s.api_host+"/static/array.js",(r=t.getElementsByTagName("script")[0]).parentNode.insertBefore(p,r);var u=e;for(void 0!==a?u=e[a]=[]:a="posthog",u.people=u.people||[],u.toString=function(t){var e="posthog";return"posthog"!==a&&(e+="."+a),t||(e+=" (stub)"),e},u.people.toString=function(){return u.toString(1)+".people (stub)"},o="capture identify alias people.set people.set_once set_config register register_once unregister opt_out_capturing has_opted_out_capturing opt_in_capturing reset isFeatureEnabled onFeatureFlags".split(" "),n=0;n<o.length;n++)g(u,o[n]);e._i.push([i,s,a])},e.__SV=1)}(document,window.posthog||[]);
            posthog.init('phc_wRTKEH4zhknRP3t80Ttjj05BeWL43PdhQQGpg0mE6OV',{api_host:'https://app.posthog.com'})
        </script>
    </head>
    <body>
    <section style="display: none;">
        <a href="#header" aria-label="skip to navigation">Skip to Navigation</a>
        <a href="#main" aria-label="skip to main content">Skip to Main Content</a>
    </section>
    <header id="header">
        <nav class="navbar" aria-label="Navigation">
            <ul id="navlinks" class="navbar__container"><li><a class="navbar--link" href="/#home">Home</a></li><li><a class="navbar--link" href="/order/">Order Online</a></li><li><a class="navbar--link" href="/#contact">Contact Us</a></li></ul>
        </nav>
    </header>
    
    <main id="main">
        <section id="home" class="hero__container">
            <div class="hero__sliders-container"><img id="hero-slider1" class="hero--image" loading="lazy" src="/assets/images/slider1.jpg" alt="Chinese Food"><img id="hero-slider2" class="hero--image" loading="lazy" src="/assets/images/slider2.jpg" alt="Chinese Food"><ol class="carousel-indicators"><li tabindex="0" role="button"><span class="acsb-sr-only" aria-hidden="false">Carousel slide 1</span></li><li tabindex="0" role="button"><span class="acsb-sr-only" aria-hidden="false">Carousel slide 2</span></li></ol></div>
            <div class="hero__overlay">
                <h1 id="name" class="title"><span class="welcome-title">Welcome To Dollar Fifty A Scoop & Up</span></h1>
                <div class="stars mt-3">★★★★★★★★★★★★★★★★★★★★</div>
                <h2 id="slogan" class="slogan mt-1 mb-3">Best Food, Great Value</h2>
                <a id="order_online_link" class="button button
    Found 2026-01-09 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · dollarfiftyascoopupco.com

    2026-01-09 22:18

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Fri, 09 Jan 2026 22:18:22 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://dollarfiftyascoopupco.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 7439c46706cf048af5a1a495725fffb2.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: uW6BOjDryeB1yfte9i6GYqDDZwpGjBFJdFNCiaeHp3CvjRzrUrScTQ==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2026-01-09 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · www.cdn.linxdev.net

    2026-01-09 21:43

    HTTP/1.1 403 Forbidden
    Content-Type: application/xml
    Transfer-Encoding: chunked
    Connection: close
    Server: AmazonS3
    Date: Fri, 09 Jan 2026 21:43:59 GMT
    X-Cache: Error from cloudfront
    Via: 1.1 e93a56ddc3d7ec8c6f3655b7eb83ea6e.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: GehEk-R7GSUlU63jmZsgEDyRPMwNUsTe7c1stpCqR7XO0pKsD6qRqw==
    
    
    <?xml version="1.0" encoding="UTF-8"?>
    <Error><Code>AccessDenied</Code><Message>Access Denied</Message></Error>
    Found 2026-01-09 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · antlive118.com

    2026-01-09 21:10

    HTTP/1.1 403 Forbidden
    Server: CloudFront
    Date: Fri, 09 Jan 2026 21:11:01 GMT
    Content-Length: 1266
    Connection: close
    Content-Type: text/html
    X-Cache: Error from cloudfront
    Via: 1.1 385cb8def78c1bb03b9aa3bd53bf1f06.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: 0_uOs-vMuiOlxB7w3pJOds5N5mB9DASxs6IZHstyJIjnx0Tc6xm2Ug==
    
    Page title: 403 - Access Restricted
    
    <!DOCTYPE html>
    <html lang="en">
    
    <head>
      <meta charset="UTF-8" />
      <meta http-equiv="X-UA-Compatible" content="IE=edge" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <link rel="stylesheet" href="https://sharedhtmlb01.s3.ap-northeast-1.amazonaws.com/style.css" />
    
      <style>
        a,
        button,
        input,
        select,
        h1,
        h2,
        h3,
        h4,
        h5,
        * {
          box-sizing: border-box;
          margin: 0;
          padding: 0;
          border: none;
          text-decoration: none;
          appearance: none;
          background: none;
    
          -webkit-font-smoothing: antialiased;
        }
      </style>
      <title>403 - Access Restricted</title>
    </head>
    
    <body>
      <div class="_61-frame">
        <div class="_62-text">
          403 - Access Restricted
          <br/>
          地区访问限制
        </div>
        <div class="_63-text">
          The region you are in has been banned from accessing our website,
          <br />
          we apologize for any inconvenience caused.
        </div>
    
        <div class="_63-text">
          你所在的地区被限制访问此网站。
          <br />
          为此给您带来不便,敬请谅解。
        </div>
    
        <img class="_65-rectangle" src="https://sharedhtmlb01.s3.ap-northeast-1.amazonaws.com/item.svg" />
      </div>
    </body>
    
    </html>
    Found 2026-01-09 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · forksurge.com

    2026-01-09 17:04

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 1170
    Connection: close
    Date: Fri, 12 Dec 2025 00:50:41 GMT
    Cache-Control: public, max-age=0, s-maxage=31536000
    Server: AmazonS3
    Accept-Ranges: bytes
    ETag: "405f2163d6d938751a063f6de28e8002"
    Last-Modified: Wed, 29 Oct 2025 09:51:49 GMT
    X-Cache: Hit from cloudfront
    Via: 1.1 d7b95fc49388e3b88d8d8ce14a277aac.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: SJD5lN0-NcrLfGD7cAls-jYR4u3_syD5ZhFGYIeSqbdKOP7z45vGAw==
    Age: 2477610
    
    Page title: Surge - Performance at Scale. Results that Matter
    
    <!doctype html><html lang="en" dir="ltr"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><link href="https://unpkg.com/boxicons@2.0.7/css/boxicons.min.css" rel="stylesheet"><title>Surge - Performance at Scale. Results that Matter</title><script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha256-pasqAKBDmFT4eHoN2ndd6lN370kFiGUFyTiUHWhU7k8=" crossorigin="anonymous"></script><script async src="https://www.googletagmanager.com/gtag/js?id=G-KECNLM1TSB"></script><script>function gtag(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],gtag("js",new Date),gtag("config","G-KECNLM1TSB")</script><script defer="defer" src="/static/js/main.b2c332e9.js"></script><link href="/static/css/main.504687bd.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
    Found 2026-01-09 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · forksurge.com

    2026-01-09 17:04

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Fri, 09 Jan 2026 17:04:11 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://forksurge.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 f353b9615396320dcfec689a26cf519e.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: 2AvimwGZ7dfDmpp9TqZxvHPBI7zFUkocwxeNo9izauONePBC3DuTtQ==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2026-01-09 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · busch.dev

    2026-01-09 13:56

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Fri, 09 Jan 2026 13:56:28 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://busch.dev/
    X-Cache: Redirect from cloudfront
    Via: 1.1 2696c49ebf3abec704c6af790acf6778.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: QqaMxCWIi9UuJK_Tr0MsiVWXgUiaVj1gyu7bHLDHNqY9-iB4QD9uEg==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2026-01-09 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · busch.dev

    2026-01-09 13:56

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 6206
    Connection: close
    Date: Sun, 20 Jul 2025 08:43:17 GMT
    Last-Modified: Sun, 20 Jul 2025 08:24:07 GMT
    ETag: "e544cccdcf8268caf9f75aece09db3cb"
    x-amz-server-side-encryption: AES256
    Cache-Control: public,max-age=0,s-maxage=31536000
    Accept-Ranges: bytes
    Server: AmazonS3
    X-Cache: Hit from cloudfront
    Via: 1.1 1ff9ce989cf7cac5366389a5419a6d38.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: fsgqW6miTY00KaNs9QDtiHNw-wBbTnG3tiNTfJKu0DLgod7iJqPYVA==
    Age: 14965991
    
    Page title: Hey, I am Colin 👋
    
    <!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="modulepreload" href="/assets/manifest-570890fd.js"/><link rel="modulepreload" href="/assets/entry.client-B6IjAQc5.js"/><link rel="modulepreload" href="/assets/chunk-EF7DTUVF-CZCBXY5I.js"/><link rel="modulepreload" href="/assets/root-BAMUir5Q.js"/><link rel="modulepreload" href="/assets/index-BNySUAD8.js"/><link rel="modulepreload" href="/assets/Page-C70Ujjez.js"/><link rel="icon" type="image/svg+xml" href="/favicon.svg"/><title>Hey, I am Colin 👋</title><meta name="description" content="Welcome to my Website!"/><link rel="stylesheet" href="/assets/app-BZcfKNoK.css"/></head><body class="bg-bg text-normal font-mono mx-auto min-h-dvh col"><div class="flex-1 col"><div class="flex-1 col"><main class="flex flex-1 flex-col justify-center gap-4 p-8"><div class="flex flex-col self-center items-center"><h1 class="text-center">Hey, I am Colin</h1><div class="flex flex-1 flex-col mb-4"><h2 class="text-center mx-4">a developer who loves to bring<!-- --> <span class="font-medium">UX</span> and<!-- --> <span class="font-medium">DX</span> together 🤝</h2></div><h2 class="text-center">here is what you can do:</h2><div class="flex flex-col self-stretch mb-4"><a href="/help" data-discover="true"><div class="flex flex-row"><pre class="flex flex-1"><span class="hidden sm:block">type  </span>:<!-- -->help<span class="hidden sm:block">&lt;ENTER&gt;</span></pre><div class="w-56">if you are new!</div></div></a><a href="/about" data-discover="true"><div class="flex flex-row"><pre class="flex flex-1"><span class="hidden sm:block">type  </span>:<!-- -->about<span class="hidden sm:block">&lt;ENTER&gt;</span></pre><div class="w-56">to learn more about me</div></div></a><a href="/js-good" data-discover="true"><div class="flex flex-row"><pre class="flex flex-1"><span class="hidden sm:block">type  </span>:<!-- -->jsgood<span class="hidden sm:block">&lt;ENTER&gt;</span></pre><div class="w-56">to think about JS</div></div></a><a href="/kotlin2ts" data-discover="true"><div class="flex flex-row"><pre class="flex flex-1"><span class="hidden sm:block">type  </span>:<!-- -->k2ts<span class="hidden sm:block">&lt;ENTER&gt;</span></pre><div class="w-56">to convert kotlin to ts</div></div></a><a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ"><div class="flex flex-row"><pre class="flex flex-1"><span class="hidden sm:block">type  </span>:<!-- -->q<span class="hidden sm:block">&lt;ENTER&gt;</span></pre><div class="w-56">to exit</div></div></a></div><span class="text-center">Where you can find me</span><div class="flex flex-col self-stretch mb-12"><a href="https://github.com/buschco"><div class="flex flex-row"><pre class="flex flex-1"><span class="hidden sm:block">type  </span>:<!-- -->github<span class="hidden sm:block">&lt;ENTER&gt;</span></pre><div class="w-56">to go to my github</div></div></a></div></div></main></div><form class="h-6" data-discover="true" action="/" method="post"><input aria-label="vi command input" class="fixed bottom-0 left-0 right-0 bg-bg text-normal !outline-none" type="text" name="target"/></form><div class="bg-bg3 fixed bottom-0 left-0 right-0 max-h-6 flex flex-row justify-between"><div class="flex flex-row"><a class="uppercase text-bg3 font-bold px-2 bg-accent" href="/" data-discover="true">normal</a><div class="bg-bg2 text-muted px-2 hidden sm:block">main</div><div class="text-muted px-2 bg-bg2 sm:bg-transparent">index</div></div><div class="flex flex-row"><div class="text-muted px-2 hidden sm:block">html</div><div class="bg-bg2 text-muted px-2 hidden sm:block box-content text-right" style="width:28.898999999999997px">NaN<!-- -->%</div><div class="uppercase bg-accent text-bg3 font-bold px-2 box-content text-right" style="width:29px">NaN<!-- -->:<!-- -->NaN</div></div></div></div><script>((storageKey2, restoreKey) => {
        if (!window.history.state || !window.history.state.key) {
          let key = Math.random().toString(32).slice(2);
          window.history.replaceState({ key }, "");
        }
        try {
    Found 2026-01-09 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · sportbet.ke

    2026-01-09 01:16

    HTTP/1.1 403 Forbidden
    Server: CloudFront
    Date: Fri, 09 Jan 2026 01:16:03 GMT
    Content-Type: text/html
    Content-Length: 915
    Connection: close
    X-Cache: Error from cloudfront
    Via: 1.1 203ee6b98de7af3adc87c8746659929c.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: 00uHaH-dvyx-zplTw6hLU1aWi_w48sdh7A-ovBOL-Cl4x2H7oAhs1A==
    
    Page title: ERROR: The request could not be satisfied
    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <HTML><HEAD><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
    <TITLE>ERROR: The request could not be satisfied</TITLE>
    </HEAD><BODY>
    <H1>403 ERROR</H1>
    <H2>The request could not be satisfied.</H2>
    <HR noshade size="1px">
    Bad request.
    We can't connect to the server for this app or website at this time. There might be too much traffic or a configuration error. Try again later, or contact the app or website owner.
    <BR clear="all">
    If you provide content to customers through CloudFront, you can find steps to troubleshoot and help prevent this error by reviewing the CloudFront documentation.
    <BR clear="all">
    <HR noshade size="1px">
    <PRE>
    Generated by cloudfront (CloudFront)
    Request ID: 00uHaH-dvyx-zplTw6hLU1aWi_w48sdh7A-ovBOL-Cl4x2H7oAhs1A==
    </PRE>
    <ADDRESS>
    </ADDRESS>
    </BODY></HTML>
    Found 2026-01-09 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · sportbet.ke

    2026-01-09 01:16

    HTTP/1.1 400 Bad Request
    Server: CloudFront
    Date: Fri, 09 Jan 2026 01:16:03 GMT
    Content-Type: text/html
    Content-Length: 915
    Connection: close
    X-Cache: Error from cloudfront
    Via: 1.1 641c321eb6b63a682c557ddfe51be768.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: xic_zKRXvIQ_hX-3SbEz4Y4EY2BozsVlJAOD0Kr23hAbB3sdDTYaew==
    
    Page title: ERROR: The request could not be satisfied
    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <HTML><HEAD><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
    <TITLE>ERROR: The request could not be satisfied</TITLE>
    </HEAD><BODY>
    <H1>400 ERROR</H1>
    <H2>The request could not be satisfied.</H2>
    <HR noshade size="1px">
    Bad request.
    We can't connect to the server for this app or website at this time. There might be too much traffic or a configuration error. Try again later, or contact the app or website owner.
    <BR clear="all">
    If you provide content to customers through CloudFront, you can find steps to troubleshoot and help prevent this error by reviewing the CloudFront documentation.
    <BR clear="all">
    <HR noshade size="1px">
    <PRE>
    Generated by cloudfront (CloudFront)
    Request ID: xic_zKRXvIQ_hX-3SbEz4Y4EY2BozsVlJAOD0Kr23hAbB3sdDTYaew==
    </PRE>
    <ADDRESS>
    </ADDRESS>
    </BODY></HTML>
    Found 2026-01-09 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · exammate.com.np

    2026-01-08 05:41

    HTTP/1.1 200 OK
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Date: Thu, 08 Jan 2026 05:41:41 GMT
    x-powered-by: Next.js
    Cache-Control: private, no-cache, no-store, max-age=0, must-revalidate
    Accept: */*
    cloudfront-forwarded-proto: https
    cloudfront-is-android-viewer: false
    cloudfront-is-desktop-viewer: true
    cloudfront-is-ios-viewer: false
    cloudfront-is-mobile-viewer: false
    cloudfront-is-smarttv-viewer: false
    cloudfront-is-tablet-viewer: false
    cloudfront-viewer-address: 146.190.103.103:57698
    cloudfront-viewer-asn: 14061
    cloudfront-viewer-city: Singapore
    cloudfront-viewer-country: SG
    cloudfront-viewer-country-name: Singapore
    cloudfront-viewer-http-version: 1.1
    cloudfront-viewer-latitude: 1.31400
    cloudfront-viewer-longitude: 103.68390
    cloudfront-viewer-postal-code: 62
    cloudfront-viewer-time-zone: Asia/Singapore
    cloudfront-viewer-tls: TLSv1.3:TLS_AES_128_GCM_SHA256:fullHandshake
    Host: exammate.com.np
    User-Agent: Mozilla/5.0 (l9scan/2.0.2383e2633313e2232323e22353; +https://leakix.net)
    Via: 1.1 4f762327597c2647c5dac5e573d910fa.cloudfront.net (CloudFront), 1.1 4f762327597c2647c5dac5e573d910fa.cloudfront.net (CloudFront)
    x-amzn-trace-id: Root=1-695f4395-098f7246204242b727b58935
    x-current-path: /
    X-Forwarded-For: 146.190.103.103, 64.252.100.129
    x-forwarded-host: exammate.com.np
    x-forwarded-port: 443
    X-Forwarded-Proto: https
    Link: </_next/static/media/851c14db057e20c2-s.p.woff2>; rel=preload; as="font"; crossorigin=""; type="font/woff2", </_next/static/media/e807dee2426166ad-s.p.woff2>; rel=preload; as="font"; crossorigin=""; type="font/woff2"
    Vary: Accept-Encoding
    X-Cache: Miss from cloudfront
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: BfA7BUwFlrexKO02GzBke31UUQrmdbGyDq4L80j_E_o29PrZtF2iOQ==
    
    Found 2026-01-08 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · exammate.com.np

    2026-01-08 05:41

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Thu, 08 Jan 2026 05:41:39 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://exammate.com.np/
    X-Cache: Redirect from cloudfront
    Via: 1.1 1ad022b197e464938f7729463478f0c8.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: rPQejuL96vGs3OO_83ADl1qRgoefLMCNHeZhAkw_C7sfg0H3Hf9FXg==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2026-01-08 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · mta-sts.jayarinc.com

    2026-01-07 18:59

    HTTP/1.1 403 Forbidden
    Content-Type: application/xml
    Transfer-Encoding: chunked
    Connection: close
    Server: AmazonS3
    Date: Wed, 07 Jan 2026 18:59:27 GMT
    X-Cache: Error from cloudfront
    Via: 1.1 52dfbfe5ed6eea481ae3cb6b0a8eec38.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: bpNfbcitp1cvRmx2M-5HhDKcvTlk6QkJNcOLIaOXQVZxVKDyvXohnQ==
    
    
    <?xml version="1.0" encoding="UTF-8"?>
    <Error><Code>AccessDenied</Code><Message>Access Denied</Message><RequestId>VAPNA25SKPH6WWFX</RequestId><HostId>L4446mTCFwlOXp5clnfxk48DKCHs4yaBllJKqAVF8g5w9RUlwHzR/gqAqpDaIhuLHVFkACuPziRqVBiiPlbGDI9Ljb8jhu98</HostId></Error>
    Found 2026-01-07 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · mta-sts.jayarinc.com

    2026-01-07 18:59

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Wed, 07 Jan 2026 18:59:27 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://mta-sts.jayarinc.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 2e5530cd574fa6a27f079027dd7a281a.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: -iCIpJ-FTdykoZO3EiGpG6fWmhaxsWX-QNyKmBDKqUSZ2U0UbLUKVg==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2026-01-07 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · allendalebaptist-conroe.com

    2026-01-05 09:16

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Mon, 05 Jan 2026 09:16:04 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://allendalebaptist-conroe.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 79006a1b1266ae3c597864512702ebf8.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: STP7LWM8Gp_U4L-jCILF1eBp4B5seb2maLkybRl3j6pyLGEMitQdfg==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2026-01-05 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · allendalebaptist-conroe.com

    2026-01-05 09:16

    HTTP/1.1 301 Moved Permanently
    Content-Type: text/html; charset=UTF-8
    Content-Length: 0
    Connection: close
    Date: Mon, 05 Jan 2026 09:16:05 GMT
    X-XSS-Protection: 1
    Server: Apache/2.4.62 () OpenSSL/1.0.2k-fips PHP/7.4.15
    X-Powered-By: PHP/7.4.15
    Set-Cookie: connect=38m5pl1p084h7o1sj4f8ke31dg; path=/; domain=allendalebaptist-conroe.com
    Expires: Thu, 19 Nov 1981 08:52:00 GMT
    Cache-Control: no-store, no-cache, must-revalidate
    Pragma: no-cache
    Location: https://www.allendalebaptist-conroe.com
    X-Cache: Miss from cloudfront
    Via: 1.1 2696c49ebf3abec704c6af790acf6778.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: GolQxyqZgD-DdyO10RP4bTmFbhxhsj-CDRiFzKqgvvWs_aBJj-m-KA==
    
    Found 2026-01-05 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · scoreboard-ocr.com

    2026-01-04 12:25

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Sun, 04 Jan 2026 12:25:24 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://scoreboard-ocr.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 1ff9ce989cf7cac5366389a5419a6d38.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: 4fa4-DnruSfDG5tdVvuPl0qp_9XXiGwIZ5jW9kgSq50EvuFhB-SZHA==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2026-01-04 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · scoreboard-ocr.com

    2026-01-04 12:25

    HTTP/1.1 200 OK
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Server: nginx
    Date: Sun, 04 Jan 2026 12:25:24 GMT
    Pragma: no-cache
    X-UA-Compatible: IE=edge,chrome=1
    Vary: Cookie
    Set-Cookie: DokuWiki=nou3p2iq3ektj5fibmvn6pc3bm; path=/; HttpOnly
    Set-Cookie: DW68700bfd16c2027de7de74a5a8202a6f=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT; Max-Age=0; path=/; HttpOnly
    Expires: Thu, 19 Nov 1981 08:52:00 GMT
    Cache-Control: no-store, no-cache, must-revalidate
    X-Cache: Miss from cloudfront
    Via: 1.1 d11dcb69d5fad0d00cf6f2c45df4bb94.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: tTo2ZJG3YaFDKCKON_ZLHNLrpLAuaMTYxb5wcOyK4LItaKxVDR7wqw==
    
    Page title: start [Scoreboard OCR]
    
    <!DOCTYPE html>
    <html lang="en" dir="ltr">
    <head>
        <meta charset="utf-8"/>
        <title>start [Scoreboard OCR]</title>
    
        <meta name="generator" content="DokuWiki"/>
    <meta name="robots" content="index,follow"/>
    <meta name="keywords" content="start"/>
    <link rel="search" type="application/opensearchdescription+xml" href="/lib/exe/opensearch.php" title="Scoreboard OCR"/>
    <link rel="start" href="/"/>
    <link rel="manifest" href="/lib/exe/manifest.php"/>
    <link rel="alternate" type="text/html" title="Plain HTML" href="/_export/xhtml/start"/>
    <link rel="canonical" href="https://scoreboard-ocr.com/"/>
    <link rel="stylesheet" href="/lib/exe/css.php?t=notos&amp;tseed=1d5bff6f89bd581d4475378dbd2d808e"/>
    <!--[if gte IE 9]><!-->
    <script >/*<![CDATA[*/var NS='';var JSINFO = {"ga":{"trackingId":"UA-1935188-26","gtagId":"","anonymizeIp":false,"action":"show","trackOutboundLinks":true,"options":[],"pageview":"\/start","debug":false},"id":"start","namespace":"","ACT":"show","useHeadingNavigation":0,"useHeadingContent":0};
    /*!]]>*/</script>
    <script src="/lib/exe/jquery.php?tseed=34a552433bc33cc9c3bc32527289a0b2" defer="defer"></script>
    <script src="/lib/exe/js.php?t=notos&amp;tseed=1d5bff6f89bd581d4475378dbd2d808e" defer="defer"></script>
    <!--<![endif]-->
    
    
        <meta name="viewport" content="width=device-width,initial-scale=1"/>
    
        <link rel="shortcut icon" href="/lib/tpl/notos/images/favicon.ico" />
    <link rel="apple-touch-icon" href="/lib/tpl/notos/images/apple-touch-icon.png" />
    
    </head>
    
    <body>
    <div id="dokuwiki__top" class="dokuwiki mode_show tpl_notos   home">
    
        <header class="notos">
            <div class="container">
                <div class="toprow">
                                    <div class="branding">
                        <a href="/start"><img src="/_media/wiki/logo.png" alt="Scoreboard OCR"/></a>
                        <div>
                            <h1 class="wikititle"><a href="/start">Scoreboard OCR</a></h1>
                                                </div>
                    </div>
    
                    <div class="header-controls">
                        <div class="tools">
                            <div class="tool-button">
                                <label class="notos-toggle" for="notos__sitetools">
                                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.78 15.3 6 6 2.11-2.16-6-6-2.11 2.16m3.72-5.2c-.39 0-.81-.05-1.14-.19L4.97 21.25l-2.11-2.11 7.41-7.4L8.5 9.96l-.72.7-1.45-1.41v2.86l-.7.7-3.52-3.56.7-.7h2.81l-1.4-1.41 3.56-3.56a2.976 2.976 0 0 1 4.22 0L9.89 5.74l1.41 1.4-.71.71 1.79 1.78 1.82-1.88c-.14-.33-.2-.75-.2-1.12a3.49 3.49 0 0 1 3.5-3.52c.59 0 1.11.14 1.58.42L16.41 6.2l1.5 1.5 2.67-2.67c.28.47.42.97.42 1.6 0 1.92-1.55 3.47-3.5 3.47z"/></svg>
                                    <span>Tools</span>
                                </label>
                                <input type="checkbox" class="notos-toggle" id="notos__sitetools">
                                <div>
                                                                    <ul>
                                        <li class="login"><a href="/start?do=login&amp;sectok=" title="Log In" rel="nofollow">Log In</a></li>
                                    </ul>
                                </div>
                            </div>
    
                            <div class="tool-login">
                                <a href="/start?do=login&amp;sectok=" title="Log In" rel="nofollow" class="menuitem login"><span>Log In</span><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M10 17.25V14H3v-4h7V6.75L15.25 12 10 17.25M8 2h9a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2v-4h2v4h9V4H8v4H6V4a2 2 0 0 1 2-2z"/></svg></a>
                            </div>
                        </div>
    
    
                        <form action="/start" method="get" role="search" class="search doku_form" id="dw__search" accept-charset="utf-8"><input type="hidden" name="do" value="search" /><input type="hidden" name="id" value="start" /><div class="no"><input name="q" type="text" class="edit" title="[F]" accesskey="f" placeholder="Search" autocomplete="on" id=
    Found 2026-01-04 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · freshnmeatyburgers.com

    2026-01-03 23:00

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 16074
    Connection: close
    Last-Modified: Thu, 16 Jan 2025 17:37:18 GMT
    x-amz-version-id: KFRpmzkiiWIo0Y9WgJiS6.N9gErF40TF
    Server: AmazonS3
    Date: Sat, 03 Jan 2026 23:00:51 GMT
    ETag: "fc14e868c49aec00ebf1a5f4f5c5e47b"
    X-Cache: Hit from cloudfront
    Via: 1.1 8027798dc40af04392a940303e0fc516.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: OGf13O-phsqKfA01aFIgbOpCapr3JXNdeJY1V56J7APfd9lLFBYeow==
    
    Page title: Home | Fresh and Meaty Burgers
    
    <!doctype html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
        <meta http-equiv="Pragma" content="no-cache">
        <meta http-equiv="Expires" content="0">
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=6.0, minimum-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <meta name="description" content="Carson, CA 90745 American food for Pickup - Delivery Order from Fresh and Meaty Burgers in Carson, CA 90745, phone: 424-536-3046 ">
        <meta name="keywords" content="Carson, CA 90745 American food for Pickup Delivery Order American food for Pickup, Delivery Best American food for Pickup">
        <link rel="shortcut icon" href="/assets/images/ico/favicon.ico">
        <link rel="apple-touch-icon-precomposed" sizes="144x144"
              href="/assets/images/ico/apple-touch-icon-144-precomposed.png">
        <link rel="apple-touch-icon-precomposed" sizes="114x114"
              href="/assets/images/ico/apple-touch-icon-114-precomposed.png">
        <link rel="apple-touch-icon-precomposed" sizes="72x72"
              href="/assets/images/ico/apple-touch-icon-72-precomposed.png">
        <link rel="apple-touch-icon-precomposed" href="/assets/images/ico/apple-touch-icon-57-precomposed.png">
        <title>Home | Fresh and Meaty Burgers</title>
        <link rel="canonical" href="https://freshnmeatyburgers.com">
        <link rel="stylesheet" href="/assets/css/main.css"/>
        <script>
            !function(t,e){var o,n,p,r;e.__SV||(window.posthog=e,e._i=[],e.init=function(i,s,a){function g(t,e){var o=e.split(".");2==o.length&&(t=t[o[0]],e=o[1]),t[e]=function(){t.push([e].concat(Array.prototype.slice.call(arguments,0)))}}(p=t.createElement("script")).type="text/javascript",p.async=!0,p.src=s.api_host+"/static/array.js",(r=t.getElementsByTagName("script")[0]).parentNode.insertBefore(p,r);var u=e;for(void 0!==a?u=e[a]=[]:a="posthog",u.people=u.people||[],u.toString=function(t){var e="posthog";return"posthog"!==a&&(e+="."+a),t||(e+=" (stub)"),e},u.people.toString=function(){return u.toString(1)+".people (stub)"},o="capture identify alias people.set people.set_once set_config register register_once unregister opt_out_capturing has_opted_out_capturing opt_in_capturing reset isFeatureEnabled onFeatureFlags".split(" "),n=0;n<o.length;n++)g(u,o[n]);e._i.push([i,s,a])},e.__SV=1)}(document,window.posthog||[]);
            posthog.init('phc_wRTKEH4zhknRP3t80Ttjj05BeWL43PdhQQGpg0mE6OV',{api_host:'https://app.posthog.com'})
        </script>
    </head>
    <body>
    <section style="display: none;">
        <a href="#header" aria-label="skip to navigation">Skip to Navigation</a>
        <a href="#main" aria-label="skip to main content">Skip to Main Content</a>
    </section>
    <header id="header">
        <nav class="navbar" aria-label="Navigation">
            <ul id="navlinks" class="navbar__container"><li><a class="navbar--link" href="/#home">Home</a></li><li><a class="navbar--link" href="/order/">Order Online</a></li><li><a class="navbar--link" href="/#contact">Contact Us</a></li></ul>
        </nav>
    </header>
    
    <main id="main">
        <section id="home" class="hero__container">
            <div class="hero__sliders-container"><img id="hero-slider1" class="hero--image" loading="lazy" src="https://chopst.s3.amazonaws.com/menuImage/1709751352938.JPG" alt="American Food"><img id="hero-slider2" class="hero--image" loading="lazy" src="https://chopst.s3.amazonaws.com/menuImage/1709751377883.JPG" alt="American Food"><ol class="carousel-indicators"><li tabindex="0" role="button"><span class="acsb-sr-only" aria-hidden="false">Carousel slide 2</span></li><li tabindex="0" role="button"><span class="acsb-sr-only" aria-hidden="false">Carousel slide 2</span></li></ol></div>
            <div class="hero__overlay">
                <h1 id="name" class="title"><span class="welcome-title">Welcome To Fresh and Meaty Burgers</span></h1>
                <div class="stars mt-3">★★★★★★★★★★★★★★★★★★★★</div>
                <h2 id="slogan" class="slogan mt-1 mb-3">Best food, Good Food</h2>
    
    Found 2026-01-03 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · freshnmeatyburgers.com

    2026-01-03 23:00

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Sat, 03 Jan 2026 23:00:50 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://freshnmeatyburgers.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 fde6fada26b7302661010feaa587bdb8.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: k6jfPQDMD_xqM84aPNIxSmmczhAj3WzH67beHB46HmPXiyZw9ypLVg==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2026-01-03 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · antlive118.com

    2026-01-02 23:41

    HTTP/1.1 403 Forbidden
    Server: CloudFront
    Date: Fri, 02 Jan 2026 23:41:52 GMT
    Content-Length: 1266
    Connection: close
    Content-Type: text/html
    X-Cache: Error from cloudfront
    Via: 1.1 1ff9ce989cf7cac5366389a5419a6d38.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: J7ElEU1p7EGJnDg32_dsLHbPgpISOnnu_QFw_CceOsoKrtQrsLNhPQ==
    
    Page title: 403 - Access Restricted
    
    <!DOCTYPE html>
    <html lang="en">
    
    <head>
      <meta charset="UTF-8" />
      <meta http-equiv="X-UA-Compatible" content="IE=edge" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <link rel="stylesheet" href="https://sharedhtmlb01.s3.ap-northeast-1.amazonaws.com/style.css" />
    
      <style>
        a,
        button,
        input,
        select,
        h1,
        h2,
        h3,
        h4,
        h5,
        * {
          box-sizing: border-box;
          margin: 0;
          padding: 0;
          border: none;
          text-decoration: none;
          appearance: none;
          background: none;
    
          -webkit-font-smoothing: antialiased;
        }
      </style>
      <title>403 - Access Restricted</title>
    </head>
    
    <body>
      <div class="_61-frame">
        <div class="_62-text">
          403 - Access Restricted
          <br/>
          地区访问限制
        </div>
        <div class="_63-text">
          The region you are in has been banned from accessing our website,
          <br />
          we apologize for any inconvenience caused.
        </div>
    
        <div class="_63-text">
          你所在的地区被限制访问此网站。
          <br />
          为此给您带来不便,敬请谅解。
        </div>
    
        <img class="_65-rectangle" src="https://sharedhtmlb01.s3.ap-northeast-1.amazonaws.com/item.svg" />
      </div>
    </body>
    
    </html>
    Found 2026-01-02 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · sportbet.co.ke

    2026-01-02 23:38

    HTTP/1.1 400 Bad Request
    Server: CloudFront
    Date: Fri, 02 Jan 2026 23:39:00 GMT
    Content-Type: text/html
    Content-Length: 915
    Connection: close
    X-Cache: Error from cloudfront
    Via: 1.1 4f762327597c2647c5dac5e573d910fa.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: OCzx9f5wg7TQnmLojA1w27cMY_jNw4dyIO9irIDmck-2hyxqBokElg==
    
    Page title: ERROR: The request could not be satisfied
    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <HTML><HEAD><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
    <TITLE>ERROR: The request could not be satisfied</TITLE>
    </HEAD><BODY>
    <H1>400 ERROR</H1>
    <H2>The request could not be satisfied.</H2>
    <HR noshade size="1px">
    Bad request.
    We can't connect to the server for this app or website at this time. There might be too much traffic or a configuration error. Try again later, or contact the app or website owner.
    <BR clear="all">
    If you provide content to customers through CloudFront, you can find steps to troubleshoot and help prevent this error by reviewing the CloudFront documentation.
    <BR clear="all">
    <HR noshade size="1px">
    <PRE>
    Generated by cloudfront (CloudFront)
    Request ID: OCzx9f5wg7TQnmLojA1w27cMY_jNw4dyIO9irIDmck-2hyxqBokElg==
    </PRE>
    <ADDRESS>
    </ADDRESS>
    </BODY></HTML>
    Found 2026-01-02 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · sportbet.co.ke

    2026-01-02 23:38

    HTTP/1.1 403 Forbidden
    Server: CloudFront
    Date: Fri, 02 Jan 2026 23:39:00 GMT
    Content-Type: text/html
    Content-Length: 915
    Connection: close
    X-Cache: Error from cloudfront
    Via: 1.1 2e5530cd574fa6a27f079027dd7a281a.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: pZkp-OtSrRe-uaBuqwn3AgNIlJ32AuVkt86hl-buLYoWw3m8xXNFsQ==
    
    Page title: ERROR: The request could not be satisfied
    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <HTML><HEAD><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
    <TITLE>ERROR: The request could not be satisfied</TITLE>
    </HEAD><BODY>
    <H1>403 ERROR</H1>
    <H2>The request could not be satisfied.</H2>
    <HR noshade size="1px">
    Bad request.
    We can't connect to the server for this app or website at this time. There might be too much traffic or a configuration error. Try again later, or contact the app or website owner.
    <BR clear="all">
    If you provide content to customers through CloudFront, you can find steps to troubleshoot and help prevent this error by reviewing the CloudFront documentation.
    <BR clear="all">
    <HR noshade size="1px">
    <PRE>
    Generated by cloudfront (CloudFront)
    Request ID: pZkp-OtSrRe-uaBuqwn3AgNIlJ32AuVkt86hl-buLYoWw3m8xXNFsQ==
    </PRE>
    <ADDRESS>
    </ADDRESS>
    </BODY></HTML>
    Found 2026-01-02 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · stackednotion.com

    2026-01-02 21:23

    HTTP/1.1 302 Moved Temporarily
    Content-Length: 0
    Connection: close
    Date: Fri, 02 Jan 2026 21:23:52 GMT
    Location: https://www.stackednotion.com/
    X-Cache: Miss from cloudfront
    Via: 1.1 32202134de03dbdd880d0da736c39c1c.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: 7wTBkAtYsL-KwDWJ_D2ucYyJxooizx64Kaj9cFsPOa7VZ9QqT2TfYQ==
    
    Found 2026-01-02 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · stackednotion.com

    2026-01-02 21:23

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Fri, 02 Jan 2026 21:23:52 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://stackednotion.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 06659e009eac6940f260d2b396e0460c.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: 4YIgCF_ODC3R92JFkq-1V6cxALR3xWl2FQrK4d_BJ1Zlr6st9jljwQ==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2026-01-02 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · miyagi-jihan.jp

    2026-01-02 20:11

    HTTP/1.1 200 OK
    Content-Type: text/html; charset=UTF-8
    Transfer-Encoding: chunked
    Connection: close
    Server: nginx
    Date: Fri, 02 Jan 2026 20:12:03 GMT
    Link: <https://miyagi-jihan.jp/wp-json/>; rel="https://api.w.org/"
    X-Cache: Miss from cloudfront
    Via: 1.1 d3567cb7a3a02c495b66e54c187b0ea2.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: _kxki8oLayzBlC_sxzeoqQxsXUeCGW1Sasek_YJPrFcN8LD3d3c2TQ==
    
    Found 2026-01-02 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · www.cdn.linxdev.net

    2026-01-02 16:45

    HTTP/1.1 403 Forbidden
    Content-Type: application/xml
    Transfer-Encoding: chunked
    Connection: close
    Server: AmazonS3
    Date: Fri, 02 Jan 2026 16:45:20 GMT
    X-Cache: Error from cloudfront
    Via: 1.1 d3567cb7a3a02c495b66e54c187b0ea2.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: 3TAZWERWC6pDut5MEZOS2n6AqW5HK-TTu4EfE5goL4QduOpAuhqPsg==
    
    
    <?xml version="1.0" encoding="UTF-8"?>
    <Error><Code>AccessDenied</Code><Message>Access Denied</Message></Error>
    Found 2026-01-02 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · sportybet.com

    2026-01-02 11:13

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Fri, 02 Jan 2026 11:13:07 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://sportybet.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 611ca6d7a586f9a7ac13f280c5d6da36.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: _qtzVnWLbSHS8M86EDgZiNX0-hy9Yc1Cgd8sdT79Q6imwUxi9HuUGg==
    X-XSS-Protection: 1; mode=block
    X-Frame-Options: SAMEORIGIN
    Referrer-Policy: strict-origin-when-cross-origin
    X-Content-Type-Options: nosniff
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2026-01-02 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · sportybet.com

    2026-01-02 11:13

    HTTP/1.1 301 Moved Permanently
    Content-Type: text/html
    Content-Length: 162
    Connection: close
    Date: Fri, 02 Jan 2026 11:13:07 GMT
    Location: http://www.sportybet.com/
    Server: nginx
    X-Cache: Miss from cloudfront
    Via: 1.1 55c4ff21b8d72983466f815563acf5be.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: 8Qq_dm2CTvUFxDPgqmhq8hKiZLgUR9q4dW7kaGEAG245pX-OBfuylA==
    X-XSS-Protection: 1; mode=block
    X-Frame-Options: SAMEORIGIN
    Referrer-Policy: strict-origin-when-cross-origin
    X-Content-Type-Options: nosniff
    Strict-Transport-Security: max-age=31536000
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>nginx</center>
    </body>
    </html>
    
    Found 2026-01-02 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · bookme.ng

    2026-01-01 18:15

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Thu, 01 Jan 2026 18:15:39 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://bookme.ng/
    X-Cache: Redirect from cloudfront
    Via: 1.1 b481f78ceb28e501da4d75bdd6321fa6.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: hvpm4wXq2DQ7L_Myk6RRaAiaBp-Z9Hz_o0KyGESO-htzFn-RO14mgg==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2026-01-01 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · bookme.ng

    2026-01-01 18:15

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 3894
    Connection: close
    Date: Thu, 01 Jan 2026 18:15:39 GMT
    Last-Modified: Wed, 13 Oct 2021 08:47:24 GMT
    x-amz-version-id: qvlaxILxdy.AxEETCYSJiIEpUV10TaAA
    ETag: "3442ff0c9d135333d3a0b090c72ebf75"
    Server: AmazonS3
    X-Cache: Hit from cloudfront
    Via: 1.1 a99407071c3f2a96a40fff2cd5775d8e.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: 3Ht7CCNJnsQvP88ViBhtFO4cDgoPmUc6i6ouXxyx72HgPHXwQ-_cEQ==
    
    Page title: Bookme.ng
    
    <!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="./logo192.png"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Bookme Home"/><link rel="apple-touch-icon" href="./logo192.png"/><link rel="manifest" href="./manifest.json"/><script async src="https://www.googletagmanager.com/gtag/js?id=G-NKC8NG1S4M"></script><script>function gtag(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],gtag("js",new Date),gtag("config","G-NKC8NG1S4M")</script><script async src="https://www.googletagmanager.com/gtag/js?id=UA-174455960-1"></script><script>function gtag(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],gtag("js",new Date),gtag("config","UA-174242703-2")</script><script>!function(e,t,a,n,g){e[n]=e[n]||[],e[n].push({"gtm.start":(new Date).getTime(),event:"gtm.js"});var m=t.getElementsByTagName(a)[0],r=t.createElement(a);r.async=!0,r.src="https://www.googletagmanager.com/gtm.js?id=GTM-N72SZQL",m.parentNode.insertBefore(r,m)}(window,document,"script","dataLayer")</script><title>Bookme.ng</title><link href="./static/css/2.a1596f27.chunk.css" rel="stylesheet"><link href="./static/css/main.e94dca1a.chunk.css" rel="stylesheet"></head><style>html{scroll-behavior:smooth}</style><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div><script>!function(e){function r(r){for(var n,a,i=r[0],c=r[1],l=r[2],s=0,p=[];s<i.length;s++)a=i[s],Object.prototype.hasOwnProperty.call(o,a)&&o[a]&&p.push(o[a][0]),o[a]=0;for(n in c)Object.prototype.hasOwnProperty.call(c,n)&&(e[n]=c[n]);for(f&&f(r);p.length;)p.shift()();return u.push.apply(u,l||[]),t()}function t(){for(var e,r=0;r<u.length;r++){for(var t=u[r],n=!0,i=1;i<t.length;i++){var c=t[i];0!==o[c]&&(n=!1)}n&&(u.splice(r--,1),e=a(a.s=t[0]))}return e}var n={},o={1:0},u=[];function a(r){if(n[r])return n[r].exports;var t=n[r]={i:r,l:!1,exports:{}};return e[r].call(t.exports,t,t.exports,a),t.l=!0,t.exports}a.e=function(e){var r=[],t=o[e];if(0!==t)if(t)r.push(t[2]);else{var n=new Promise((function(r,n){t=o[e]=[r,n]}));r.push(t[2]=n);var u,i=document.createElement("script");i.charset="utf-8",i.timeout=120,a.nc&&i.setAttribute("nonce",a.nc),i.src=function(e){return a.p+"static/js/"+({}[e]||e)+"."+{3:"f1ac354c"}[e]+".chunk.js"}(e);var c=new Error;u=function(r){i.onerror=i.onload=null,clearTimeout(l);var t=o[e];if(0!==t){if(t){var n=r&&("load"===r.type?"missing":r.type),u=r&&r.target&&r.target.src;c.message="Loading chunk "+e+" failed.\n("+n+": "+u+")",c.name="ChunkLoadError",c.type=n,c.request=u,t[1](c)}o[e]=void 0}};var l=setTimeout((function(){u({type:"timeout",target:i})}),12e4);i.onerror=i.onload=u,document.head.appendChild(i)}return Promise.all(r)},a.m=e,a.c=n,a.d=function(e,r,t){a.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,r){if(1&r&&(e=a(e)),8&r)return e;if(4&r&&"object"==typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(a.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var n in e)a.d(t,n,function(r){return e[r]}.bind(null,n));return t},a.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(r,"a",r),r},a.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},a.p="./",a.oe=function(e){throw console.error(e),e};var i=this["webpackJsonpbookme-new"]=this["webpackJsonpbookme-new"]||[],c=i.push.bind(i);i.push=r,i=i.slice();for(var l=0;l<i.length;l++)r(i[l]);var f=c;t()}([])</script><script src="./static/js/2.f2ccdb5d.chunk.js"></script><script src="./static/js/main.2d992098.chunk.js"></script></body></html>
    Found 2026-01-01 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · ababilfund.com

    2026-01-01 03:02

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Thu, 01 Jan 2026 03:02:06 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://ababilfund.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 8027798dc40af04392a940303e0fc516.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: ZeJDmyj4_-tGdTHjp-QuN5cg35Rv8yz17wKGkm-XuYmGhS1dPZZGfg==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2026-01-01 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · ababilfund.com

    2026-01-01 03:02

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 91076
    Connection: close
    Date: Thu, 01 Jan 2026 03:02:05 GMT
    Last-Modified: Mon, 03 Apr 2023 20:29:40 GMT
    ETag: "8ab1856e67d57bf49e72a996fca6dbfd"
    x-amz-server-side-encryption: AES256
    Cache-Control: public, max-age=0, s-maxage=600, must-revalidate
    Accept-Ranges: bytes
    Server: AmazonS3
    Via: 1.1 a7fe02be1577ea89922828646d012a7a.cloudfront.net (CloudFront), 1.1 a99407071c3f2a96a40fff2cd5775d8e.cloudfront.net (CloudFront)
    x-amz-cf-pop: SIN2-P6
    Vary: Accept-Encoding
    X-Cache: Miss from cloudfront
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: oS0-A07OdBN3GCgdBXJKsMVqG0IK-1R3Lp0WreEtAkHv66kQvvWeHA==
    Age: 1149267
    
    
    <!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><script async="" src="https://www.googletagmanager.com/gtag/js?id=${process.env.NEXT_PUBLIC_GOOGLE_ANALYTICS}"></script><script>window.dataLayer = window.dataLayer || [];
                  function gtag(){dataLayer.push(arguments);}
                  gtag('js', new Date());
                  gtag('config', 'G-WJBMZVTJMR', { page_path: window.location.pathname });
                  </script><meta charset="utf-8" class="jsx-2f0c90495f6e2008"/><meta name="viewport" content="width=device-width, initial-scale=1.0" class="jsx-2f0c90495f6e2008"/><meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" class="jsx-2f0c90495f6e2008"/><meta http-equiv="x-ua-compatible" content="ie=edge" class="jsx-2f0c90495f6e2008"/><meta name="theme-color" content="2A8853" class="jsx-2f0c90495f6e2008"/><meta name="description" content="AbabilFund: #1, secured and trusted online crowdfunding platform for Bangladesh. With simple and easy steps, support a cause or raise funds for a campaign." class="jsx-2f0c90495f6e2008"/><meta name="format-detection" content="telephone=no" class="jsx-2f0c90495f6e2008"/><meta property="og:type" content="website" class="jsx-2f0c90495f6e2008"/><meta property="og:title" content="AbabilFund - #1 fundraising site for Bangladesh" class="jsx-2f0c90495f6e2008"/><meta property="og:url" content="https://www.ababilfund.com" class="jsx-2f0c90495f6e2008"/><meta property="og:description" content="AbabilFund: #1, secured and trusted online crowdfunding platform for Bangladesh. With simple and easy steps, support a cause or raise funds for a campaign." class="jsx-2f0c90495f6e2008"/><meta property="og:image" content="https://i.ibb.co/Ttz3vRQ/Ababil-Bangladesh-Fundraising-Logo-Lg.png" class="jsx-2f0c90495f6e2008"/><meta property="og:image" content="https://ababil-dev-assets.s3.ap-southeast-1.amazonaws.com/logo/Ababil_Bangladesh_Fundraising_Logo_Lg.png" class="jsx-2f0c90495f6e2008"/><meta property="og:image:width" content="1200" class="jsx-2f0c90495f6e2008"/><meta property="og:image:height" content="628" class="jsx-2f0c90495f6e2008"/><meta property="og:locale" content="bn_BD" class="jsx-2f0c90495f6e2008"/><meta property="og:locale" content="en_US" class="jsx-2f0c90495f6e2008"/><meta content="en_GB" property="og:locale:alternate" class="jsx-2f0c90495f6e2008"/><meta property="og:site_name" content="Ababil" class="jsx-2f0c90495f6e2008"/><meta content="en_GB" property="og:locale:alternate" class="jsx-2f0c90495f6e2008"/><meta content="Bangladesh" name="geo.country" class="jsx-2f0c90495f6e2008"/><meta http-equiv="content-language" content="bn_BD" class="jsx-2f0c90495f6e2008"/><meta http-equiv="content-language" content="en-US" class="jsx-2f0c90495f6e2008"/><meta name="twitter:description" content="AbabilFund: #1, secured and trusted online crowdfunding platform for Bangladesh. With simple and easy steps, support a cause or raise funds for a campaign." class="jsx-2f0c90495f6e2008"/><meta name="twitter:title" content="AbabilFund - #1 fundraising site for Bangladesh" class="jsx-2f0c90495f6e2008"/><meta name="next-head-count" content="28"/><link rel="preload" href="/_next/static/css/3ffe1026d7f7d7b4.css" as="style"/><link rel="stylesheet" href="/_next/static/css/3ffe1026d7f7d7b4.css" data-n-g=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-0d1b80a048d4787e.js"></script><script src="/_next/static/chunks/webpack-309fbebe2073f18c.js" defer=""></script><script src="/_next/static/chunks/framework-79bce4a3a540b080.js" defer=""></script><script src="/_next/static/chunks/main-e8e368b5e2090f7b.js" defer=""></script><script src="/_next/static/chunks/pages/_app-4c7877ca2f4ee355.js" defer=""></script><script src="/_next/static/chunks/0c428ae2-0d92f6fd01d76463.js" defer=""></script><script src="/_next/static/chunks/d7eeaac4-b3a337651365231c.js" defer=""></script><script src="/_next/static/chunks/9990-f4e9363d0750ebe1.js" defer=""></script><script src="/_next/static/chunks/6886-26daeaf2044e1b6c.js" defer=""></sc
    Found 2026-01-01 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · playbtp7.com

    2025-12-30 15:30

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 13183
    Connection: close
    Last-Modified: Fri, 26 Dec 2025 15:47:56 GMT
    x-amz-version-id: 7T9eWy2xs6lZcQfnA6XWz_d9tHgwq2Ps
    Server: AmazonS3
    Date: Mon, 29 Dec 2025 16:56:17 GMT
    ETag: "da5adeb2d8cf92b0f6c3cd25f4a84cd9"
    X-Cache: Hit from cloudfront
    Via: 1.1 1ff9ce989cf7cac5366389a5419a6d38.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: a6rvQd5Pn-KgeIVwuqunvcXHsmSFBO_E96QHnnTOMO_-hPx-StDyEA==
    Age: 81264
    
    Page title: Cassinos e Apostas Esportivas Seguras | Jogue nos Melhores Sites Brasileiros
    
    <!doctype html><html lang="pt"><head><link rel="preconnect" href="https://dz68qzgzvzly6.cloudfront.net"><link rel="dns-prefetch" href="https://dz68qzgzvzly6.cloudfront.net"><title>Cassinos e Apostas Esportivas Seguras | Jogue nos Melhores Sites Brasileiros</title><meta charset="UTF-8"><meta name="referrer" content="origin"><link rel="icon" href=""><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="referrer" content="no-referrer"><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0"><meta name="apple-mobile-web-app-capable" content="yes"><meta name="mobile-web-app-capable" content="yes"><meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,viewport-fit=cover"><meta name="description" content="Aposte com confiança em cassinos online e sites de apostas esportivas no Brasil. Oferecemos bônus, odds vantajosas e uma experiência segura de jogo."><meta name="keywords" content="Apostas Online, Cassino Online Brasil, Apostas Futebol, Sites Seguros, Bônus de Apostas"><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"><link rel="apple-touch-startup-image" media="screen and (orientation: portrait)" href="./src/assets/512.png"><meta property="og:title" content="Cassinos e Apostas Esportivas Seguras | Jogue nos Melhores Sites Brasileiros"><meta property="og:description" content="Aposte com confiança em cassinos online e sites de apostas esportivas no Brasil. Oferecemos bônus, odds vantajosas e uma experiência segura de jogo."><meta property="og:type" content="website"><meta name="og:image" property="og:image" content="https://dz68qzgzvzly6.cloudfront.net/tp7/uploads/setting/file/telegram_cover.png"><meta name="og:image:secure_url" property="og:image:secure_url" content="https://dz68qzgzvzly6.cloudfront.net/tp7/uploads/setting/file/telegram_cover.png"><meta name="twitter:card" content="summary_large_image"><script>function getQueryString(name) {
          var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
          var r = window.location.search.substr(1).match(reg);
          if (r != null) return unescape(r[2]);
          return null;
        }
        // code
        let code = getQueryString("code");
        if (code) {
          localStorage.setItem("code", code);
        }
        // cid
        let cid = getQueryString("c");
        if (cid) {
          localStorage.setItem("c", cid);
        }
        // clid
        let clid =
          getQueryString("clid") ||
          getQueryString("click_id") ||
          getQueryString("ttclid") ||
          getQueryString("pixel_click_id") ||
          getQueryString("bbg");
        if (clid) {
          localStorage.setItem("clid", clid);
        }
        // addid
        let adid =
          getQueryString("adid") ||
          getQueryString("CreativeID") ||
          getQueryString("_oks_ext");
        if (adid) {
          localStorage.setItem("adid", adid);
        }
    
        // 注册需要填写cpf
        let qh = getQueryString("qh")
        if(qh) {
          localStorage.setItem("qh", qh);
        }
        // 如果带有force则不弹出pwa安装弹窗
        let pwa_force = getQueryString('force')
        if(pwa_force) {
          localStorage.setItem("pwa_force", pwa_force);
        }
    
        // pdd裂变
        let origin = getQueryString('pdd_origin')
        if(origin) {
          localStorage.setItem("pdd_origin", origin);
        }</script><script>if ("standalone" in window.navigator && window.navigator.standalone) {
          var noddy,
            remotes = false;
    
          document.addEventListener(
            "click",
            function (event) {
              noddy = event.target;
    
              while (noddy.nodeName !== "A" && noddy.nodeName !== "HTML")
                noddy = noddy.parentNode;
    
              if (
                "href" in noddy &&
                noddy.href.indexOf("http") !== -1 &&
                (noddy.href.indexOf(document.location.host) !== -1 || remotes)
              ) {
                event.preventDefault();
    
                document.location.href = noddy.href;
              }
            },
            false
          );
        }</script><script>// (fun
    Found 2025-12-30 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · playbtp7.com

    2025-12-30 15:30

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Tue, 30 Dec 2025 15:30:40 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://playbtp7.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 203ee6b98de7af3adc87c8746659929c.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: i99L-1vXQLF-mTyHLgnrm3wADoVx4x4llTiOnpj1n4iZ4QcIeg5R1A==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-30 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · tp7luky.com

    2025-12-30 15:15

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 13183
    Connection: close
    Last-Modified: Fri, 26 Dec 2025 15:47:56 GMT
    x-amz-version-id: 7T9eWy2xs6lZcQfnA6XWz_d9tHgwq2Ps
    Server: AmazonS3
    Date: Mon, 29 Dec 2025 16:56:17 GMT
    ETag: "da5adeb2d8cf92b0f6c3cd25f4a84cd9"
    X-Cache: Hit from cloudfront
    Via: 1.1 385cb8def78c1bb03b9aa3bd53bf1f06.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: jZsipUnx0tCJb70XWK2-vFvHLLSBWyB_gFEkhFk3Fp7kB17rbSpZMw==
    Age: 80383
    
    Page title: Cassinos e Apostas Esportivas Seguras | Jogue nos Melhores Sites Brasileiros
    
    <!doctype html><html lang="pt"><head><link rel="preconnect" href="https://dz68qzgzvzly6.cloudfront.net"><link rel="dns-prefetch" href="https://dz68qzgzvzly6.cloudfront.net"><title>Cassinos e Apostas Esportivas Seguras | Jogue nos Melhores Sites Brasileiros</title><meta charset="UTF-8"><meta name="referrer" content="origin"><link rel="icon" href=""><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="referrer" content="no-referrer"><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0"><meta name="apple-mobile-web-app-capable" content="yes"><meta name="mobile-web-app-capable" content="yes"><meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,viewport-fit=cover"><meta name="description" content="Aposte com confiança em cassinos online e sites de apostas esportivas no Brasil. Oferecemos bônus, odds vantajosas e uma experiência segura de jogo."><meta name="keywords" content="Apostas Online, Cassino Online Brasil, Apostas Futebol, Sites Seguros, Bônus de Apostas"><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"><link rel="apple-touch-startup-image" media="screen and (orientation: portrait)" href="./src/assets/512.png"><meta property="og:title" content="Cassinos e Apostas Esportivas Seguras | Jogue nos Melhores Sites Brasileiros"><meta property="og:description" content="Aposte com confiança em cassinos online e sites de apostas esportivas no Brasil. Oferecemos bônus, odds vantajosas e uma experiência segura de jogo."><meta property="og:type" content="website"><meta name="og:image" property="og:image" content="https://dz68qzgzvzly6.cloudfront.net/tp7/uploads/setting/file/telegram_cover.png"><meta name="og:image:secure_url" property="og:image:secure_url" content="https://dz68qzgzvzly6.cloudfront.net/tp7/uploads/setting/file/telegram_cover.png"><meta name="twitter:card" content="summary_large_image"><script>function getQueryString(name) {
          var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
          var r = window.location.search.substr(1).match(reg);
          if (r != null) return unescape(r[2]);
          return null;
        }
        // code
        let code = getQueryString("code");
        if (code) {
          localStorage.setItem("code", code);
        }
        // cid
        let cid = getQueryString("c");
        if (cid) {
          localStorage.setItem("c", cid);
        }
        // clid
        let clid =
          getQueryString("clid") ||
          getQueryString("click_id") ||
          getQueryString("ttclid") ||
          getQueryString("pixel_click_id") ||
          getQueryString("bbg");
        if (clid) {
          localStorage.setItem("clid", clid);
        }
        // addid
        let adid =
          getQueryString("adid") ||
          getQueryString("CreativeID") ||
          getQueryString("_oks_ext");
        if (adid) {
          localStorage.setItem("adid", adid);
        }
    
        // 注册需要填写cpf
        let qh = getQueryString("qh")
        if(qh) {
          localStorage.setItem("qh", qh);
        }
        // 如果带有force则不弹出pwa安装弹窗
        let pwa_force = getQueryString('force')
        if(pwa_force) {
          localStorage.setItem("pwa_force", pwa_force);
        }
    
        // pdd裂变
        let origin = getQueryString('pdd_origin')
        if(origin) {
          localStorage.setItem("pdd_origin", origin);
        }</script><script>if ("standalone" in window.navigator && window.navigator.standalone) {
          var noddy,
            remotes = false;
    
          document.addEventListener(
            "click",
            function (event) {
              noddy = event.target;
    
              while (noddy.nodeName !== "A" && noddy.nodeName !== "HTML")
                noddy = noddy.parentNode;
    
              if (
                "href" in noddy &&
                noddy.href.indexOf("http") !== -1 &&
                (noddy.href.indexOf(document.location.host) !== -1 || remotes)
              ) {
                event.preventDefault();
    
                document.location.href = noddy.href;
              }
            },
            false
          );
        }</script><script>// (fun
    Found 2025-12-30 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · tp7luky.com

    2025-12-30 15:15

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Tue, 30 Dec 2025 15:15:58 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://tp7luky.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 d3567cb7a3a02c495b66e54c187b0ea2.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: FgFel7EhGfQqpjuqKQR6wx0k21intkp3vRyeyrGb9f0LlvemUUvRnQ==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-30 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · www.cdn.linxdev.net

    2025-12-30 14:20

    HTTP/1.1 403 Forbidden
    Content-Type: application/xml
    Transfer-Encoding: chunked
    Connection: close
    Server: AmazonS3
    Date: Tue, 30 Dec 2025 14:20:08 GMT
    X-Cache: Error from cloudfront
    Via: 1.1 df11b13b779c62601ca4cd4d2bb0ce18.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: WgcHjrCeXx5w9ifmCUb9RJ4RGO4HuUwBWHgC9uvJwTxEsPxRZbQMhA==
    
    
    <?xml version="1.0" encoding="UTF-8"?>
    <Error><Code>AccessDenied</Code><Message>Access Denied</Message></Error>
    Found 2025-12-30 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · antlive118.com

    2025-12-30 07:54

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 4492
    Connection: close
    Date: Mon, 29 Dec 2025 19:30:38 GMT
    Accept-Ranges: bytes
    Server: nginx/1.27.4
    Last-Modified: Wed, 05 Nov 2025 02:00:27 GMT
    ETag: "690aafbb-118c"
    X-Cache: Hit from cloudfront
    Via: 1.1 7f01ac3c2b3b2aec2108ed414afd3146.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: xNVSFoyV7cUifsohF0SmUr1VAaAbbQ3cLW-vbvSDyut-WEUKRSRQ7w==
    Age: 44646
    
    Page title: ANTLIVE PHÁT SÓNG TRỰC TIẾP BÓNG ĐÁ FULL HD
    
    <!doctype html>
    <html lang="en" data-n-head="%7B%22lang%22:%7B%221%22:%22en%22%7D%7D">
      <head>
        <meta data-n-head="1" data-hid="charset" charset="utf-8"><meta data-n-head="1" data-hid="viewport" name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,minimal-ui,viewport-fit=cover,user-scalable=no"><meta data-n-head="1" data-hid="X-UA-Compatible" http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"><meta data-n-head="1" data-hid="Cross-Origin-Opener-Policy" http-equiv="Cross-Origin-Opener-Policy" content="allow-popups"><meta data-n-head="1" data-hid="renderer" name="renderer" content="webkit"><meta data-n-head="1" data-hid="referrer" name="referrer" content="origin"><meta data-n-head="1" data-hid="Robots" name="Robots" content="all"><meta data-n-head="1" data-hid="apple-mobile-web-app-capable" name="apple-mobile-web-app-capable" content="yes"><meta data-n-head="1" data-hid="browsermode" name="browsermode" content="application"><meta data-n-head="1" data-hid="cache-Control" http-equiv="cache-Control" content="private"><meta data-n-head="1" data-hid="apple-mobile-web-app-title" name="apple-mobile-web-app-title" content="ANTLIVE直播"><meta data-n-head="1" data-hid="apple-mobile-web-app-status-bar-style" name="apple-mobile-web-app-status-bar-style" content="default"><title>ANTLIVE PHÁT SÓNG TRỰC TIẾP BÓNG ĐÁ FULL HD</title><link data-n-head="1" data-hid="apple-touch-icon" rel="apple-touch-icon" href="./b02-f68899b4-bd80-419c-b60c-ad9b9bbf75c2/favicon.png"><link data-n-head="1" data-hid="apple-touch-icon-precomposed" rel="apple-touch-icon-precomposed" href="./b02-f68899b4-bd80-419c-b60c-ad9b9bbf75c2/favicon.png"><link data-n-head="1" data-hid="apple-touch-startup-image" rel="apple-touch-startup-image" sizes="320x460" href="./start_bg.png" media="screen and (max-device-width: 1024)"><link data-n-head="1" data-hid="icon" rel="icon" type="image/png" href="./b02-f68899b4-bd80-419c-b60c-ad9b9bbf75c2/favicon.png"><script data-n-head="1" data-hid="wasm_exec_tiny" src="/js/wasm_exec_tiny.js" type="text/javascript" charset="utf-8"></script><script data-n-head="1" data-hid="mobiletopc" id="native_script" src="/js/mobiletopc.js" type="text/javascript" charset="utf-8"></script><script data-n-head="1" data-hid="flexible" src="/js/flexible.js" type="text/javascript" charset="utf-8" ref="preconnect"></script><script data-n-head="1" data-hid="openinstall" src="https://web.cdn.openinstall.io/openinstall.js" type="text/javascript" charset="utf-8" defer></script><script data-n-head="1" data-hid="ulink" src="https://g.alicdn.com/jssdk/u-link/index.min.js" type="text/javascript" charset="utf-8" defer></script><script data-n-head="1" data-hid="AgoraRTC" src="/js/AgoraRTC_N-4.23.4.js" type="text/javascript" charset="utf-8" defer></script><script data-n-head="1" data-hid="google" src="https://accounts.google.com/gsi/client" type="text/javascript" charset="utf-8" defer></script><base href="/">
      <link href="/css/c53d629.css" rel="stylesheet"><link href="/css/2631855.css" rel="stylesheet"><link href="/css/e7af8f0.css" rel="stylesheet"><link href="/css/e762caa.css" rel="stylesheet"><link href="/css/9ffb1b6.css" rel="stylesheet"><link href="/css/0105374.css" rel="stylesheet"></head>
      <body>
        <div id="__nuxt"></div><script>window.__NUXT__={config:{_app:{basePath:"/",assetsPath:"/",cdnURL:null}}}</script>
      <script src="/7a04105.js"></script><script src="/bf6f35d.js"></script><script src="/752f4cf.js"></script><script src="/7e8f97b.js"></script><script src="/0d7b8c6.js"></script><script src="/5411ea1.js"></script><script src="/b891d6d.js"></script><script src="/cb80ba1.js"></script><script src="/8cd7b51.js"></script><script src="/588606b.js"></script><script src="/6c5602d.js"></script><script src="/236a93a.js"></script><script src="/f59ee7b.js"></script><script src="/c0bb412.js"></script><script src="/9e1d375.js"></script><script src="/1c7f7a6.js"></script><script src="/018dc98.js"></script><script src="/9d9a3d3.js"></script><script src="/efadc35.js"></script><script src="/13c76bf.js"></script><scri
    Found 2025-12-30 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · sonofacarpentertour.com

    2025-12-30 06:04

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 33527
    Connection: close
    Date: Tue, 30 Dec 2025 06:04:20 GMT
    Last-Modified: Mon, 29 Dec 2025 19:50:16 GMT
    ETag: "ad9c94a0c596b215ef204fdc6f3a0244"
    x-amz-server-side-encryption: AES256
    Accept-Ranges: bytes
    Server: AmazonS3
    X-Cache: Miss from cloudfront
    Via: 1.1 06659e009eac6940f260d2b396e0460c.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: F9IWZIUp_04rHAODvkkEi4_UfuZSv5oHV5y-nqm9Zd34hLOgEriibg==
    
    Page title: Son of a Carpenter Tour 2026: Jim Jefferies
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
        <title>Son of a Carpenter Tour 2026: Jim Jefferies</title>
        <meta name="description" content="Jim Jefferies brings Son of a Carpenter to stages worldwide with sharp new material and unfiltered storytelling. See tour dates and get tickets.">
        
        <link rel="alternate" href="https://sonofacarpentertour.com" hreflang="en">
        <link rel="alternate" href="https://sonofacarpentertour.com" hreflang="x-default">
        <meta name="last-updated" content="2025-12-29T19:48:35+00:00">
        <link rel="apple-touch-icon" sizes="57x57" href="./favicon.ico">
        <link rel="apple-touch-icon" sizes="60x60" href="./favicon.ico">
        <link rel="apple-touch-icon" sizes="72x72" href="./favicon.ico">
        <link rel="apple-touch-icon" sizes="76x76" href="./favicon.ico">
        <link rel="apple-touch-icon" sizes="114x114" href="./favicon.ico">
        <link rel="apple-touch-icon" sizes="120x120" href="./favicon.ico">
        <link rel="apple-touch-icon" sizes="144x144" href="./favicon.ico">
        <link rel="apple-touch-icon" sizes="152x152" href="./favicon.ico">
        <link rel="apple-touch-icon" sizes="180x180" href="./favicon.ico">
        <link rel="icon" type="image/png" sizes="512x512" href="./assets/images/favicon/web-app-manifest-512x512.png">
        <link rel="icon" type="image/png" sizes="192x192" href="./assets/images/favicon/web-app-manifest-192x192.png">
        <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon">
        <link rel="icon" href="./favicon.ico" type="image/x-icon">
        <link href="./assets/css/reset.css" rel="stylesheet">
        <link href="./assets/css/swiper-bundle.min.css" rel="stylesheet">
    
        <!-- added 13.12.2025 flatpickr -->
        <link href="./assets/css/flatpickr.min.css?ver=1" rel="stylesheet">
    
        <link href="./assets/css/styles.min.css?v=1.4" rel="stylesheet">
        <link rel="preconnect" href="https://fonts.googleapis.com">
        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
        <link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap" rel="stylesheet">
    </head>
    
    <body>
        <div class="app">
            <header class="header">
                <div class="menu-toggle">
    <span></span><span></span><span></span>
    </div>
    <a class="logo" href="https://sonofacarpentertour.com">Son of a Carpenter Tour</a>
                <div class="menu">
    <a class="tour-item" href="#dates">Tour Dates</a>
    <a class="tour-item" href="#gallery">Gallery</a>
    <a class="tour-item" href="#bio">Bio</a>
    <a class="tour-item" href="#faq">FAQ</a>
    <div class="lang" id="lang">
                                <span class="lang-item active">EN</span>
                                <div class="lang-submenu"></div>
                            </div>
    </div>
            </header>
            <main id="top">
                <div class="hero">
                    <div class="hero-overlay"> </div>
                    <div class="hero-img"><img src="./assets/images/main.jpg?v=20251229194835" alt="Jim Jefferies"></div>
                    <div class="hero-content">
                        <h1 class="h1">Son of a Carpenter Tour 2026</h1>
                        <p class="hero-text">Jim Jefferies Tour 2026</p>
                        <p class="hero-date">Jan 16, 2026 – Jun 27, 2026</p>
                        <div class="timer-pinned">
                            <div class="timer-pinned-content">
    <span>Next concert in</span>
                                <div class="f" id="timer2" data-date="2026-01-16T20:00:00">
                                    <div class="timer2-item" id="days2">0</div>
    <span class="timer2-text"> Day(s) </span>
                                    <div class="timer2-item" id="hours2">00</div>
    <span class="timer2-text">:</span>
                                    <div class="timer2-item" id="minutes2">00</div>
    <span class="timer2-text">:</span>
                                    <div class="timer2-item" id="seconds2">00</div
    Found 2025-12-30 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · sonofacarpentertour.com

    2025-12-30 06:04

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Tue, 30 Dec 2025 06:04:18 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://sonofacarpentertour.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 b24ae08ef06aba9fb6d6ddc32eb80c64.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: zaFV8OJipDEFe6lJ8QAFriE42Fm-e70UImiCnTHqwmBCBJYLNSS0SQ==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-30 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · tryluck.com

    2025-12-23 16:39

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 12233
    Connection: close
    Date: Mon, 15 Dec 2025 10:14:36 GMT
    Cache-Control: public, max-age=0, s-maxage=31536000
    Server: AmazonS3
    Accept-Ranges: bytes
    ETag: "8135d90807e804901c689b343c408e4c"
    Last-Modified: Mon, 15 Dec 2025 10:02:38 GMT
    X-Cache: Hit from cloudfront
    Via: 1.1 2cce65cc9ed94a08f98eec766e6667a8.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: xQHbIPLk-3fl6E2Rzg2Stt2iOQHkxSaVTozDq9fGlX34nles9iSdtg==
    Age: 714268
    
    Page title: Index
    
    <!DOCTYPE html><html lang="en"><head>
      <meta charset="utf-8">
      <!-- <meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no,shrink-to-fit=no"> -->
      <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
      <title>Index</title>
      <base href="/">
      <meta content="" name="description">
      <meta content="" name="keywords">
      <!-- Favicons -->
      <link rel="shortcut icon" type="image/jpg" href="assets/img/favicon.png">
      <!-- Google Fonts -->
      <link rel="preconnect" href="https://fonts.googleapis.com">
      <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
      <style type="text/css">@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVl2ZhZI2eCN5jzbjEETS9weq8-19-7DQk6YvNkeg.woff2) format('woff2');unicode-range:U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVl2ZhZI2eCN5jzbjEETS9weq8-19a7DQk6YvNkeg.woff2) format('woff2');unicode-range:U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVl2ZhZI2eCN5jzbjEETS9weq8-1967DQk6YvNkeg.woff2) format('woff2');unicode-range:U+1F00-1FFF;}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVl2ZhZI2eCN5jzbjEETS9weq8-19G7DQk6YvNkeg.woff2) format('woff2');unicode-range:U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVl2ZhZI2eCN5jzbjEETS9weq8-1927DQk6YvNkeg.woff2) format('woff2');unicode-range:U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVl2ZhZI2eCN5jzbjEETS9weq8-19y7DQk6YvNkeg.woff2) format('woff2');unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7DQk6YvM.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVl2ZhZI2eCN5jzbjEETS9weq8-19-7DQk6YvNkeg.woff2) format('woff2');unicode-range:U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVl2ZhZI2eCN5jzbjEETS9weq8-19a7DQk6YvNkeg.woff2) format('woff2');unicode-range:U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVl2ZhZI2eCN5jzbjEETS9weq8-1967DQk6YvNkeg.woff2) format('woff2');unicode-range:U+1F00-1FFF;}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v31/ieVl2ZhZI2eCN5jzbjEETS9weq8-19G7DQk6YvNkeg.woff2) format('woff2');unicode-range:U+0370-
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · tryluck.com

    2025-12-23 16:39

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Tue, 23 Dec 2025 16:39:04 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://tryluck.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 203ee6b98de7af3adc87c8746659929c.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: zrFHhG5mlilO33tIHKdE4tzvPqk0rov67C13fkVNrFonx2Bl8ofs3w==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · sportsbet.co.ke

    2025-12-23 10:21

    HTTP/1.1 403 Forbidden
    Server: CloudFront
    Date: Tue, 23 Dec 2025 10:21:18 GMT
    Content-Type: text/html
    Content-Length: 915
    Connection: close
    X-Cache: Error from cloudfront
    Via: 1.1 203ee6b98de7af3adc87c8746659929c.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: V9ba68uynuEK8fDCE5fIVOeRZTCGZfVCyNt2zHgOSYjMCS6DvS0nHw==
    
    Page title: ERROR: The request could not be satisfied
    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <HTML><HEAD><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
    <TITLE>ERROR: The request could not be satisfied</TITLE>
    </HEAD><BODY>
    <H1>403 ERROR</H1>
    <H2>The request could not be satisfied.</H2>
    <HR noshade size="1px">
    Bad request.
    We can't connect to the server for this app or website at this time. There might be too much traffic or a configuration error. Try again later, or contact the app or website owner.
    <BR clear="all">
    If you provide content to customers through CloudFront, you can find steps to troubleshoot and help prevent this error by reviewing the CloudFront documentation.
    <BR clear="all">
    <HR noshade size="1px">
    <PRE>
    Generated by cloudfront (CloudFront)
    Request ID: V9ba68uynuEK8fDCE5fIVOeRZTCGZfVCyNt2zHgOSYjMCS6DvS0nHw==
    </PRE>
    <ADDRESS>
    </ADDRESS>
    </BODY></HTML>
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · miyagi-jihan.jp

    2025-12-23 08:04

    HTTP/1.1 200 OK
    Content-Type: text/html; charset=UTF-8
    Transfer-Encoding: chunked
    Connection: close
    Server: nginx
    Date: Tue, 23 Dec 2025 08:04:55 GMT
    Link: <https://miyagi-jihan.jp/wp-json/>; rel="https://api.w.org/"
    X-Cache: Miss from cloudfront
    Via: 1.1 f353b9615396320dcfec689a26cf519e.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: 7I0e5bK5tk68mn8Xwjokg6tThEudiXJLQuTXUcazUDHpA-zAPFAcxA==
    
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · www.cdn.linxdev.net

    2025-12-23 05:05

    HTTP/1.1 403 Forbidden
    Content-Type: application/xml
    Transfer-Encoding: chunked
    Connection: close
    Server: AmazonS3
    Date: Tue, 23 Dec 2025 05:05:09 GMT
    X-Cache: Error from cloudfront
    Via: 1.1 7439c46706cf048af5a1a495725fffb2.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: gD3i7LM3cSWsB1PH5mYIKBSCqutOx4dvuXKlkAXVHKRKpqH21bN46A==
    
    
    <?xml version="1.0" encoding="UTF-8"?>
    <Error><Code>AccessDenied</Code><Message>Access Denied</Message></Error>
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · colinbusch.de

    2025-12-22 11:59

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 6206
    Connection: close
    Date: Sun, 20 Jul 2025 08:43:17 GMT
    Last-Modified: Sun, 20 Jul 2025 08:24:07 GMT
    ETag: "e544cccdcf8268caf9f75aece09db3cb"
    x-amz-server-side-encryption: AES256
    Cache-Control: public,max-age=0,s-maxage=31536000
    Accept-Ranges: bytes
    Server: AmazonS3
    X-Cache: Hit from cloudfront
    Via: 1.1 06659e009eac6940f260d2b396e0460c.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: JrGd8rLCilb-IqCj5kVw1TO-hgtyDfud-oC9RoUuJRmmlqBUaWxtrg==
    Age: 13403790
    
    Page title: Hey, I am Colin 👋
    
    <!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="modulepreload" href="/assets/manifest-570890fd.js"/><link rel="modulepreload" href="/assets/entry.client-B6IjAQc5.js"/><link rel="modulepreload" href="/assets/chunk-EF7DTUVF-CZCBXY5I.js"/><link rel="modulepreload" href="/assets/root-BAMUir5Q.js"/><link rel="modulepreload" href="/assets/index-BNySUAD8.js"/><link rel="modulepreload" href="/assets/Page-C70Ujjez.js"/><link rel="icon" type="image/svg+xml" href="/favicon.svg"/><title>Hey, I am Colin 👋</title><meta name="description" content="Welcome to my Website!"/><link rel="stylesheet" href="/assets/app-BZcfKNoK.css"/></head><body class="bg-bg text-normal font-mono mx-auto min-h-dvh col"><div class="flex-1 col"><div class="flex-1 col"><main class="flex flex-1 flex-col justify-center gap-4 p-8"><div class="flex flex-col self-center items-center"><h1 class="text-center">Hey, I am Colin</h1><div class="flex flex-1 flex-col mb-4"><h2 class="text-center mx-4">a developer who loves to bring<!-- --> <span class="font-medium">UX</span> and<!-- --> <span class="font-medium">DX</span> together 🤝</h2></div><h2 class="text-center">here is what you can do:</h2><div class="flex flex-col self-stretch mb-4"><a href="/help" data-discover="true"><div class="flex flex-row"><pre class="flex flex-1"><span class="hidden sm:block">type  </span>:<!-- -->help<span class="hidden sm:block">&lt;ENTER&gt;</span></pre><div class="w-56">if you are new!</div></div></a><a href="/about" data-discover="true"><div class="flex flex-row"><pre class="flex flex-1"><span class="hidden sm:block">type  </span>:<!-- -->about<span class="hidden sm:block">&lt;ENTER&gt;</span></pre><div class="w-56">to learn more about me</div></div></a><a href="/js-good" data-discover="true"><div class="flex flex-row"><pre class="flex flex-1"><span class="hidden sm:block">type  </span>:<!-- -->jsgood<span class="hidden sm:block">&lt;ENTER&gt;</span></pre><div class="w-56">to think about JS</div></div></a><a href="/kotlin2ts" data-discover="true"><div class="flex flex-row"><pre class="flex flex-1"><span class="hidden sm:block">type  </span>:<!-- -->k2ts<span class="hidden sm:block">&lt;ENTER&gt;</span></pre><div class="w-56">to convert kotlin to ts</div></div></a><a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ"><div class="flex flex-row"><pre class="flex flex-1"><span class="hidden sm:block">type  </span>:<!-- -->q<span class="hidden sm:block">&lt;ENTER&gt;</span></pre><div class="w-56">to exit</div></div></a></div><span class="text-center">Where you can find me</span><div class="flex flex-col self-stretch mb-12"><a href="https://github.com/buschco"><div class="flex flex-row"><pre class="flex flex-1"><span class="hidden sm:block">type  </span>:<!-- -->github<span class="hidden sm:block">&lt;ENTER&gt;</span></pre><div class="w-56">to go to my github</div></div></a></div></div></main></div><form class="h-6" data-discover="true" action="/" method="post"><input aria-label="vi command input" class="fixed bottom-0 left-0 right-0 bg-bg text-normal !outline-none" type="text" name="target"/></form><div class="bg-bg3 fixed bottom-0 left-0 right-0 max-h-6 flex flex-row justify-between"><div class="flex flex-row"><a class="uppercase text-bg3 font-bold px-2 bg-accent" href="/" data-discover="true">normal</a><div class="bg-bg2 text-muted px-2 hidden sm:block">main</div><div class="text-muted px-2 bg-bg2 sm:bg-transparent">index</div></div><div class="flex flex-row"><div class="text-muted px-2 hidden sm:block">html</div><div class="bg-bg2 text-muted px-2 hidden sm:block box-content text-right" style="width:28.898999999999997px">NaN<!-- -->%</div><div class="uppercase bg-accent text-bg3 font-bold px-2 box-content text-right" style="width:29px">NaN<!-- -->:<!-- -->NaN</div></div></div></div><script>((storageKey2, restoreKey) => {
        if (!window.history.state || !window.history.state.key) {
          let key = Math.random().toString(32).slice(2);
          window.history.replaceState({ key }, "");
        }
        try {
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · colinbusch.de

    2025-12-22 11:59

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Mon, 22 Dec 2025 11:59:45 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://colinbusch.de/
    X-Cache: Redirect from cloudfront
    Via: 1.1 7439c46706cf048af5a1a495725fffb2.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: kYcGw6W27bIXq4bLrVYQf6mxN7NV3B1krdCnEag28oqZbptOs1kLlw==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · www.yoonbitlaw.kr

    2025-12-22 11:19

    HTTP/1.1 200 OK
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Date: Mon, 22 Dec 2025 11:19:50 GMT
    Cache-Control: no-store, no-cache, must-revalidate
    Cache-Control: post-check=0, pre-check=0
    Pragma: no-cache
    Server: nginx
    Vary: Accept-Encoding
    P3P: CP="NOI CURa ADMa DEVa TAIa OUR DELa BUS IND PHY ONL UNI COM NAV INT DEM PRE"
    Set-Cookie: IMWEBVSSID=liif3gveshdnlqd56b7apftm17nf8eflbqj34tpp3tcosihdo509421immm3vhirj99ectu1sfukg2thkee4v661coo76m7iggg1ne1; path=/; SameSite=None; Secure=true; domain=yoonbitlaw.kr; HttpOnly
    Set-Cookie: al=KR; expires=Sun, 18-Oct-2026 11:19:50 GMT; Max-Age=25920000; path=/; domain=yoonbitlaw.kr; HttpOnly
    Expires: Thu, 19 Nov 1981 08:52:00 GMT
    X-Cache: Miss from cloudfront
    Via: 1.1 7439c46706cf048af5a1a495725fffb2.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: gXhXXSM968MpMm0HqSoFfq03x7iajJk-WqMUuKAsgjy5bfzst4RlGg==
    
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · antlive118.com

    2025-12-22 08:41

    HTTP/1.1 403 Forbidden
    Server: CloudFront
    Date: Mon, 22 Dec 2025 08:41:49 GMT
    Content-Length: 1266
    Connection: close
    Content-Type: text/html
    X-Cache: Error from cloudfront
    Via: 1.1 1bc764620f6db84c92e8682716d68eda.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: vCVW8ZAcckiEKoJbefOtAlMcaf_6ECauE0BuOSs2SLEFoQVDsI72lw==
    
    Page title: 403 - Access Restricted
    
    <!DOCTYPE html>
    <html lang="en">
    
    <head>
      <meta charset="UTF-8" />
      <meta http-equiv="X-UA-Compatible" content="IE=edge" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <link rel="stylesheet" href="https://sharedhtmlb01.s3.ap-northeast-1.amazonaws.com/style.css" />
    
      <style>
        a,
        button,
        input,
        select,
        h1,
        h2,
        h3,
        h4,
        h5,
        * {
          box-sizing: border-box;
          margin: 0;
          padding: 0;
          border: none;
          text-decoration: none;
          appearance: none;
          background: none;
    
          -webkit-font-smoothing: antialiased;
        }
      </style>
      <title>403 - Access Restricted</title>
    </head>
    
    <body>
      <div class="_61-frame">
        <div class="_62-text">
          403 - Access Restricted
          <br/>
          地区访问限制
        </div>
        <div class="_63-text">
          The region you are in has been banned from accessing our website,
          <br />
          we apologize for any inconvenience caused.
        </div>
    
        <div class="_63-text">
          你所在的地区被限制访问此网站。
          <br />
          为此给您带来不便,敬请谅解。
        </div>
    
        <img class="_65-rectangle" src="https://sharedhtmlb01.s3.ap-northeast-1.amazonaws.com/item.svg" />
      </div>
    </body>
    
    </html>
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · cps.m7rxp.com

    2025-12-22 05:08

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Mon, 22 Dec 2025 05:08:12 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://cps.m7rxp.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 2e4eab1a81a3a1decbe496056c9489da.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: acS6ZjPVIf6RqDlxANph0YZRX40eJB7v3eu5dgMoJ9RdWb3wX4FzNQ==
    Vary: Origin
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · cps.m7rxp.com

    2025-12-22 05:08

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 3
    Connection: close
    Date: Mon, 22 Dec 2025 05:08:14 GMT
    Last-Modified: Thu, 18 Dec 2025 09:06:02 GMT
    ETag: "eff5bc1ef8ec9d03e640fc4370f5eacd"
    x-amz-server-side-encryption: AES256
    Accept-Ranges: bytes
    Server: AmazonS3
    X-Cache: Miss from cloudfront
    Via: 1.1 2cce65cc9ed94a08f98eec766e6667a8.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: 7DptfVtzLQTQzL9JMNdJ8PLb0yoyXjhRDTPrkdyaBZJM9kD4jDdZiA==
    Vary: Origin
    
    
    ok
    
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · d37wzfznagc980.amplifyapp.com

    2025-12-22 04:57

    HTTP/1.1 404 Not Found
    Content-Length: 0
    Connection: close
    Date: Mon, 22 Dec 2025 04:57:27 GMT
    X-Cache: Error from cloudfront
    Via: 1.1 2d859daa66fde82c2a8685f4b0ee0dbe.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: FiD3w5N8OK6cVXtDqoh-dOTP6GSIZ9QxsDKrHmmdlvWACvxM-2wO9w==
    
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · d37wzfznagc980.amplifyapp.com

    2025-12-22 04:57

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Mon, 22 Dec 2025 04:57:26 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://d37wzfznagc980.amplifyapp.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 161bb6093ee10b11ad6a8a23b3138bee.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: jGtnTG8q7F6kwO1IIj6RRtzRwvHTaxsbEn3Eykqk_q2BUYVZMvnVGw==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · d2z5e3sec0g8c0.amplifyapp.com

    2025-12-22 04:22

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Mon, 22 Dec 2025 04:22:47 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://d2z5e3sec0g8c0.amplifyapp.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 32202134de03dbdd880d0da736c39c1c.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: aZzgVKiKMHVbaP8t06P1sPF6SlH2RZuOiXKfTaqgPR7WWLlqEEjeeg==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · d2z5e3sec0g8c0.amplifyapp.com

    2025-12-22 04:22

    HTTP/1.1 404 Not Found
    Content-Length: 0
    Connection: close
    Date: Mon, 22 Dec 2025 04:22:47 GMT
    X-Cache: Error from cloudfront
    Via: 1.1 d11dcb69d5fad0d00cf6f2c45df4bb94.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: Z9cNbWPMYsWeBbkNNoczWr6wq_i0W8spg98lJu2MQFvX-ldVN968Zw==
    
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · d2z6x7d2ut2wea.amplifyapp.com

    2025-12-22 03:55

    HTTP/1.1 404 Not Found
    Content-Length: 0
    Connection: close
    Date: Mon, 22 Dec 2025 03:55:48 GMT
    X-Cache: Error from cloudfront
    Via: 1.1 1ff9ce989cf7cac5366389a5419a6d38.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: VarI8wouNuyA4HLPWSPwbIWraTUqMhdZIEYwMRPwyibBt3WfE9gtfA==
    
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · d2z6x7d2ut2wea.amplifyapp.com

    2025-12-22 03:55

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Mon, 22 Dec 2025 03:55:48 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://d2z6x7d2ut2wea.amplifyapp.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 55c4ff21b8d72983466f815563acf5be.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: pBAdEVWfrMyvuE7TVtKuExbJOhQ_xDUMzlbjNWpWsl4tTH6-BJegAg==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · dzb2apyqjlkll.amplifyapp.com

    2025-12-22 03:30

    HTTP/1.1 404 Not Found
    Content-Length: 0
    Connection: close
    Date: Mon, 22 Dec 2025 03:30:33 GMT
    X-Cache: Error from cloudfront
    Via: 1.1 161bb6093ee10b11ad6a8a23b3138bee.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: Hq6ZSGkb5aIiaBVky7BQe9zXG7E5Ke-JOHqDdPM3eczofjUilHWbpw==
    
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · dzb2apyqjlkll.amplifyapp.com

    2025-12-22 03:30

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Mon, 22 Dec 2025 03:30:32 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://dzb2apyqjlkll.amplifyapp.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 2e4eab1a81a3a1decbe496056c9489da.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: 2NsuS3NyPCeE2JmuwA7hHh8re3v9BtJMb7dP_XrHK1WB5i3ypKeA8Q==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · www.30win34.com

    2025-12-22 03:22

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 111523
    Connection: close
    Date: Mon, 22 Dec 2025 03:22:19 GMT
    Cache-Control: s-maxage=600,public,max-age=0
    Last-Modified: Mon, 22 Dec 2025 02:39:56 GMT
    ETag: "20173bc9eeebc87407222cba5ae546f4"
    Server: AmazonS3
    X-Cache: Hit from cloudfront
    Via: 1.1 161bb6093ee10b11ad6a8a23b3138bee.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: sMUyAX5rhu1ovvmSQGwTGpojN5uv2s-_ox1Hs1I9aiW9t4F8oXIsGg==
    Vary: Origin
    
    Page title: 30win – Top Online Slot Games
    
    <!DOCTYPE html><html lang=en data-version="Sat Dec 20 2025 01:20:06 GMT+0000 (Coordinated Universal Time)" data-template-type=lobby data-request-id=54d9a5bbd1b32a07bdf7d867fe5cb5d3 data-render="Mon Dec 22 2025 02:39:54 GMT+0000 (Coordinated Universal Time)" data-render-init=v6.5.133 style=--skin__ID:2-3;--skin__accent_1:#04BE02;--skin__accent_1__toRgbString:4,190,2;--skin__accent_2:#EA4E3D;--skin__accent_2__toRgbString:234,78,61;--skin__accent_3:#FFAA09;--skin__accent_3__toRgbString:255,170,9;--skin__alt_border:#C7C7C7;--skin__alt_border__toRgbString:199,199,199;--skin__alt_lead:#E3E3E3;--skin__alt_lead__toRgbString:227,227,227;--skin__alt_neutral_1:#C7C7C7;--skin__alt_neutral_1__toRgbString:199,199,199;--skin__alt_neutral_2:#777777;--skin__alt_neutral_2__toRgbString:119,119,119;--skin__alt_primary:#FEB705;--skin__alt_primary__toRgbString:254,183,5;--skin__alt_text_primary:#000000;--skin__alt_text_primary__toRgbString:0,0,0;--skin__bg_1:#303030;--skin__bg_1__toRgbString:48,48,48;--skin__bg_2:#1C1C1C;--skin__bg_2__toRgbString:28,28,28;--skin__border:#505050;--skin__border__toRgbString:80,80,80;--skin__bs_topnav_bg:#1C1C1C;--skin__bs_topnav_bg__toRgbString:28,28,28;--skin__bs_zc_an1:#303030;--skin__bs_zc_an1__toRgbString:48,48,48;--skin__bs_zc_bg:#242424;--skin__bs_zc_bg__toRgbString:36,36,36;--skin__btmnav_active:#FEB705;--skin__btmnav_active__toRgbString:254,183,5;--skin__btmnav_def:#777777;--skin__btmnav_def__toRgbString:119,119,119;--skin__btn_color_1:#FEB705;--skin__btn_color_1__toRgbString:254,183,5;--skin__btn_color_2:#FEB705;--skin__btn_color_2__toRgbString:254,183,5;--skin__cards_text:#C7C7C7;--skin__cards_text__toRgbString:199,199,199;--skin__ddt_bg:#2B2B2B;--skin__ddt_bg__toRgbString:43,43,43;--skin__ddt_icon:#3A3A3A;--skin__ddt_icon__toRgbString:58,58,58;--skin__filter_active:#FEB705;--skin__filter_active__toRgbString:254,183,5;--skin__filter_bg:#303030;--skin__filter_bg__toRgbString:48,48,48;--skin__home_bg:#1C1C1C;--skin__home_bg__toRgbString:28,28,28;--skin__icon_1:#FEB705;--skin__icon_1__toRgbString:254,183,5;--skin__icon_tg_q:#C7C7C7;--skin__icon_tg_q__toRgbString:199,199,199;--skin__icon_tg_z:#C7C7C7;--skin__icon_tg_z__toRgbString:199,199,199;--skin__jackpot_text:#FFFFFF;--skin__jackpot_text__toRgbString:255,255,255;--skin__jdd_vip_bjc:#FFAA09;--skin__jdd_vip_bjc__toRgbString:255,170,9;--skin__kb_bg:#303030;--skin__kb_bg__toRgbString:48,48,48;--skin__label_accent3:#FFAA09;--skin__label_accent3__toRgbString:255,170,9;--skin__labeltext_accent3:#FFFFFF;--skin__labeltext_accent3__toRgbString:255,255,255;--skin__lead:#E3E3E3;--skin__lead__toRgbString:227,227,227;--skin__leftnav_active:#000000;--skin__leftnav_active__toRgbString:0,0,0;--skin__leftnav_def:#C7C7C7;--skin__leftnav_def__toRgbString:199,199,199;--skin__neutral_1:#C7C7C7;--skin__neutral_1__toRgbString:199,199,199;--skin__neutral_2:#777777;--skin__neutral_2__toRgbString:119,119,119;--skin__neutral_3:#777777;--skin__neutral_3__toRgbString:119,119,119;--skin__primary:#FEB705;--skin__primary__toRgbString:254,183,5;--skin__profile_icon_1:#FEB705;--skin__profile_icon_1__toRgbString:254,183,5;--skin__profile_icon_2:#FEB705;--skin__profile_icon_2__toRgbString:254,183,5;--skin__profile_icon_3:#FEB705;--skin__profile_icon_3__toRgbString:254,183,5;--skin__profile_icon_4:#FEB705;--skin__profile_icon_4__toRgbString:254,183,5;--skin__profile_toptext:#FFFFFF;--skin__profile_toptext__toRgbString:255,255,255;--skin__search_icon:#C7C7C7;--skin__search_icon__toRgbString:199,199,199;--skin__table_bg:#303030;--skin__table_bg__toRgbString:48,48,48;--skin__text_accent3:#FFFFFF;--skin__text_accent3__toRgbString:255,255,255;--skin__text_primary:#000000;--skin__text_primary__toRgbString:0,0,0;--skin__tg_accent_1:#BBDFC1;--skin__tg_accent_1__toRgbString:187,223,193;--skin__tg_accent_3:#FFE7B8;--skin__tg_accent_3__toRgbString:255,231,184;--skin__tg_primary:#FDF0D1;--skin__tg_primary__toRgbString:253,240,209;--skin__web_bs_yj_bg:#1C1C1C;--skin__web_bs_yj_bg__toRgbString:28,28,28;--skin__web_bs_zc_an2:#3A3A3A;--skin__web_bs_zc_an2__toRgbString:58,58,58;--skin__web_btmnav_db:#2424
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · www.30win34.com

    2025-12-22 03:22

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Mon, 22 Dec 2025 03:22:18 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://www.30win34.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 b6b8b152d22969c98f9f56610821c954.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: V-onXe9Y0sXWk3WN2vAAljXOb8ridgnNE2fFnEBjEsWb5muiwdQG6w==
    Vary: Origin
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · dev.gen-ai.storm-innovator.cloud

    2025-12-22 03:20

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Mon, 22 Dec 2025 03:20:42 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://dev.gen-ai.storm-innovator.cloud/
    X-Cache: Redirect from cloudfront
    Via: 1.1 2d859daa66fde82c2a8685f4b0ee0dbe.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: qKKStOaE4JAIK4XmzUWpEuKyaHYyee9UZiMGZrdztrqON6XCpKp23A==
    Vary: Origin
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · dev.gen-ai.storm-innovator.cloud

    2025-12-22 03:20

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 6702
    Connection: close
    Date: Mon, 22 Dec 2025 03:20:42 GMT
    Last-Modified: Thu, 20 Feb 2025 13:47:13 GMT
    ETag: "609bd08a3f22a5784f80bdac557dc006"
    x-amz-server-side-encryption: AES256
    Accept-Ranges: bytes
    Server: AmazonS3
    X-Cache: Error from cloudfront
    Via: 1.1 7f01ac3c2b3b2aec2108ed414afd3146.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: T4NMjZg5J8ZV4dXSoraxKoa3vORbSIMhilYFB9vNUSaRGgPWCQYIyA==
    Vary: Origin
    
    Page title: innovator-knowledge-chatbot
    
    <!DOCTYPE html><html  data-capo=""><head><meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>innovator-knowledge-chatbot</title>
    <link rel="stylesheet" href="/_nuxt/entry.BGrH-Jsy.css">
    <link rel="modulepreload" as="script" crossorigin href="/_nuxt/DYigVund.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/B3k8n8NL.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/C-xx0KpU.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/CJGhOB48.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/Du5p36QE.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/CTWc_qeO.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/BRq5aWQB.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/C5jqI4mz.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/C8lP33sJ.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/jySfa4Rp.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/BtedWDlU.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/E8aR-5lt.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/Br4n_TUL.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/C6pbE3Qp.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/D36aOGpY.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/CH3DhY7s.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/2eyiwKmS.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/l5AYFZoo.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/BzSBvhFA.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/BQ4jMO9d.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/DcD7DPaQ.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/C0pfRYt2.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/BSb23L9O.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/BFxzUNHq.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/BIURV-Yl.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/BxBMBQTl.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/Dlj69RPK.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/DYMMwjnd.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/5ijifTus.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/D5gOYdM7.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/DyTzNX0W.js">
    <link rel="prefetch" as="script" crossorigin href="/_nuxt/CfQYsIbq.js">
    <meta name="msapplication-TileColor" content="#ffffff">
    <meta name="theme-color" content="#171717" media="(prefers-color-scheme: dark)">
    <meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)">
    <link rel="mask-icon" color="#00a486" href="/safari-pinned-tab.svg">
    <script type="module" src="/_nuxt/DYigVund.js" crossorigin></script>
    <script id="unhead:payload" type="application/json">{"title":"innovator-knowledge-chatbot"}</script><script>"use strict";(()=>{const a=window,e=document.documentElement,c=window.localStorage,d=["dark","light"],n=c&&c.getItem&&c.getItem("nuxt-color-mode")||"system";let l=n==="system"?f():n;const i=e.getAttribute("data-color-mode-forced");i&&(l=i),r(l),a["__NUXT_COLOR_MODE__"]={preference:n,value:l,getColorScheme:f,addColorScheme:r,removeColorScheme:u};function r(o){const t=""+o+"",s="";e.classList?e.classList.add(t):e.className+=" "+t,s&&e.setAttribute("data-"+s,o)}function u(o){const t=""+o+"",s="";e.classList?e.classList.remove(t):e.className=e.className.replace(new RegExp(t,"g"),""),s&&e.removeAttribute("data-"+s)}function m(o){return a.matchMedia("(prefers-color-scheme"+o+")")}function f(){if(a.matchMedia&&m("").media!=="not all"){for(const o of d)if(m(":"+o).matches)return o}return"light"}})();</script></head><body><div id="__nuxt"><div class="logo">
      <img src="/logo.svg" alt="Reply" />
    </div>
    <style>
      .logo {
        position: absolute;
        width: 150px;
        height: 150px;
        top: 50%;
        left: 50%;
        margin: -75px 0 0 -75px;
      }
    </style>
    </div><div id="teleports"></div><
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · d1x4r9ucg9kdr4.amplifyapp.com

    2025-12-22 03:11

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Mon, 22 Dec 2025 03:11:45 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://d1x4r9ucg9kdr4.amplifyapp.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 fde6fada26b7302661010feaa587bdb8.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: 95Q_uIvMtH5aZVU_PLsGQB8UZPD3yYzFkyekzExq70gce5-1xqKkWw==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · d1x4r9ucg9kdr4.amplifyapp.com

    2025-12-22 03:11

    HTTP/1.1 404 Not Found
    Content-Length: 0
    Connection: close
    Date: Mon, 22 Dec 2025 03:11:45 GMT
    X-Cache: Error from cloudfront
    Via: 1.1 4f762327597c2647c5dac5e573d910fa.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: HwqXqauhZysPcCvTikUs6pdRpZ86NZ-XSWh-4wLT9xb7X62segFU-A==
    
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · streem.watch

    2025-12-22 02:43

    HTTP/1.1 403 Forbidden
    Content-Type: text/html
    Content-Length: 43
    Connection: close
    Date: Tue, 25 Nov 2025 23:20:41 GMT
    Last-Modified: Wed, 11 Oct 2023 15:14:31 GMT
    ETag: "567a05fca568fd3b4093a4e97726c847"
    x-amz-server-side-encryption: AES256
    Cache-Control: max-age=2592000
    Accept-Ranges: bytes
    Server: AmazonS3
    X-Cache: Error from cloudfront
    Via: 1.1 7439c46706cf048af5a1a495725fffb2.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: bEwKmYx6k2coWBdsPeHkuxQ59-aXW7ewKsK1ss-LY9LUmFDX79_5fw==
    Age: 2258599
    
    
    <html>
    <body>
    <!-- 403 -->
    </body>
    </html>
    
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · streem.watch

    2025-12-22 02:43

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Mon, 22 Dec 2025 02:43:58 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://streem.watch/
    X-Cache: Redirect from cloudfront
    Via: 1.1 203ee6b98de7af3adc87c8746659929c.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: aYzTiqWfrHx1uRMQUAqnCtGrbPe4RddX817oZnqigEDjoZGU9sV4FA==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · sportsbet.ke

    2025-12-22 00:47

    HTTP/1.1 400 Bad Request
    Server: CloudFront
    Date: Mon, 22 Dec 2025 00:47:32 GMT
    Content-Type: text/html
    Content-Length: 915
    Connection: close
    X-Cache: Error from cloudfront
    Via: 1.1 2e5530cd574fa6a27f079027dd7a281a.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: daI5uvaBvsCsJkh8JDWueTyaxz87tDmlWsZdVESqWvlVXV5c23mwJg==
    
    Page title: ERROR: The request could not be satisfied
    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <HTML><HEAD><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
    <TITLE>ERROR: The request could not be satisfied</TITLE>
    </HEAD><BODY>
    <H1>400 ERROR</H1>
    <H2>The request could not be satisfied.</H2>
    <HR noshade size="1px">
    Bad request.
    We can't connect to the server for this app or website at this time. There might be too much traffic or a configuration error. Try again later, or contact the app or website owner.
    <BR clear="all">
    If you provide content to customers through CloudFront, you can find steps to troubleshoot and help prevent this error by reviewing the CloudFront documentation.
    <BR clear="all">
    <HR noshade size="1px">
    <PRE>
    Generated by cloudfront (CloudFront)
    Request ID: daI5uvaBvsCsJkh8JDWueTyaxz87tDmlWsZdVESqWvlVXV5c23mwJg==
    </PRE>
    <ADDRESS>
    </ADDRESS>
    </BODY></HTML>
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · sportsbet.ke

    2025-12-22 00:47

    HTTP/1.1 403 Forbidden
    Server: CloudFront
    Date: Mon, 22 Dec 2025 00:47:32 GMT
    Content-Type: text/html
    Content-Length: 915
    Connection: close
    X-Cache: Error from cloudfront
    Via: 1.1 52dfbfe5ed6eea481ae3cb6b0a8eec38.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: hnznu91YkNGH0q7kpryCwaW6vXF0QffjOlGvdQ-2CY4oIOhsEhxqjA==
    
    Page title: ERROR: The request could not be satisfied
    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <HTML><HEAD><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
    <TITLE>ERROR: The request could not be satisfied</TITLE>
    </HEAD><BODY>
    <H1>403 ERROR</H1>
    <H2>The request could not be satisfied.</H2>
    <HR noshade size="1px">
    Bad request.
    We can't connect to the server for this app or website at this time. There might be too much traffic or a configuration error. Try again later, or contact the app or website owner.
    <BR clear="all">
    If you provide content to customers through CloudFront, you can find steps to troubleshoot and help prevent this error by reviewing the CloudFront documentation.
    <BR clear="all">
    <HR noshade size="1px">
    <PRE>
    Generated by cloudfront (CloudFront)
    Request ID: hnznu91YkNGH0q7kpryCwaW6vXF0QffjOlGvdQ-2CY4oIOhsEhxqjA==
    </PRE>
    <ADDRESS>
    </ADDRESS>
    </BODY></HTML>
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · quickunitconverters.com

    2025-12-21 17:55

    HTTP/1.1 404 Not Found
    Content-Type: text/html
    Content-Length: 10517
    Connection: close
    Date: Sun, 21 Dec 2025 17:55:04 GMT
    Last-Modified: Mon, 15 Dec 2025 01:54:44 GMT
    ETag: "76987948e2863c5751fc333fafb54cb5"
    x-amz-server-side-encryption: AES256
    Accept-Ranges: bytes
    Server: AmazonS3
    X-Cache: Error from cloudfront
    Via: 1.1 53fd5912708d75e6ec2b16a58625cb1e.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: YB3K1RJo7C9Az3P1wiT5EMVP2hFAa7DPeLmVeFYTTWYAqcmx26S4sA==
    
    Page title: Page Not Found | Quick Unit Converters
    
    <!DOCTYPE html><html lang="en"> <head><meta charset="UTF-8"><!-- Google tag (gtag.js) --><script async src="https://www.googletagmanager.com/gtag/js?id=G-RQK17PZJFG"></script><script>
        window.dataLayer = window.dataLayer || [];
        function gtag(){dataLayer.push(arguments);}
        gtag('js', new Date());
        gtag('config', 'G-RQK17PZJFG');
      </script><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="theme-color" content="#3b82f6"><meta name="apple-mobile-web-app-capable" content="yes"><meta name="apple-mobile-web-app-status-bar-style" content="default"><meta name="apple-mobile-web-app-title" content="Unit Converter"><title>Page Not Found | Quick Unit Converters</title><link rel="canonical" href="https://quickunitconverters.com/404/"><link rel="manifest" href="/manifest.json"><link rel="apple-touch-icon" href="/images/icons/icon.svg"><link rel="stylesheet" href="/styles/main.css"><link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet"><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"><meta name="description" content="The page you are looking for could not be found."><meta property="og:title" content="Page Not Found | Quick Unit Converters"><meta property="og:description" content="The page you are looking for could not be found."><meta property="og:image" content="https://quickunitconverters.com/images/hero.jpg"><meta property="og:url" content="https://quickunitconverters.com/404/"><meta property="og:type" content="website"><meta property="og:site_name" content="Quick Unit Converters"><meta name="twitter:card" content="summary_large_image"><meta name="twitter:title" content="Page Not Found | Quick Unit Converters"><meta name="twitter:description" content="The page you are looking for could not be found."><meta name="twitter:image" content="https://quickunitconverters.com/images/hero.jpg"><link rel="icon" type="image/svg+xml" href="/images/icons/icon.svg"><!-- Alternate language links for SEO --><link rel="alternate" hreflang="en" href="https://quickunitconverters.com/404/"><link rel="alternate" hreflang="es" href="https://quickunitconverters.com/es/404/"><link rel="alternate" hreflang="zh" href="https://quickunitconverters.com/zh/404/"><link rel="alternate" hreflang="fr" href="https://quickunitconverters.com/fr/404/"><link rel="alternate" hreflang="de" href="https://quickunitconverters.com/de/404/"><link rel="alternate" hreflang="x-default" href="https://quickunitconverters.com/404/"><style>.error-page[data-astro-cid-zetdm5md]{min-height:60vh;display:flex;align-items:center;justify-content:center;padding:2rem 0}.error-content[data-astro-cid-zetdm5md]{text-align:center;max-width:600px;margin:0 auto}.error-icon[data-astro-cid-zetdm5md]{font-size:4rem;color:var(--primary-color, #3b82f6);margin-bottom:1rem}.error-content[data-astro-cid-zetdm5md] h1[data-astro-cid-zetdm5md]{font-size:6rem;font-weight:700;color:var(--primary-color, #3b82f6);margin:0;line-height:1}.error-content[data-astro-cid-zetdm5md] h2[data-astro-cid-zetdm5md]{font-size:1.5rem;margin:.5rem 0 1rem;color:var(--text-color, #1f2937)}.error-content[data-astro-cid-zetdm5md] p[data-astro-cid-zetdm5md]{color:var(--text-secondary, #6b7280);margin-bottom:2rem}.error-actions[data-astro-cid-zetdm5md]{margin-bottom:3rem}.btn-primary[data-astro-cid-zetdm5md]{display:inline-flex;align-items:center;gap:.5rem;background:var(--primary-color, #3b82f6);color:#fff;padding:.75rem 1.5rem;border-radius:.5rem;text-decoration:none;font-weight:500;transition:background-color .2s}.btn-primary[data-astro-cid-zetdm5md]:hover{background:var(--primary-hover, #2563eb)}.popular-converters[data-astro-cid-zetdm5md] h3[data-astro-cid-zetdm5md]{font-size:1rem;color:var(--text-secondary, #6b7280);margin-bottom:1rem}.converter-links[data-astro-cid-zetdm5md]{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center}.converter-link[da
    Found 2025-12-21 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · quickunitconverters.com

    2025-12-21 17:55

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Sun, 21 Dec 2025 17:55:02 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://quickunitconverters.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 b6b8b152d22969c98f9f56610821c954.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: 2TAl6iHfYqAuSfY_6U_WjuHkxzUlBIWZnfv9DHps8UzUD0u5ALOpNw==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-21 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · budra.date

    2025-12-20 19:04

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Sat, 20 Dec 2025 19:04:18 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://budra.date/
    X-Cache: Redirect from cloudfront
    Via: 1.1 06659e009eac6940f260d2b396e0460c.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: vuG94PrrkvbV7PUoBVEbVku1MSbsIvoPBFFNF_eqNifL48Kvi_eU5A==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-20 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · budra.date

    2025-12-20 19:04

    HTTP/1.1 200 OK
    Content-Type: text/plain; charset=utf-8
    Content-Length: 2
    Connection: close
    Date: Sat, 20 Dec 2025 19:04:17 GMT
    CF-RAY: 9b116797cac6cee2-MXP
    Server: cloudflare
    origin-agent-cluster: ?1
    referrer-policy: no-referrer
    strict-transport-security: max-age=31536000; includeSubDomains; preload
    x-content-type-options: nosniff
    x-dns-prefetch-control: off
    x-download-options: noopen
    x-frame-options: SAMEORIGIN
    x-permitted-cross-domain-policies: none
    x-xss-protection: 0
    access-control-allow-methods: GET, POST, OPTIONS
    access-control-allow-headers: Origin, Content-Type, Authorization, Product-Code
    access-control-allow-credentials: true
    ETag: W/"2-nOO9QiTIwXgNtWtBJezz8kv3SLc"
    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=bjLJGyknZ%2BDv7LkaliE6BtjFr8iBmWtldEPF2AIQQt2ympwf8zXmHcGv6Oxdd9N364WY0xf%2BVL67u4SkfzQcqNQcyRfW2tSzPLyP"}]}
    X-Cache: Miss from cloudfront
    Via: 1.1 3fc67c60d4a1440649d83c01918a9054.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: uygEk2kRJCaAe0GRC9Kqh9jsNymii3Fe0tlCealisodURLdQqgTuQA==
    
    
    OK
    Found 2025-12-20 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · miyagi-jihan.jp

    2025-12-20 18:20

    HTTP/1.1 200 OK
    Content-Type: text/html; charset=UTF-8
    Transfer-Encoding: chunked
    Connection: close
    Server: nginx
    Date: Sat, 20 Dec 2025 18:20:52 GMT
    Link: <https://miyagi-jihan.jp/wp-json/>; rel="https://api.w.org/"
    X-Cache: Miss from cloudfront
    Via: 1.1 32202134de03dbdd880d0da736c39c1c.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: 2vv-7HlavbVg4jtDlCgHJ-A52Lev5ID1JVZ_jWNr1ibWjscuOI_ezw==
    
    Found 2025-12-20 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · www.cdn.linxdev.net

    2025-12-20 15:38

    HTTP/1.1 403 Forbidden
    Content-Type: application/xml
    Transfer-Encoding: chunked
    Connection: close
    Server: AmazonS3
    Date: Sat, 20 Dec 2025 15:38:24 GMT
    X-Cache: Error from cloudfront
    Via: 1.1 4f762327597c2647c5dac5e573d910fa.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: Gjcu1xMtN-Tyo9zxl5JODsV1sk1mUKmKkhvUm2IT1ohp5sALOtZhyw==
    
    
    <?xml version="1.0" encoding="UTF-8"?>
    <Error><Code>AccessDenied</Code><Message>Access Denied</Message></Error>
    Found 2025-12-20 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · antlive118.com

    2025-12-20 12:19

    HTTP/1.1 403 Forbidden
    Server: CloudFront
    Date: Sat, 20 Dec 2025 12:19:55 GMT
    Content-Length: 1266
    Connection: close
    Content-Type: text/html
    X-Cache: Error from cloudfront
    Via: 1.1 203ee6b98de7af3adc87c8746659929c.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: a-hxD3TEgzGTWC6DKK5kjVFUdyjHsPoeuJEQxSe9gh8QkR9Ut6X7Wg==
    
    Page title: 403 - Access Restricted
    
    <!DOCTYPE html>
    <html lang="en">
    
    <head>
      <meta charset="UTF-8" />
      <meta http-equiv="X-UA-Compatible" content="IE=edge" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <link rel="stylesheet" href="https://sharedhtmlb01.s3.ap-northeast-1.amazonaws.com/style.css" />
    
      <style>
        a,
        button,
        input,
        select,
        h1,
        h2,
        h3,
        h4,
        h5,
        * {
          box-sizing: border-box;
          margin: 0;
          padding: 0;
          border: none;
          text-decoration: none;
          appearance: none;
          background: none;
    
          -webkit-font-smoothing: antialiased;
        }
      </style>
      <title>403 - Access Restricted</title>
    </head>
    
    <body>
      <div class="_61-frame">
        <div class="_62-text">
          403 - Access Restricted
          <br/>
          地区访问限制
        </div>
        <div class="_63-text">
          The region you are in has been banned from accessing our website,
          <br />
          we apologize for any inconvenience caused.
        </div>
    
        <div class="_63-text">
          你所在的地区被限制访问此网站。
          <br />
          为此给您带来不便,敬请谅解。
        </div>
    
        <img class="_65-rectangle" src="https://sharedhtmlb01.s3.ap-northeast-1.amazonaws.com/item.svg" />
      </div>
    </body>
    
    </html>
    Found 2025-12-20 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · snapfundnow.com

    2025-12-19 22:50

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 228415
    Connection: close
    Date: Thu, 18 Dec 2025 23:12:05 GMT
    Last-Modified: Mon, 15 Dec 2025 11:15:34 GMT
    ETag: "298102bce7506c521fcdc5d51e29638e"
    Server: AmazonS3
    X-Cache: Hit from cloudfront
    Via: 1.1 df11b13b779c62601ca4cd4d2bb0ce18.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: uUbbVDCSQV10jSuU21YLyXZN1u_k7KpCl3jV4w0Z0QYnSEQ5ykmEEg==
    Age: 85087
    
    Page title: snapfundnow.com  - Personal Loans (Official Site)
    
    <!doctype html>
    <html lang="en">
    <head>
      <title>snapfundnow.com  - Personal Loans (Official Site)</title>
      <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <meta name="description"
          content="Personal Loans · $500 – $5,000 · Available 24/7 · Easy Online Form · Go to snapfundnow.com  · Lender-Approval in Minutes · Cash As Soon As Tomorrow · All Credit Types Welcome"/>
    <meta name="lm-data-content" content="c291cmNlSWQ6NjM1NzcsIGNhbXBhaWduSWQ6Mjg1NTYzLCBkYXRlOjA2LzI1LzIwMjUgMDc6NTE6NTU=">
    
    <link
      rel="icon"
      type="image/png"
      href="./images/favicons/favicon-96x96.png"
      sizes="96x96"
    />
    <link rel="icon" type="image/svg+xml" href="./images/favicons/favicon.svg" />
    <link rel="shortcut icon" href="./images/favicons/favicon.ico" />
    <link
      rel="apple-touch-icon"
      sizes="180x180"
      href="./images/favicons/apple-touch-icon.png"
    />
    <link rel="manifest" href="./images/favicons/manifest.json" />
    
    
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700;800&display=swap" rel="stylesheet">
    
    
      <link rel="stylesheet" href="./css/libs/swiper-bundle.min.css" />
    
    
    <link rel="stylesheet" href="./css/index.css">
    
    </head>
    <body
      class="page page--index"
    >
    <img src="https://a.cnsmrvrfy.com:443/content?id=8f4b397b5de445a8981a7c50fe6dc4b8" alt="" width="0" height="0" style="position: absolute" />
    
    <div class="page-wrapper">
      <header class="header">
      <div class="container">
        <div class="header__content">
          <a href="./index.html" class="logo" title="snapfundnow.com ">
            <span class="logo__txt">snapfundnow.com </span>
          </a>
          <div class="header__navigation">
            <nav class="nav  nav--header">
      <ul class="nav__list  nav__list--header">
        <li class="nav__item  nav__item--header">
          <a href="./AboutUs.html" class="nav__link  nav__link--header">About Us</a>
        </li>
        <li class="nav__item  nav__item--header">
          <a href="./Questions.html" class="nav__link  nav__link--header">FAQ</a>
        </li>
      </ul>
    </nav>
    
          </div>
          <p class="header__caption">Personal Loans from $200–$5,000</p>
          
            <a href="./Form.html"
               class="header__btn  btn  btn--header"
               data-jsw-scroll-to-form
            >
              Get Started
            </a>
          
        </div>
      </div>
    </header>
    
    
      
      <main class="main-content">
        <section class="entry">
      <div class="container">
        <div class="entry__content">
          <p class="entry__caption">
            Get your loan deposited directly into your bank account
          </p>
          <div class="entry__form">
            
    
    
    
    <div class="main-form">
    <div
          id="widget-container"
          data-affiliate-id="275ffbdd-6a32-452d-bdc5-f871d49d7f95"
          data-exclude-initial-forms="true"
    ></div>
    <script type="module" src="https://widget-js-23i.pages.dev/widget.js"></script>
    </div>
    
          </div>
          <h1 class="entry__title">
            Get a&nbsp;Loan Today
            <span class="entry__title-small">for a&nbsp;Better Tomorrow</span>
          </h1>
          <div class="entry__loan-steps-icons">
            <section class="loan-steps">
      <div class="container">
        <ul class="loan-steps__list">
          
            <li class="loan-steps__item">
              <i class="icon  icon--loan-steps-1  loan-steps__icon">
                <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 74 74">
      <circle class="loan-steps__icon-2" cx="37" cy="37" r="37" fill="#19A4C2"/>
      <path
        class="loan-steps__icon-1"
        d="m42.947 22.293-5.54 5.54 8.76 8.76 5.54-5.54-8.76-8.76ZM54.108 28.647c1.126-1.126 1.126-2.987 0-4.162l-4.603-4.604c-.588-.587-1.323-.881-2.057-.881-.735 0-1.518.294-2.057.881l-1.714 1.714 8.766 8.766 1.665-1.714Zm-7.395-7.394a.997.997 0 0 1 .686-.294c.147 0 .44.049.685.294l4.604 4.603a.947.947 0 0 1 0 1.37l-.343.344-5.
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · snapfundnow.com

    2025-12-19 22:50

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Fri, 19 Dec 2025 22:50:10 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://snapfundnow.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 1e882280b9c5d046c63d8cd0c1faf9c0.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: aHGtsduTY0Hr6mRqQBqKVB-bbMGAQFN9gTepGRh2niuH7rkz0xDXGA==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · sportbet.co.ke

    2025-12-19 16:52

    HTTP/1.1 403 Forbidden
    Server: CloudFront
    Date: Fri, 19 Dec 2025 16:52:21 GMT
    Content-Type: text/html
    Content-Length: 915
    Connection: close
    X-Cache: Error from cloudfront
    Via: 1.1 d7b95fc49388e3b88d8d8ce14a277aac.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: 3G23hMo3xYkO4w8d-IjPVSaWr9l6Wbi7Q9Q6vER4dmMpqaElVvJAtA==
    
    Page title: ERROR: The request could not be satisfied
    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <HTML><HEAD><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
    <TITLE>ERROR: The request could not be satisfied</TITLE>
    </HEAD><BODY>
    <H1>403 ERROR</H1>
    <H2>The request could not be satisfied.</H2>
    <HR noshade size="1px">
    Bad request.
    We can't connect to the server for this app or website at this time. There might be too much traffic or a configuration error. Try again later, or contact the app or website owner.
    <BR clear="all">
    If you provide content to customers through CloudFront, you can find steps to troubleshoot and help prevent this error by reviewing the CloudFront documentation.
    <BR clear="all">
    <HR noshade size="1px">
    <PRE>
    Generated by cloudfront (CloudFront)
    Request ID: 3G23hMo3xYkO4w8d-IjPVSaWr9l6Wbi7Q9Q6vER4dmMpqaElVvJAtA==
    </PRE>
    <ADDRESS>
    </ADDRESS>
    </BODY></HTML>
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · sportbet.co.ke

    2025-12-19 16:52

    HTTP/1.1 400 Bad Request
    Server: CloudFront
    Date: Fri, 19 Dec 2025 16:52:21 GMT
    Content-Type: text/html
    Content-Length: 915
    Connection: close
    X-Cache: Error from cloudfront
    Via: 1.1 8027798dc40af04392a940303e0fc516.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: qfcKIcPikmMb8pJHXbyvUKXZxnha4QWfjmihjpu0KdnTQHWOAfHh6A==
    
    Page title: ERROR: The request could not be satisfied
    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <HTML><HEAD><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
    <TITLE>ERROR: The request could not be satisfied</TITLE>
    </HEAD><BODY>
    <H1>400 ERROR</H1>
    <H2>The request could not be satisfied.</H2>
    <HR noshade size="1px">
    Bad request.
    We can't connect to the server for this app or website at this time. There might be too much traffic or a configuration error. Try again later, or contact the app or website owner.
    <BR clear="all">
    If you provide content to customers through CloudFront, you can find steps to troubleshoot and help prevent this error by reviewing the CloudFront documentation.
    <BR clear="all">
    <HR noshade size="1px">
    <PRE>
    Generated by cloudfront (CloudFront)
    Request ID: qfcKIcPikmMb8pJHXbyvUKXZxnha4QWfjmihjpu0KdnTQHWOAfHh6A==
    </PRE>
    <ADDRESS>
    </ADDRESS>
    </BODY></HTML>
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · 11ixplay.club

    2025-12-19 16:05

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Fri, 19 Dec 2025 16:05:41 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://11ixplay.club/
    X-Cache: Redirect from cloudfront
    Via: 1.1 2696c49ebf3abec704c6af790acf6778.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: DxoS4wbGkIYL-Fod3oFInlqPCNhEa6u24saRVEQ7pRa6KGVUOLnnyw==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · 11ixplay.club

    2025-12-19 16:05

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 12056
    Connection: close
    Date: Mon, 15 Dec 2025 12:42:57 GMT
    Cache-Control: public, max-age=0, s-maxage=31536000
    Server: AmazonS3
    Accept-Ranges: bytes
    ETag: "09b4290d7ce2c91bd2d0c8dbc9708cd0"
    Last-Modified: Mon, 15 Dec 2025 10:27:11 GMT
    X-Cache: Hit from cloudfront
    Via: 1.1 df11b13b779c62601ca4cd4d2bb0ce18.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: pHqpS00zECC449fw_XW2HcBqfLCuuko8UcYop8rmDfyBYQrJaN5VmQ==
    Age: 357765
    
    Page title: TigerExch - Cricket | Football | Tennis | Live Casino
    
    <!DOCTYPE html><html lang="en"><head>
      <meta charset="utf-8">
      <meta content="width=device-width, initial-scale=1.0" name="viewport">
      <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, shrink-to-fit=no">
    
      <base href="/">
      <title>TigerExch - Cricket | Football | Tennis | Live Casino</title>
      <meta content="" name="description">
      <meta content="" name="keywords">
    
      <!-- Favicons -->
      <link href="assets/img/favicon.ico" rel="icon">
    
      <!-- Google Fonts -->
      <style type="text/css">@font-face{font-family:'Lato';font-style:italic;font-weight:100;font-display:swap;src:url(https://fonts.gstatic.com/s/lato/v25/S6u-w4BMUTPHjxsIPx-mPCLC79U11vU.woff2) format('woff2');unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}@font-face{font-family:'Lato';font-style:italic;font-weight:100;font-display:swap;src:url(https://fonts.gstatic.com/s/lato/v25/S6u-w4BMUTPHjxsIPx-oPCLC79U1.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}@font-face{font-family:'Lato';font-style:italic;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/lato/v25/S6u_w4BMUTPHjxsI9w2_FQftx9897sxZ.woff2) format('woff2');unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}@font-face{font-family:'Lato';font-style:italic;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/lato/v25/S6u_w4BMUTPHjxsI9w2_Gwftx9897g.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}@font-face{font-family:'Lato';font-style:italic;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/lato/v25/S6u8w4BMUTPHjxsAUi-qNiXg7eU0.woff2) format('woff2');unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}@font-face{font-family:'Lato';font-style:italic;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/lato/v25/S6u8w4BMUTPHjxsAXC-qNiXg7Q.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}@font-face{font-family:'Lato';font-style:italic;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/lato/v25/S6u_w4BMUTPHjxsI5wq_FQftx9897sxZ.woff2) format('woff2');unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}@font-face{font-family:'Lato';font-style:italic;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/lato/v25/S6u_w4BMUTPHjxsI5wq_Gwftx9897g.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}@font-face{font-family:'Lato';font-style:italic;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/lato/v25/S6u_w4BMUTPHjxsI3wi_FQftx9897sxZ.woff2) format('woff2');unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}@font-face{font-family:'Lato';font-style:italic;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/lato/v
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · www.pulsevisionsessions.com

    2025-12-19 13:19

    HTTP/1.1 200 OK
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Date: Fri, 19 Dec 2025 13:19:59 GMT
    Cache-Control: no-store, no-cache, must-revalidate
    Cache-Control: post-check=0, pre-check=0
    Pragma: no-cache
    Server: nginx
    Vary: Accept-Encoding
    P3P: CP="NOI CURa ADMa DEVa TAIa OUR DELa BUS IND PHY ONL UNI COM NAV INT DEM PRE"
    Set-Cookie: IMWEBVSSID=e1is6oirosh3fn4anoc7kaod5p4j61jnceupm4mtj6mkdt3g4ue8m6rdh54jp126sfcubt9d3kib0o5p7p91bfgnp2p9dlig2jqis40; path=/; domain=pulsevisionsessions.com; HttpOnly
    Set-Cookie: al=KR; expires=Thu, 15-Oct-2026 13:19:59 GMT; Max-Age=25920000; path=/; domain=pulsevisionsessions.com; HttpOnly
    Expires: Thu, 19 Nov 1981 08:52:00 GMT
    X-Cache: Miss from cloudfront
    Via: 1.1 2e4eab1a81a3a1decbe496056c9489da.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: ormhO1GBVv-UjPvIYlkR4bZYDsrIh4GJANXHFfzOazlxWMrwK7WKtw==
    
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · www.pulsevisionsessions.com

    2025-12-19 13:19

    HTTP/1.1 200 OK
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Date: Fri, 19 Dec 2025 13:19:59 GMT
    Cache-Control: no-store, no-cache, must-revalidate
    Cache-Control: post-check=0, pre-check=0
    Pragma: no-cache
    Server: nginx
    Vary: Accept-Encoding
    P3P: CP="NOI CURa ADMa DEVa TAIa OUR DELa BUS IND PHY ONL UNI COM NAV INT DEM PRE"
    Set-Cookie: IMWEBVSSID=qj4up9q6cjbordog4qeoc0oo94boljj2j6v8ljlp9r24c7p7cb70aej1fjbn1tjd13qc85ptvc15n6m1akjva1pn5m61j36ldq7fdd2; path=/; SameSite=None; Secure=true; domain=pulsevisionsessions.com; HttpOnly
    Set-Cookie: al=KR; expires=Thu, 15-Oct-2026 13:19:58 GMT; Max-Age=25920000; path=/; domain=pulsevisionsessions.com; HttpOnly
    Expires: Thu, 19 Nov 1981 08:52:00 GMT
    X-Cache: Miss from cloudfront
    Via: 1.1 611ca6d7a586f9a7ac13f280c5d6da36.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: SQ9dXbanhhczxQtoVigu6m7MbH9Nm8f9BD94C1_eoDkdRw_x2x-7zg==
    
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · www.kiefer-neu.jp

    2025-12-19 12:37

    HTTP/1.1 403 Forbidden
    Server: CloudFront
    Date: Fri, 19 Dec 2025 12:37:44 GMT
    Content-Type: text/html
    Content-Length: 919
    Connection: close
    X-Cache: Error from cloudfront
    Via: 1.1 06659e009eac6940f260d2b396e0460c.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: b4Y36Mfrx2au3MrXhGeSyVcUAQpXeSwbq7X_MktdILlen-9G-3d_-w==
    
    Page title: ERROR: The request could not be satisfied
    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <HTML><HEAD><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
    <TITLE>ERROR: The request could not be satisfied</TITLE>
    </HEAD><BODY>
    <H1>403 ERROR</H1>
    <H2>The request could not be satisfied.</H2>
    <HR noshade size="1px">
    Request blocked.
    We can't connect to the server for this app or website at this time. There might be too much traffic or a configuration error. Try again later, or contact the app or website owner.
    <BR clear="all">
    If you provide content to customers through CloudFront, you can find steps to troubleshoot and help prevent this error by reviewing the CloudFront documentation.
    <BR clear="all">
    <HR noshade size="1px">
    <PRE>
    Generated by cloudfront (CloudFront)
    Request ID: b4Y36Mfrx2au3MrXhGeSyVcUAQpXeSwbq7X_MktdILlen-9G-3d_-w==
    </PRE>
    <ADDRESS>
    </ADDRESS>
    </BODY></HTML>
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · www.kiefer-neu.jp

    2025-12-19 12:37

    HTTP/1.1 403 Forbidden
    Server: CloudFront
    Date: Fri, 19 Dec 2025 12:37:44 GMT
    Content-Type: text/html
    Content-Length: 919
    Connection: close
    X-Cache: Error from cloudfront
    Via: 1.1 161bb6093ee10b11ad6a8a23b3138bee.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: EbHdY-bhTzC6eU8sI2YtJvcCVjE2b7-rG20tM94VaXs9zFOcvnisaA==
    
    Page title: ERROR: The request could not be satisfied
    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <HTML><HEAD><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
    <TITLE>ERROR: The request could not be satisfied</TITLE>
    </HEAD><BODY>
    <H1>403 ERROR</H1>
    <H2>The request could not be satisfied.</H2>
    <HR noshade size="1px">
    Request blocked.
    We can't connect to the server for this app or website at this time. There might be too much traffic or a configuration error. Try again later, or contact the app or website owner.
    <BR clear="all">
    If you provide content to customers through CloudFront, you can find steps to troubleshoot and help prevent this error by reviewing the CloudFront documentation.
    <BR clear="all">
    <HR noshade size="1px">
    <PRE>
    Generated by cloudfront (CloudFront)
    Request ID: EbHdY-bhTzC6eU8sI2YtJvcCVjE2b7-rG20tM94VaXs9zFOcvnisaA==
    </PRE>
    <ADDRESS>
    </ADDRESS>
    </BODY></HTML>
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · api.clt.jx-cec-pr-8823.k8.careersandenterprise.co.uk

    2025-12-19 04:47

    HTTP/1.1 202 Accepted
    Server: CloudFront
    Date: Fri, 19 Dec 2025 04:47:23 GMT
    Content-Length: 0
    Connection: close
    x-amzn-waf-action: challenge
    Cache-Control: no-store, max-age=0
    Content-Type: text/html; charset=UTF-8
    Access-Control-Allow-Origin: *
    Access-Control-Max-Age: 86400
    Access-Control-Allow-Methods: OPTIONS,GET,POST
    Access-Control-Expose-Headers: x-amzn-waf-action
    X-Cache: Error from cloudfront
    Via: 1.1 2e5530cd574fa6a27f079027dd7a281a.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: OLQFe6tSF46uWnW6x9QG6d7VpVesSf0ngrkyWP8cvvxe2YlZxx_2Zg==
    
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · api.clt.jx-cec-pr-8823.k8.careersandenterprise.co.uk

    2025-12-19 04:47

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Fri, 19 Dec 2025 04:47:23 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://api.clt.jx-cec-pr-8823.k8.careersandenterprise.co.uk/
    X-Cache: Redirect from cloudfront
    Via: 1.1 1ad022b197e464938f7729463478f0c8.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: l0efqQgL0k41FPXF_cX9ROxTMgzFdecZLkHF6uoOlXLrIVEoKK2Giw==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · stackednotion.com

    2025-12-19 04:44

    HTTP/1.1 302 Moved Temporarily
    Content-Length: 0
    Connection: close
    Date: Fri, 19 Dec 2025 04:44:04 GMT
    Location: https://www.stackednotion.com/
    X-Cache: Miss from cloudfront
    Via: 1.1 f353b9615396320dcfec689a26cf519e.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: FmkoJsC83gCRbRkhWnuIch5UyZAfVvwnlZtZCO5stBXW8neaEeQw9w==
    
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · stackednotion.com

    2025-12-19 04:44

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Fri, 19 Dec 2025 04:44:04 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://stackednotion.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 d7b95fc49388e3b88d8d8ce14a277aac.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: M8sfWO6Bz1IboU0oY6g4epHAsfsyhLsPo8cTwM3rxF9YlT4hawHfDA==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · www.venturebox.com.br

    2025-12-19 04:26

    HTTP/1.1 403 Forbidden
    Server: CloudFront
    Date: Fri, 19 Dec 2025 04:26:24 GMT
    Content-Type: text/html
    Content-Length: 919
    Connection: close
    X-Cache: Error from cloudfront
    Via: 1.1 55c4ff21b8d72983466f815563acf5be.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: UsqEe7VYPHTGDwM2t1CA91ExCWMFVGySrHKCu3XsO8aWqdmfvurrvg==
    X-Frame-Options: SAMEORIGIN
    Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
    
    Page title: ERROR: The request could not be satisfied
    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <HTML><HEAD><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
    <TITLE>ERROR: The request could not be satisfied</TITLE>
    </HEAD><BODY>
    <H1>403 ERROR</H1>
    <H2>The request could not be satisfied.</H2>
    <HR noshade size="1px">
    Request blocked.
    We can't connect to the server for this app or website at this time. There might be too much traffic or a configuration error. Try again later, or contact the app or website owner.
    <BR clear="all">
    If you provide content to customers through CloudFront, you can find steps to troubleshoot and help prevent this error by reviewing the CloudFront documentation.
    <BR clear="all">
    <HR noshade size="1px">
    <PRE>
    Generated by cloudfront (CloudFront)
    Request ID: UsqEe7VYPHTGDwM2t1CA91ExCWMFVGySrHKCu3XsO8aWqdmfvurrvg==
    </PRE>
    <ADDRESS>
    </ADDRESS>
    </BODY></HTML>
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · www.venturebox.com.br

    2025-12-19 04:26

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Fri, 19 Dec 2025 04:26:24 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://www.venturebox.com.br/
    X-Cache: Redirect from cloudfront
    Via: 1.1 d3567cb7a3a02c495b66e54c187b0ea2.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: KgFGUju1jzX2Y92Sls1txFZ_KwK5aiU7EM1iWRpKZVOBC1KPB57dSQ==
    X-Frame-Options: SAMEORIGIN
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · 7edu-br-financial-spa-dev.educadventista.org

    2025-12-19 03:42

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Fri, 19 Dec 2025 03:42:45 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://7edu-br-financial-spa-dev.educadventista.org/
    X-Cache: Redirect from cloudfront
    Via: 1.1 d7b95fc49388e3b88d8d8ce14a277aac.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: tqb5j9LTJ_VWWe4NZk9rBmjCKHA_YTbVUotHon6T_EPx4yfFqJZecA==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · 7edu-br-financial-spa-dev.educadventista.org

    2025-12-19 03:42

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 5630
    Connection: close
    Date: Fri, 19 Dec 2025 03:42:46 GMT
    Last-Modified: Tue, 01 Apr 2025 20:48:08 GMT
    ETag: "317c40758068c6254a9cca77f4b2c5d8"
    x-amz-server-side-encryption: AES256
    Accept-Ranges: bytes
    Server: AmazonS3
    X-Cache: Hit from cloudfront
    Via: 1.1 385cb8def78c1bb03b9aa3bd53bf1f06.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: ISml2RW_ZsRY3-hcpTVueIMxG8crhMloo_7PIRWHnivCkoo1vH_hiA==
    Age: 1
    
    Page title: Financial Spa
    
    <!doctype html>
    <html lang="en" data-critters-container>
    <head>
      <meta charset="utf-8">
      <title>Financial Spa</title>
      <base href="/">
      <meta name="viewport" content="width=device-width, initial-scale=1">
      <link rel="icon" type="image/x-icon" href="favicon.ico">
      <style>:root{font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";--font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
          "Segoe UI Symbol";--surface-a:#ffffff;--surface-b:#efefef;--surface-c:#e9ecef;--surface-d:#dee2e6;--surface-e:#ffffff;--surface-f:#ffffff;--text-color:#212529;--text-color-secondary:#6c757d;--primary-color:#007bff;--primary-color-text:#ffffff;--surface-0:#ffffff;--surface-50:#f9fafb;--surface-100:#f8f9fa;--surface-200:#e9ecef;--surface-300:#dee2e6;--surface-400:#ced4da;--surface-500:#adb5bd;--surface-600:#6c757d;--surface-700:#495057;--surface-800:#343a40;--surface-900:#212529;--gray-50:#f9fafb;--gray-100:#f8f9fa;--gray-200:#e9ecef;--gray-300:#dee2e6;--gray-400:#ced4da;--gray-500:#adb5bd;--gray-600:#6c757d;--gray-700:#495057;--gray-800:#343a40;--gray-900:#212529;--content-padding:1.25rem;--inline-spacing:0.5rem;--border-radius:4px;--surface-ground:#efefef;--surface-section:#ffffff;--surface-card:#ffffff;--surface-overlay:#ffffff;--surface-border:#dee2e6;--surface-hover:#e9ecef;--maskbg:rgba(0, 0, 0, 0.4);--highlight-bg:#007bff;--highlight-text-color:#ffffff;--focus-ring:0 0 0 0.2rem rgba(38, 143, 255, 0.5);color-scheme:light}:root{--blue-50:#f3f8ff;--blue-100:#c5dcff;--blue-200:#97c1fe;--blue-300:#69a5fe;--blue-400:#3b8afd;--blue-500:#0d6efd;--blue-600:#0b5ed7;--blue-700:#094db1;--blue-800:#073d8b;--blue-900:#052c65;--green-50:#f4f9f6;--green-100:#c8e2d6;--green-200:#9ccbb5;--green-300:#70b595;--green-400:#459e74;--green-500:#198754;--green-600:#157347;--green-700:#125f3b;--green-800:#0e4a2e;--green-900:#0a3622;--yellow-50:#fffcf3;--yellow-100:#fff0c3;--yellow-200:#ffe494;--yellow-300:#ffd965;--yellow-400:#ffcd36;--yellow-500:#ffc107;--yellow-600:#d9a406;--yellow-700:#b38705;--yellow-800:#8c6a04;--yellow-900:#664d03;--cyan-50:#f3fcfe;--cyan-100:#c5f2fb;--cyan-200:#97e8f9;--cyan-300:#69def6;--cyan-400:#3bd4f3;--cyan-500:#0dcaf0;--cyan-600:#0baccc;--cyan-700:#098da8;--cyan-800:#076f84;--cyan-900:#055160;--pink-50:#fdf5f9;--pink-100:#f5cee1;--pink-200:#eda7ca;--pink-300:#e681b3;--pink-400:#de5a9b;--pink-500:#d63384;--pink-600:#b62b70;--pink-700:#96245c;--pink-800:#761c49;--pink-900:#561435;--indigo-50:#f7f3fe;--indigo-100:#dac6fc;--indigo-200:#bd98f9;--indigo-300:#a06bf7;--indigo-400:#833df4;--indigo-500:#6610f2;--indigo-600:#570ece;--indigo-700:#470ba9;--indigo-800:#380985;--indigo-900:#290661;--teal-50:#f4fcfa;--teal-100:#c9f2e6;--teal-200:#9fe8d2;--teal-300:#75debf;--teal-400:#4ad3ab;--teal-500:#20c997;--teal-600:#1bab80;--teal-700:#168d6a;--teal-800:#126f53;--teal-900:#0d503c;--orange-50:#fff9f3;--orange-100:#ffe0c7;--orange-200:#fec89a;--orange-300:#feaf6d;--orange-400:#fd9741;--orange-500:#fd7e14;--orange-600:#d76b11;--orange-700:#b1580e;--orange-800:#8b450b;--orange-900:#653208;--bluegray-50:#f8f9fb;--bluegray-100:#e0e4ea;--bluegray-200:#c7ced9;--bluegray-300:#aeb9c8;--bluegray-400:#95a3b8;--bluegray-500:#7c8ea7;--bluegray-600:#69798e;--bluegray-700:#576375;--bluegray-800:#444e5c;--bluegray-900:#323943;--purple-50:#f8f6fc;--purple-100:#dcd2f0;--purple-200:#c1aee4;--purple-300:#a68ad9;--purple-400:#8a66cd;--purple-500:#6f42c1;--purple-600:#5e38a4;--purple-700:#4e2e87;--purple-800:#3d246a;--purple-900:#2c1a4d;--red-50:#fdf5f6;--red-100:#f7cfd2;--red-200:#f0a8af;--red-300:#e9828c;--red-400:#e35b68;--red-500:#dc3545;--red-600:#bb2d3b;--red-700:#9a2530;--red-800:#791d26;--red-900:#58151c;--primary-50:#f2f8ff;--primary-100:#c2dfff;--primary-200:#91c6ff;--primary-300:#61adff;--primary-400:#3094ff;--primary-500:#007bff;--primary-600:#0069d9;--primary-700:#0056b3;--primary-800:#00448c;--primary-900:#003166}@layer primeng{*{box-sizing:border
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · d23gragyd3qhla.amplifyapp.com

    2025-12-19 02:23

    HTTP/1.1 404 Not Found
    Content-Length: 0
    Connection: close
    Date: Fri, 19 Dec 2025 02:23:31 GMT
    X-Cache: Error from cloudfront
    Via: 1.1 fde6fada26b7302661010feaa587bdb8.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: cbdob3N6FAq_7wAH_YD6wgrLLByCrpp3Bl0Pic5dCbHublfXftLWPg==
    
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · d23gragyd3qhla.amplifyapp.com

    2025-12-19 02:23

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Fri, 19 Dec 2025 02:23:31 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://d23gragyd3qhla.amplifyapp.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 06659e009eac6940f260d2b396e0460c.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: U0hQS3eOT7jCz9ODvDJog3ZYs6BM9z8bea8trDTcRP1ZsmRLYwlKlA==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · d3atre7erkgfjn.amplifyapp.com

    2025-12-19 01:57

    HTTP/1.1 404 Not Found
    Content-Length: 0
    Connection: close
    Date: Fri, 19 Dec 2025 01:57:36 GMT
    X-Cache: Error from cloudfront
    Via: 1.1 203ee6b98de7af3adc87c8746659929c.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: ZtW_6NB-qMWzqedk3alnL59p6aIwZDD-Y7bFqZTPb0WXyne0JGQtFA==
    
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · d3atre7erkgfjn.amplifyapp.com

    2025-12-19 01:57

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Fri, 19 Dec 2025 01:57:36 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://d3atre7erkgfjn.amplifyapp.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 e93a56ddc3d7ec8c6f3655b7eb83ea6e.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: 1D9vwchq6kFI6YAGv1BkbxQNUIYr9PSqv4z7zwaADmH93wgeKMWOyQ==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · bendmotelwest.com

    2025-12-19 01:51

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 22089
    Connection: close
    Last-Modified: Sat, 16 Apr 2022 20:07:05 GMT
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Fri, 19 Dec 2025 01:52:01 GMT
    ETag: "215cbb6b0f80617c70a1d05dc682111c"
    X-Cache: Hit from cloudfront
    Via: 1.1 89d30ce8a4c37b9d11d7f552521193ae.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: ch2rkdWKaUrzTQQ5BjQAtTBfH2qIIUNJpfKzwE4YJ5oGPgeImURH0A==
    
    Page title: Motel West
    
    
    <!DOCTYPE html>
    <html lang="en">
      <head>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <meta name="description" content="The Motel West Bend Oregon
       is centrally located off of HWY 97! We offer free parking, wifi, flat screen TV's, and air conditioning/heater! BOOK HERE Online on the official site. Come stay with us and reserve/book your room.">
        <meta name="author" content="3rd Party">
        <meta http-equiv="X-UA-Compatible" content="ie=edge" />
        <!-- Favicons -->
        <link href="img/favicon.png" rel="icon">
        <link href="img/favicon.png" rel="icon">
        <title>Motel West
    </title>
        <link rel="stylesheet" href="fontawesome-5.5/css/all.min.css" />
        <link rel="stylesheet" href="slick/slick.css">
        <link rel="stylesheet" href="slick/slick-theme.css">
        <link rel="stylesheet" href="magnific-popup/magnific-popup.css">
        <link rel="stylesheet" href="css/bootstrap.min.css" />
        <link rel="stylesheet" href="css/templatemo-style.css" />
        <!--
    	The Town
    	https://templatemo.com/tm-525-the-town
    	-->
      </head>
      <body>
    
        <script>(function(d){var s = d.createElement("script");s.setAttribute("data-account", "ogQlrhe6Wf");s.setAttribute("src", "https://cdn.userway.org/widget.js");(d.body || d.head).appendChild(s);})(document)</script><noscript>Please ensure Javascript is enabled for purposes of <a href="https://userway.org">website accessibility</a></noscript>
        <!-- Hero section -->
        <section id="hero" class="text-white tm-font-big tm-parallax">
          <!-- Navigation -->
          <nav class="navbar navbar-expand-md tm-navbar" id="tmNav">
            <div class="container">
              <div class="tm-next">
                  <a href="#hero" class="navbar-brand">Motel West
    </a>
              </div>
    
              <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
                <i class="fas fa-bars navbar-toggler-icon"></i>
              </button>
              <div class="collapse navbar-collapse" id="navbarSupportedContent">
                <ul class="navbar-nav ml-auto">
                  <li class="nav-item">
                      <a class="nav-link tm-nav-link" href="#introduction" id="aboutus">About Us</a>
                  </li>
    
                  <!-- <li class="nav-item">
                      <a class="nav-link tm-nav-link" href="https://www.booking.com/hotel/us/bend-228-northeast-irving-avenue.en.html?aid=1768302&no_rooms=1&group_adults=2"  id="booking">Booking & Reservations</a>
                  </li> -->
    
    
    <!-- <a class="nav-link tm-nav-link" href="https://www.booking.com/hotel/us/bend-228-northeast-irving-avenue.en.html?aid=1768302&no_rooms=1&group_adults=2">Reserve Room</a> -->
    
                  <li class="nav-item">
                      <a class="nav-link tm-nav-link" href="#contact">Contact</a>
                  </li>
                  <li class="nav-item">
                      <!-- <a class="nav-link tm-nav-link" href="https://www.booking.com/hotel/us/bend-228-northeast-irving-avenue.en.html?aid=1768302&no_rooms=1&group_adults=2">Book Room</a> -->
                  </li>
    
                </ul>
              </div>
            </div>
          </nav>
    
          <div class="text-center tm-hero-text-container">
            <div class="tm-hero-text-container-inner">
                <h2 class="tm-hero-title">Motel West
    </h2>
                    <div class="tm-next">
                      <a href="https://www.booking.com/hotel/us/bend-228-northeast-irving-avenue.en.html?aid=1768302&no_rooms=1&group_adults=2" class="tm-intro-text tm-btn-primary">Reserve Now</a>
                    </div>
    			<br>
                <p class="tm-hero-subtitle">
    We're located in Bend, OR.
                  <br/>Come stay with us!
                </p>
    
            </div>
    
          </div>
    
          <div class="tm-next tm-intro-next">
            <a href="#introduction" class="text-center tm-down-arrow-link">
              <i class="fas fa-3x fa-caret-down tm-down-arrow"></i>
            </a>
          </div>
        </section>
    
    
    
    	      <section id="work" class="tm-s
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · www.bendmotelwest.com

    2025-12-19 01:51

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Fri, 19 Dec 2025 01:52:00 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://www.bendmotelwest.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 32202134de03dbdd880d0da736c39c1c.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: rCGnCCiZ_3UdLlkUczyXJzhzTLGE-4TeqN30IT0bs2KkYSDyLy9XXg==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · bendmotelwest.com

    2025-12-19 01:51

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Fri, 19 Dec 2025 01:52:00 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://bendmotelwest.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 d3567cb7a3a02c495b66e54c187b0ea2.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: Ofq5xQHp0wQzsZC9M4GOdEdG-jjv2TUuB9CFSEqrYy98Cg7vLdTLGg==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · www.bendmotelwest.com

    2025-12-19 01:51

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 22089
    Connection: close
    Last-Modified: Sat, 16 Apr 2022 20:07:05 GMT
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Fri, 19 Dec 2025 01:52:01 GMT
    ETag: "215cbb6b0f80617c70a1d05dc682111c"
    X-Cache: Hit from cloudfront
    Via: 1.1 161bb6093ee10b11ad6a8a23b3138bee.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: W-l_KG3gXoO9U_9wAT7n0h08imfGmzPMK8j9WHFqIE8dasfNi0kGOw==
    
    Page title: Motel West
    
    
    <!DOCTYPE html>
    <html lang="en">
      <head>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <meta name="description" content="The Motel West Bend Oregon
       is centrally located off of HWY 97! We offer free parking, wifi, flat screen TV's, and air conditioning/heater! BOOK HERE Online on the official site. Come stay with us and reserve/book your room.">
        <meta name="author" content="3rd Party">
        <meta http-equiv="X-UA-Compatible" content="ie=edge" />
        <!-- Favicons -->
        <link href="img/favicon.png" rel="icon">
        <link href="img/favicon.png" rel="icon">
        <title>Motel West
    </title>
        <link rel="stylesheet" href="fontawesome-5.5/css/all.min.css" />
        <link rel="stylesheet" href="slick/slick.css">
        <link rel="stylesheet" href="slick/slick-theme.css">
        <link rel="stylesheet" href="magnific-popup/magnific-popup.css">
        <link rel="stylesheet" href="css/bootstrap.min.css" />
        <link rel="stylesheet" href="css/templatemo-style.css" />
        <!--
    	The Town
    	https://templatemo.com/tm-525-the-town
    	-->
      </head>
      <body>
    
        <script>(function(d){var s = d.createElement("script");s.setAttribute("data-account", "ogQlrhe6Wf");s.setAttribute("src", "https://cdn.userway.org/widget.js");(d.body || d.head).appendChild(s);})(document)</script><noscript>Please ensure Javascript is enabled for purposes of <a href="https://userway.org">website accessibility</a></noscript>
        <!-- Hero section -->
        <section id="hero" class="text-white tm-font-big tm-parallax">
          <!-- Navigation -->
          <nav class="navbar navbar-expand-md tm-navbar" id="tmNav">
            <div class="container">
              <div class="tm-next">
                  <a href="#hero" class="navbar-brand">Motel West
    </a>
              </div>
    
              <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
                <i class="fas fa-bars navbar-toggler-icon"></i>
              </button>
              <div class="collapse navbar-collapse" id="navbarSupportedContent">
                <ul class="navbar-nav ml-auto">
                  <li class="nav-item">
                      <a class="nav-link tm-nav-link" href="#introduction" id="aboutus">About Us</a>
                  </li>
    
                  <!-- <li class="nav-item">
                      <a class="nav-link tm-nav-link" href="https://www.booking.com/hotel/us/bend-228-northeast-irving-avenue.en.html?aid=1768302&no_rooms=1&group_adults=2"  id="booking">Booking & Reservations</a>
                  </li> -->
    
    
    <!-- <a class="nav-link tm-nav-link" href="https://www.booking.com/hotel/us/bend-228-northeast-irving-avenue.en.html?aid=1768302&no_rooms=1&group_adults=2">Reserve Room</a> -->
    
                  <li class="nav-item">
                      <a class="nav-link tm-nav-link" href="#contact">Contact</a>
                  </li>
                  <li class="nav-item">
                      <!-- <a class="nav-link tm-nav-link" href="https://www.booking.com/hotel/us/bend-228-northeast-irving-avenue.en.html?aid=1768302&no_rooms=1&group_adults=2">Book Room</a> -->
                  </li>
    
                </ul>
              </div>
            </div>
          </nav>
    
          <div class="text-center tm-hero-text-container">
            <div class="tm-hero-text-container-inner">
                <h2 class="tm-hero-title">Motel West
    </h2>
                    <div class="tm-next">
                      <a href="https://www.booking.com/hotel/us/bend-228-northeast-irving-avenue.en.html?aid=1768302&no_rooms=1&group_adults=2" class="tm-intro-text tm-btn-primary">Reserve Now</a>
                    </div>
    			<br>
                <p class="tm-hero-subtitle">
    We're located in Bend, OR.
                  <br/>Come stay with us!
                </p>
    
            </div>
    
          </div>
    
          <div class="tm-next tm-intro-next">
            <a href="#introduction" class="text-center tm-down-arrow-link">
              <i class="fas fa-3x fa-caret-down tm-down-arrow"></i>
            </a>
          </div>
        </section>
    
    
    
    	      <section id="work" class="tm-s
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · b19af108-c09c-4cf5-867d-cacdb124f33c.rain-pods.com

    2025-12-19 01:42

    HTTP/1.1 200 OK
    Content-Type: text/html; charset=UTF-8
    Transfer-Encoding: chunked
    Connection: close
    Date: Fri, 19 Dec 2025 01:42:31 GMT
    Set-Cookie: PHPSESSID=15afe49bb1dc346db1b120488d57dbc6; path=/; HttpOnly
    Server: Apache
    Expires: Thu, 19 Nov 1981 08:52:00 GMT
    Cache-Control: no-store, no-cache, must-revalidate
    Pragma: no-cache
    Vary: Accept-Encoding
    X-Cache: Miss from cloudfront
    Via: 1.1 d3567cb7a3a02c495b66e54c187b0ea2.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: q5ns43vAdh7SfAjqTGLnBwq9ylRNdcVui_FxatGb8SK0BpjhohTJKw==
    
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · theclassicstitch.com

    2025-12-19 01:42

    HTTP/1.1 403 Forbidden
    Server: CloudFront
    Date: Fri, 19 Dec 2025 01:42:31 GMT
    Content-Type: text/html
    Content-Length: 919
    Connection: close
    X-Cache: Error from cloudfront
    Via: 1.1 7439c46706cf048af5a1a495725fffb2.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: QbbpYVGSEqN2QksudWBSqv1GeyYNcqQ6t9abEtJxVk8QdiHBfdxyeA==
    
    Page title: ERROR: The request could not be satisfied
    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <HTML><HEAD><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
    <TITLE>ERROR: The request could not be satisfied</TITLE>
    </HEAD><BODY>
    <H1>403 ERROR</H1>
    <H2>The request could not be satisfied.</H2>
    <HR noshade size="1px">
    Request blocked.
    We can't connect to the server for this app or website at this time. There might be too much traffic or a configuration error. Try again later, or contact the app or website owner.
    <BR clear="all">
    If you provide content to customers through CloudFront, you can find steps to troubleshoot and help prevent this error by reviewing the CloudFront documentation.
    <BR clear="all">
    <HR noshade size="1px">
    <PRE>
    Generated by cloudfront (CloudFront)
    Request ID: QbbpYVGSEqN2QksudWBSqv1GeyYNcqQ6t9abEtJxVk8QdiHBfdxyeA==
    </PRE>
    <ADDRESS>
    </ADDRESS>
    </BODY></HTML>
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · theclassicstitch.com

    2025-12-19 01:42

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Fri, 19 Dec 2025 01:42:32 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://theclassicstitch.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 8027798dc40af04392a940303e0fc516.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: j6xQjeGLkHTM126OoRbqIYrokqaMBTsCPXPqK5-lBVlFNeVfN7YnTg==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · b19af108-c09c-4cf5-867d-cacdb124f33c.rain-pods.com

    2025-12-19 01:42

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Fri, 19 Dec 2025 01:42:30 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://b19af108-c09c-4cf5-867d-cacdb124f33c.rain-pods.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 e93a56ddc3d7ec8c6f3655b7eb83ea6e.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: rHeenu004eeSPctOlOvqEB10ztqt5qSzuajAESD1rn6MR4V47rmrQg==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · www.theclassicstitch.com

    2025-12-19 01:42

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Fri, 19 Dec 2025 01:42:31 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://www.theclassicstitch.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 32202134de03dbdd880d0da736c39c1c.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: V5OLb_BVxpumAxP545UnRzMYexNOpBeIkIiKPbZT4FVbNkOcg7jhgg==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · www.theclassicstitch.com

    2025-12-19 01:42

    HTTP/1.1 200 OK
    Content-Type: text/html; charset=UTF-8
    Transfer-Encoding: chunked
    Connection: close
    Date: Fri, 19 Dec 2025 01:42:31 GMT
    Set-Cookie: PHPSESSID=e4e2ff50bdf197cbf91c60265fcb66b3; path=/; HttpOnly
    Server: Apache
    Expires: Thu, 19 Nov 1981 08:52:00 GMT
    Cache-Control: no-store, no-cache, must-revalidate
    Pragma: no-cache
    Vary: Accept-Encoding
    X-Cache: Miss from cloudfront
    Via: 1.1 8027798dc40af04392a940303e0fc516.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: BC2_o01dRrxLqFJNmGGibfoCMibqD2r8eSD3QY2MoIPettPZYeGBZQ==
    
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · secure.colmeiashop.com.br

    2025-12-19 01:22

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Fri, 19 Dec 2025 01:22:05 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://secure.colmeiashop.com.br/
    X-Cache: Redirect from cloudfront
    Via: 1.1 55c4ff21b8d72983466f815563acf5be.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: RN9yh3Ctbv_mVbGFguv6Yod7JLUdyVa321emUaumEW6QNe9TvFF97A==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · secure.colmeiashop.com.br

    2025-12-19 01:22

    HTTP/1.1 403 Forbidden
    Server: CloudFront
    Date: Fri, 19 Dec 2025 01:22:05 GMT
    Content-Type: text/html
    Content-Length: 919
    Connection: close
    X-Cache: Error from cloudfront
    Via: 1.1 1ff9ce989cf7cac5366389a5419a6d38.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    X-Amz-Cf-Id: c2w2-zmJ_8oKyeVBrvKInQK8hazINbFTKddQFBygnMTnVC13xFObCA==
    
    Page title: ERROR: The request could not be satisfied
    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <HTML><HEAD><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
    <TITLE>ERROR: The request could not be satisfied</TITLE>
    </HEAD><BODY>
    <H1>403 ERROR</H1>
    <H2>The request could not be satisfied.</H2>
    <HR noshade size="1px">
    Request blocked.
    We can't connect to the server for this app or website at this time. There might be too much traffic or a configuration error. Try again later, or contact the app or website owner.
    <BR clear="all">
    If you provide content to customers through CloudFront, you can find steps to troubleshoot and help prevent this error by reviewing the CloudFront documentation.
    <BR clear="all">
    <HR noshade size="1px">
    <PRE>
    Generated by cloudfront (CloudFront)
    Request ID: c2w2-zmJ_8oKyeVBrvKInQK8hazINbFTKddQFBygnMTnVC13xFObCA==
    </PRE>
    <ADDRESS>
    </ADDRESS>
    </BODY></HTML>
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:80 · mukhi.ai

    2025-12-19 00:49

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Fri, 19 Dec 2025 00:49:34 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://mukhi.ai/
    X-Cache: Redirect from cloudfront
    Via: 1.1 d7b95fc49388e3b88d8d8ce14a277aac.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: GSIerfVddtGNysqfalk6-Qjf1bsGfZHnJWPg1vOc9pvgfkK-giVR1A==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 52.222.136.82:443 · mukhi.ai

    2025-12-19 00:49

    HTTP/1.1 302 Moved Temporarily
    Content-Length: 0
    Connection: close
    Date: Fri, 19 Dec 2025 00:49:34 GMT
    Location: https://www.mukhi.ai/
    X-Cache: Miss from cloudfront
    Via: 1.1 b6b8b152d22969c98f9f56610821c954.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA50-P2
    Alt-Svc: h3=":443"; ma=86400
    X-Amz-Cf-Id: CEUuRcf-adURTDghou-3fDTHRALA7UVvnHs2lSReecXvZFeR3dPIDw==
    
    Found 2025-12-19 by HttpPlugin
    Create report
guardnine.in*.guardnine.in
CN:
guardnine.in
Key:
RSA-2048
Issuer:
Not before:
2025-07-19 00:00
Not after:
2026-08-17 23:59
softluxx.com*.softluxx.com
CN:
softluxx.com
Key:
RSA-2048
Issuer:
Not before:
2026-01-09 00:00
Not after:
2027-02-07 23:59
viarelay.dev
CN:
viarelay.dev
Key:
RSA-2048
Issuer:
Not before:
2026-01-04 00:00
Not after:
2027-02-02 23:59
liveataffinity.com*.liveataffinity.comwww.liveataffinity.com
CN:
liveataffinity.com
Key:
RSA-2048
Issuer:
Not before:
2025-10-27 00:00
Not after:
2026-11-25 23:59
femoup.com*.femoup.com
CN:
femoup.com
Key:
RSA-2048
Issuer:
Not before:
2025-11-02 00:00
Not after:
2026-12-01 23:59
*.sportybet.comsportybet.com
CN:
*.sportybet.com
Key:
RSA-2048
Issuer:
Not before:
2025-12-03 00:00
Not after:
2027-01-01 23:59
www.usaholidaysmart.comusaholidaysmart.com
CN:
www.usaholidaysmart.com
Key:
RSA-2048
Issuer:
Not before:
2025-09-19 00:00
Not after:
2026-10-18 23:59
miyagi-jihan.jp
CN:
miyagi-jihan.jp
Key:
RSA-2048
Issuer:
Not before:
2025-11-21 00:00
Not after:
2026-12-20 23:59
photown6brockton.com*.photown6brockton.com
CN:
photown6brockton.com
Key:
RSA-2048
Issuer:
Not before:
2025-12-10 00:00
Not after:
2027-01-08 23:59
phoenixcityor.com*.phoenixcityor.com
CN:
phoenixcityor.com
Key:
RSA-2048
Issuer:
Not before:
2025-12-25 00:00
Not after:
2027-01-23 23:59
dollarfiftyascoopupco.com*.dollarfiftyascoopupco.com
CN:
dollarfiftyascoopupco.com
Key:
RSA-2048
Issuer:
Not before:
2025-05-30 00:00
Not after:
2026-06-27 23:59
cdn.linxdev.netwww.cdn.linxdev.net
CN:
cdn.linxdev.net
Key:
RSA-2048
Issuer:
Not before:
2025-07-05 00:00
Not after:
2026-08-03 23:59
antlive46.comphtrsfdf.comwww.antlive118.comwww.antlive01.comantlive114.comantlive123.comantlive106.comwww.antlive567.comwww.antlive09.comfgopytef.comantlive140.comwww.phtrsfdf.comantlive05.comantlive48.comwww.antlive012.comwdsxvgb.comwww.antlive110.comwww.antlive144.comwww.antlive789.comantlive131.comantlive228.comantlive678.comantlive148.comwww.antlive101.comwww.antlive46.comantlive456.comantlive567.comwww.antlive128.comantlive108.comwww.dfgfdgfs.comantlive234.comantlive137.comwww.antlive150.comwww.tihdscvf.comwww.antlive134.comantlive345.comwww.antlive121.comwww.fgopytef.comioogrtrf.comwww.antlive148.comantlive012.comantlive144.comantlive09.comantlive101.comwww.antlive228.comwww.antlive678.comantlive789.comwww.wdsxvgb.comantlive110.comwww.antlive104.comwww.ioogrtrf.comwww.antlive106.comwww.antlive131.comantlive118.comwww.otrypdcd.comwww.antlive123.comwww.gdfyweg.comtihdscvf.comwww.antlive05.comantlive01.comdfiotszc.comwww.antlive48.comwww.antlive114.comwww.antlive140.comdfgfdgfs.comantlive150.comwww.antlive345.comwww.antlive137.comwww.antlive108.comantlive104.comyigdojfe.comantlive121.comantlive134.comwww.antlive234.comwww.yigdojfe.comantlive128.comwww.dfiotszc.comotrypdcd.comwww.antlive456.comgdfyweg.com
CN:
antlive46.com
Key:
RSA-2048
Issuer:
Not before:
2024-06-18 00:00
Not after:
2025-07-17 23:59
*.forksurge.comforksurge.com
CN:
*.forksurge.com
Key:
RSA-2048
Issuer:
Not before:
2025-09-10 00:00
Not after:
2026-10-09 23:59
busch.devwww.busch.devcolin.busch.devwww.colinbusch.dewww.colin.busch.devcolinbusch.de
CN:
busch.dev
Key:
RSA-2048
Issuer:
Not before:
2025-02-21 00:00
Not after:
2026-03-22 23:59
*.exammate.com.npexammate.com.np
CN:
*.exammate.com.np
Key:
RSA-2048
Issuer:
Not before:
2026-01-08 00:00
Not after:
2027-02-06 23:59
mta-sts.jayarinc.com
CN:
mta-sts.jayarinc.com
Not before:
2026-01-07 00:00
Not after:
2026-04-07 23:59
allendalebaptist-conroe.comwww.allendalebaptist-conroe.com
CN:
allendalebaptist-conroe.com
Key:
RSA-2048
Issuer:
Not before:
2025-04-22 00:00
Not after:
2026-05-22 23:59
scoreboard-ocr.comwww.scoreboard-ocr.comwiki.scoreboard-ocr.com
CN:
scoreboard-ocr.com
Key:
RSA-2048
Issuer:
Not before:
2025-05-16 00:00
Not after:
2026-06-13 23:59
freshnmeatyburgers.com*.freshnmeatyburgers.com
CN:
freshnmeatyburgers.com
Key:
RSA-2048
Issuer:
Not before:
2025-03-27 00:00
Not after:
2026-04-24 23:59
*.stackednotion.comstackednotion.com
CN:
*.stackednotion.com
Key:
RSA-2048
Issuer:
Not before:
2025-11-29 00:00
Not after:
2026-12-27 23:59
bookme.ng*.bookme.org.ngbookme.com.ngbookme.org.ng*.bookme.com.ng*.bookme.ng
CN:
bookme.ng
Key:
RSA-2048
Issuer:
Not before:
2024-06-07 00:00
Not after:
2025-07-06 23:59
*.ababilfund.comababilfund.com
CN:
*.ababilfund.com
Key:
RSA-2048
Issuer:
Not before:
2025-01-30 00:00
Not after:
2026-03-01 23:59
tp7.games*.supertp7.comtp7luky.complaybtp7.com*.yestp7.com*.tp7.bet*.tp7.gamesgirostp7.com*.tp7fun.comtp7fun.comyestp7.comtp7pin.com*.tp7luky.com*.tp7pin.comtp7.betroletatp7.com*.playbtp7.com*.girostp7.com*.roletatp7.comsupertp7.com
CN:
tp7.games
Key:
RSA-2048
Issuer:
Not before:
2025-11-15 00:00
Not after:
2026-12-14 23:59
sonofacarpentertour.com
CN:
sonofacarpentertour.com
Key:
RSA-2048
Issuer:
Not before:
2025-12-26 00:00
Not after:
2027-01-24 23:59
*.tryluck.comtryluck.com
CN:
*.tryluck.com
Key:
RSA-2048
Issuer:
Not before:
2025-11-10 00:00
Not after:
2026-12-09 23:59
yoonbitlaw.kr*.yoonbitlaw.kr
CN:
yoonbitlaw.kr
Key:
RSA-2048
Issuer:
Not before:
2025-12-22 00:00
Not after:
2027-01-20 23:59
m7rxp.com*.m7rxp.com
CN:
m7rxp.com
Key:
RSA-2048
Issuer:
Not before:
2025-03-17 00:00
Not after:
2026-04-15 23:59
*.d37wzfznagc980.amplifyapp.comd37wzfznagc980.amplifyapp.com
CN:
*.d37wzfznagc980.amplifyapp.com
Key:
RSA-2048
Issuer:
Not before:
2025-01-21 00:00
Not after:
2026-02-19 23:59
*.d2z5e3sec0g8c0.amplifyapp.comd2z5e3sec0g8c0.amplifyapp.com
CN:
*.d2z5e3sec0g8c0.amplifyapp.com
Key:
RSA-2048
Issuer:
Not before:
2025-01-21 00:00
Not after:
2026-02-19 23:59
*.d2z6x7d2ut2wea.amplifyapp.comd2z6x7d2ut2wea.amplifyapp.com
CN:
*.d2z6x7d2ut2wea.amplifyapp.com
Key:
RSA-2048
Issuer:
Not before:
2025-01-21 00:00
Not after:
2026-02-19 23:59
*.dzb2apyqjlkll.amplifyapp.comdzb2apyqjlkll.amplifyapp.com
CN:
*.dzb2apyqjlkll.amplifyapp.com
Key:
RSA-2048
Issuer:
Not before:
2025-01-21 00:00
Not after:
2026-02-19 23:59
www.30win34.com
CN:
www.30win34.com
Key:
RSA-2048
Issuer:
Not before:
2025-01-21 00:00
Not after:
2026-02-19 23:59
dev.gen-ai.storm-innovator.cloud*.dev.gen-ai.storm-innovator.cloud
CN:
dev.gen-ai.storm-innovator.cloud
Key:
RSA-2048
Issuer:
Not before:
2025-01-21 00:00
Not after:
2026-02-19 23:59
*.d1x4r9ucg9kdr4.amplifyapp.comd1x4r9ucg9kdr4.amplifyapp.com
CN:
*.d1x4r9ucg9kdr4.amplifyapp.com
Key:
RSA-2048
Issuer:
Not before:
2025-01-21 00:00
Not after:
2026-02-19 23:59
streem.watch*.streem.watch
CN:
streem.watch
Key:
RSA-2048
Issuer:
Not before:
2025-11-14 00:00
Not after:
2026-12-13 23:59
quickunitconverters.com
CN:
quickunitconverters.com
Key:
RSA-2048
Issuer:
Not before:
2025-12-09 00:00
Not after:
2027-01-07 23:59
budra.date
CN:
budra.date
Key:
RSA-2048
Issuer:
Not before:
2025-05-02 00:00
Not after:
2026-06-01 23:59
snapfundnow.com
CN:
snapfundnow.com
Key:
RSA-2048
Issuer:
Not before:
2025-09-24 00:00
Not after:
2026-10-23 23:59
*.11ixplay.club11ixplay.club
CN:
*.11ixplay.club
Key:
RSA-2048
Issuer:
Not before:
2025-12-13 00:00
Not after:
2027-01-11 23:59
pulsevisionsessions.com*.pulsevisionsessions.com
CN:
pulsevisionsessions.com
Key:
RSA-2048
Issuer:
Not before:
2025-12-18 00:00
Not after:
2027-01-16 23:59
www.kiefer-neu.jpkiefer-neu.jp
CN:
www.kiefer-neu.jp
Not before:
2025-11-15 02:30
Not after:
2026-12-17 02:30
*.jx-cec-pr-8823.k8.careersandenterprise.co.uk*.clt.jx-cec-pr-8823.k8.careersandenterprise.co.uk
CN:
*.jx-cec-pr-8823.k8.careersandenterprise.co.uk
Key:
RSA-2048
Issuer:
Not before:
2025-12-11 00:00
Not after:
2027-01-09 23:59
venturebox.com.brwww.venturebox.com.br
CN:
venturebox.com.br
Key:
RSA-2048
Issuer:
Not before:
2025-02-14 00:00
Not after:
2026-03-15 23:59
7edu-br-financial-spa-dev.educadventista.org
CN:
7edu-br-financial-spa-dev.educadventista.org
Key:
RSA-2048
Issuer:
Not before:
2025-01-17 00:00
Not after:
2026-02-16 23:59
*.d23gragyd3qhla.amplifyapp.comd23gragyd3qhla.amplifyapp.com
CN:
*.d23gragyd3qhla.amplifyapp.com
Key:
RSA-2048
Issuer:
Not before:
2025-01-18 00:00
Not after:
2026-02-16 23:59
*.d3atre7erkgfjn.amplifyapp.comd3atre7erkgfjn.amplifyapp.com
CN:
*.d3atre7erkgfjn.amplifyapp.com
Key:
RSA-2048
Issuer:
Not before:
2025-01-17 00:00
Not after:
2026-02-16 23:59
www.bendmotelwest.combendmotelwest.com
CN:
www.bendmotelwest.com
Key:
RSA-2048
Issuer:
Not before:
2025-01-17 00:00
Not after:
2026-02-16 23:59
www.theclassicstitch.comb19af108-c09c-4cf5-867d-cacdb124f33c.rain-pods.comtheclassicstitch.com
CN:
www.theclassicstitch.com
Key:
RSA-2048
Issuer:
Not before:
2025-01-18 00:00
Not after:
2026-02-16 23:59
secure.colmeiashop.com.br
CN:
secure.colmeiashop.com.br
Key:
RSA-2048
Issuer:
R13
Not before:
2025-12-11 10:02
Not after:
2026-03-11 10:02
*.mukhi.aimukhi.ai
CN:
*.mukhi.ai
Key:
RSA-2048
Issuer:
Not before:
2025-12-11 00:00
Not after:
2027-01-09 23:59