Domain nohello.co
CLOUDFLARENET
Software information

cloudflare cloudflare

tcp/443 tcp/80 tcp/8443

  • Open service 2606:4700:3031::ac43:de12:8443 · www.nohello.co

    2026-01-24 04:41

    HTTP/1.1 522 <none>
    Date: Sat, 24 Jan 2026 04:41:31 GMT
    Content-Type: text/plain; charset=UTF-8
    Content-Length: 15
    Connection: close
    Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
    Expires: Thu, 01 Jan 1970 00:00:01 GMT
    Referrer-Policy: same-origin
    Server-Timing: cfEdge;dur=19648,cfOrigin;dur=0
    X-Frame-Options: SAMEORIGIN
    Server: cloudflare
    CF-RAY: 9c2cdb6649d93356-EWR
    alt-svc: h3=":8443"; ma=86400
    
    
    error code: 522
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 2606:4700:3031::ac43:de12:443 · www.nohello.co

    2026-01-24 04:41

    HTTP/1.1 200 OK
    Date: Sat, 24 Jan 2026 04:41:11 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    last-modified: Tue, 16 Dec 2025 03:48:41 GMT
    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=APF06heNGzbUJ77JML3y%2Ff8qCHxgi9r6waNDO%2BzNp2zBDcdO2vi40j4QR9%2BhG9Rmsaxt2GeI0xav9ztpcSXDbV7UBCGdZuZGhep9lEinG%2FMT5zjMfN%2Fmugla"}]}
    vary: Accept-Encoding
    Server: cloudflare
    platform: hostinger
    panel: hpanel
    retry-after: 60
    content-security-policy: upgrade-insecure-requests
    alt-svc: h3=":443"; ma=86400
    x-turbo-charged-by: LiteSpeed
    cf-cache-status: DYNAMIC
    CF-RAY: 9c2cdb61fb9c2bd1-FRA
    
    Page title: No Hello
    
    
    <!DOCTYPE html>
    <html lang="en">
    
    <head>
      <meta name="description" content="Learn better chat etiquette: Stop saying just 'Hello' in messages. Get tips for more productive online communication.">
      <meta name="keywords" content="chat etiquette, communication tips, productivity, online chat, slack etiquette, ask better questions, asynchronous communication">
      <meta name="author" content="nohello.in">
      <meta charset="UTF-8">
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
      <title>No Hello</title>
      <link rel="icon" href="nohello.ico" type="image/x-icon" />
      <style>
        html, body {
          margin: 0;
          padding: 0;
          height: 100%;
          background-color: #181818;
          color: #f5f5f5;
          font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
          overflow: hidden;
        }
    
        #intro-text {
          position: absolute;
          top: 45%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: 6vw;
          white-space: nowrap;
          opacity: 0;
          animation: fadeIn 0.5s forwards;
          text-align: center;
        }
    
        #skip-btn {
          position: absolute;
          top: calc(55% + 20px);
          left: 50%;
          transform: translateX(-50%);
          background: transparent;
          color: #fff;
          padding: 10px 24px;
          cursor: pointer;
          border-radius: 30px;
          font-size: 1rem;
          z-index: 10;
          border: 2px solid rgba(255, 255, 255, 0.4);
          backdrop-filter: blur(4px);
          transition: border-radius 0.3s ease, border-color 0.3s ease;
        }
    
        @keyframes borderFlow {
          0% {
            border-image: linear-gradient(270deg, maroon, green, maroon) 1;
          }
          50% {
            border-image: linear-gradient(90deg, green, maroon, green) 1;
          }
          100% {
            border-image: linear-gradient(270deg, maroon, green, maroon) 1;
          }
        }
    
        @keyframes fadeIn {
          to {
            opacity: 1;
          }
        }
    
        .strike-red {
          position: relative;
          display: inline-block;
          color: inherit;
        }
    
        .strike-red::after {
          content: '';
          position: absolute;
          top: 50%;
          left: 0;
          right: 0;
          height: 4px;
          background-color: red;
          transform: translateY(-50%);
        }
    
        #content-wrapper {
          display: none;
          width: 100vw;
          height: 100vh;
        }
    
        #main-frame {
          border: none;
          width: 100%;
          height: 100%;
          display: block;
        }
      </style>
    </head>
    
    <body>
      <div id="intro-text"></div>
      <button id="skip-btn">Skip Intro</button>
      <div id="content-wrapper">
        <iframe id="main-frame" src="nohello.html"></iframe>
      </div>
    
      <script>
        const introWords = [
          { text: "no", delay: 900 },
          { text: "more", delay: 600 },
          { text: "<strong class='strike-red'>hello</strong>", delay: 600 },
          { text: "&", delay: 600 },
          { text: "wait", delay: 600 },
          { text: "just", delay: 600 },
          { type: "typing", delay: 1300 }
        ];
    
        const textEl = document.getElementById("intro-text");
        const wrapper = document.getElementById("content-wrapper");
        const skipBtn = document.getElementById("skip-btn");
    
        let wordIndex = 0;
    
        skipBtn.addEventListener("click", showContent);
    
        function showNextWord() {
          textEl.style.opacity = 0;
          void textEl.offsetWidth;
    
          let word = introWords[wordIndex];
          let delay = 300;
    
          if (word && word.type === "typing") {
            textEl.innerHTML = "<span></span>";
            const span = textEl.querySelector("span");
            const fullText = "ask.";
            let i = 0;
    
            function typeChar() {
              span.textContent = fullText.slice(0, i);
              i++;
              if (i <= fullText.length) {
                setTimeout(typeChar, 120);
              } else {
                textEl.innerHTML = "<strong>ask</strong><span style='color: green;'>.</span>";
                setTimeout(showContent, word.delay || 1000);
              }
            }
    
            typeChar();
            re
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 2606:4700:3031::ac43:de12:80 · www.nohello.co

    2026-01-24 04:41

    HTTP/1.1 301 Moved Permanently
    Date: Sat, 24 Jan 2026 04:41:10 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=KpnWcj8OtWVkXlQNMBA12fd%2FYjo%2BSW7xSTfv4dW4%2BYUvhSi6SbllepHf2qfbzBUAPdaOvIUA6BM4DFAzZKuNHWcL1TtDoAt3fyq9LFrjQMXI%2FGlXmJjGng%3D%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    Location: https://www.nohello.co/
    platform: hostinger
    panel: hpanel
    Content-Security-Policy: upgrade-insecure-requests
    X-turbo-charged-by: LiteSpeed
    cf-cache-status: DYNAMIC
    CF-RAY: 9c2cdb61db459b1f-FRA
    alt-svc: h3=":443"; ma=86400
    
    Page title:  301 Moved Permanently
    
    
    <!DOCTYPE html>
    <html style="height:100%">
    <head>
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
    <title> 301 Moved Permanently
    </title><style>@media (prefers-color-scheme:dark){body{background-color:#000!important}}</style></head>
    <body style="color: #444; margin:0;font: normal 14px/20px Arial, Helvetica, sans-serif; height:100%; background-color: #fff;">
    <div style="height:auto; min-height:100%; ">     <div style="text-align: center; width:800px; margin-left: -400px; position:absolute; top: 30%; left:50%;">
            <h1 style="margin:0; font-size:150px; line-height:150px; font-weight:bold;">301</h1>
    <h2 style="margin-top:20px;font-size: 30px;">Moved Permanently
    </h2>
    <p>The document has been permanently moved.</p>
    </div></div></body></html>
    
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 2606:4700:3037::6815:5b8b:80 · www.nohello.co

    2026-01-24 04:41

    HTTP/1.1 301 Moved Permanently
    Date: Sat, 24 Jan 2026 04:41:10 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=1Lgi5yvYmta9pWhnFYnYQC5u74fXN9bulzc4eg36qQlpPH9vD6dnqL7dgga3OJnyq9dkUavCUsGI6uWGWWFoI6ue8h6MINPeMu9Jpnc1T5ceRNldKfHppw%3D%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    Location: https://www.nohello.co/
    platform: hostinger
    panel: hpanel
    Content-Security-Policy: upgrade-insecure-requests
    X-turbo-charged-by: LiteSpeed
    cf-cache-status: DYNAMIC
    CF-RAY: 9c2cdb6119aa9b34-FRA
    alt-svc: h3=":443"; ma=86400
    
    Page title:  301 Moved Permanently
    
    
    <!DOCTYPE html>
    <html style="height:100%">
    <head>
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
    <title> 301 Moved Permanently
    </title><style>@media (prefers-color-scheme:dark){body{background-color:#000!important}}</style></head>
    <body style="color: #444; margin:0;font: normal 14px/20px Arial, Helvetica, sans-serif; height:100%; background-color: #fff;">
    <div style="height:auto; min-height:100%; ">     <div style="text-align: center; width:800px; margin-left: -400px; position:absolute; top: 30%; left:50%;">
            <h1 style="margin:0; font-size:150px; line-height:150px; font-weight:bold;">301</h1>
    <h2 style="margin-top:20px;font-size: 30px;">Moved Permanently
    </h2>
    <p>The document has been permanently moved.</p>
    </div></div></body></html>
    
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 2606:4700:3037::6815:5b8b:8443 · www.nohello.co

    2026-01-24 04:41

    HTTP/1.1 522 <none>
    Date: Sat, 24 Jan 2026 04:41:30 GMT
    Content-Type: text/plain; charset=UTF-8
    Content-Length: 15
    Connection: close
    Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
    Expires: Thu, 01 Jan 1970 00:00:01 GMT
    Referrer-Policy: same-origin
    Server-Timing: cfEdge;dur=19562,cfOrigin;dur=0
    X-Frame-Options: SAMEORIGIN
    Server: cloudflare
    CF-RAY: 9c2cdb660c7285ae-BOM
    alt-svc: h3=":8443"; ma=86400
    
    
    error code: 522
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 104.21.91.139:443 · www.nohello.co

    2026-01-24 04:41

    HTTP/1.1 200 OK
    Date: Sat, 24 Jan 2026 04:41:10 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ymef6zAL5aNa88CH0LQuL54%2B6W8o%2Bs%2FLn%2FKob%2F6UbFLNLN9Kg8PeprnURKmrvwqiJWSvtSIildrG8VrRmeeHUaYkYbc37QraicHmgccG"}]}
    vary: Accept-Encoding
    Server: cloudflare
    Cache-Control: no-cache,no-store
    x-frame-options: SAMEORIGIN
    alt-svc: h3=":443"; ma=86400
    x-turbo-charged-by: LiteSpeed
    cf-cache-status: DYNAMIC
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    CF-RAY: 9c2cdb61a81cde62-LHR
    
    Page title: Bot Verification
    
    <!DOCTYPE html>
    <html>
    <head>
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
        <title>Bot Verification</title>
        <script>
            function onSubmit() {
                document.getElementById('lsrecaptcha-form').submit();
            }
    
            var onloadCallback = function() {
                var cont = grecaptcha.render('recaptchadiv', {
                    'sitekey': '6LewU34UAAAAAHvXqFOcQlm8z1MP1xpGAZCYEeZY',
                    'callback': onSubmit,
                    
                });
                grecaptcha.execute(cont);
            };
        </script>
        <style>
            body {
            height: 100%;
            }
            .panel {
            padding: 30px;
            max-width: 425px;
            margin: 10% auto;
            box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
            }
            .title {
            font-size: 1.5em;
            font-weight: 100;
            margin-top: 10px;
            text-align: center;
            }
            .recaptcha-center {
            margin-top: 35px;
            margin-bottom: 20px;
            margin-left: 13%;
            margin-right: 13%;
            display: block;
            }
        </style>
    </head>
    <body>
        <div class="panel">
            <h3 class="title">Verifying that you are not a robot...</h3>
            <form id="lsrecaptcha-form" method="POST" action="/.lsrecap/recaptcha?">
                <div id="recaptchadiv" class="recaptcha-center"></div>
            </form>
        </div>
        <script src="https://www.recaptcha.net/recaptcha/api.js?onload=onloadCallback&render=explicit"
                async defer>
        </script>
    </body>
    </html>
    
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 172.67.222.18:80 · www.nohello.co

    2026-01-24 04:41

    HTTP/1.1 301 Moved Permanently
    Date: Sat, 24 Jan 2026 04:41:11 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=myd8t7Et4UbWFIhEWswTn%2B3ngfK5TSsqNeuNz5tdP9fxOO982%2Bvq54Qrh71gjYGe0WYHrFCrnF2r6Hj5U1dTnEqY9uDhomLALDEqCocz"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    Location: https://www.nohello.co/
    platform: hostinger
    panel: hpanel
    Content-Security-Policy: upgrade-insecure-requests
    X-turbo-charged-by: LiteSpeed
    cf-cache-status: DYNAMIC
    Server-Timing: cfCacheStatus;desc="DYNAMIC"
    Server-Timing: cfEdge;dur=10,cfOrigin;dur=249
    CF-RAY: 9c2cdb6239ba130e-YYZ
    alt-svc: h3=":443"; ma=86400
    
    Page title:  301 Moved Permanently
    
    
    <!DOCTYPE html>
    <html style="height:100%">
    <head>
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
    <title> 301 Moved Permanently
    </title><style>@media (prefers-color-scheme:dark){body{background-color:#000!important}}</style></head>
    <body style="color: #444; margin:0;font: normal 14px/20px Arial, Helvetica, sans-serif; height:100%; background-color: #fff;">
    <div style="height:auto; min-height:100%; ">     <div style="text-align: center; width:800px; margin-left: -400px; position:absolute; top: 30%; left:50%;">
            <h1 style="margin:0; font-size:150px; line-height:150px; font-weight:bold;">301</h1>
    <h2 style="margin-top:20px;font-size: 30px;">Moved Permanently
    </h2>
    <p>The document has been permanently moved.</p>
    </div></div><script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"9ada0715f7f24372bbb2312d677e6000","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
    </body></html>
    
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 104.21.91.139:8443 · www.nohello.co

    2026-01-24 04:41

    HTTP/1.1 522 <none>
    Date: Sat, 24 Jan 2026 04:41:30 GMT
    Content-Type: text/plain; charset=UTF-8
    Content-Length: 15
    Connection: close
    Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
    Expires: Thu, 01 Jan 1970 00:00:01 GMT
    Referrer-Policy: same-origin
    Server-Timing: cfEdge;dur=19511,cfOrigin;dur=0
    X-Frame-Options: SAMEORIGIN
    Server: cloudflare
    CF-RAY: 9c2cdb658f1a8ccd-EWR
    alt-svc: h3=":8443"; ma=86400
    
    
    error code: 522
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 172.67.222.18:443 · www.nohello.co

    2026-01-24 04:41

    HTTP/1.1 200 OK
    Date: Sat, 24 Jan 2026 04:41:11 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=5CcPCEa3qAPVMd1YkyoaJlSfW7x2iFEXV6IGiTs87brjpD17jz2DTHiz93WsYG7hbHXWDVBt8yevtR8pLZDLd3sgtXet20gdmV0vH049"}]}
    vary: Accept-Encoding
    Server: cloudflare
    Cache-Control: no-cache,no-store
    x-frame-options: SAMEORIGIN
    alt-svc: h3=":443"; ma=86400
    x-turbo-charged-by: LiteSpeed
    cf-cache-status: DYNAMIC
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server-Timing: cfCacheStatus;desc="DYNAMIC"
    Server-Timing: cfEdge;dur=7,cfOrigin;dur=643
    CF-RAY: 9c2cdb62dc12862e-EWR
    
    Page title: Bot Verification
    
    <!DOCTYPE html>
    <html>
    <head>
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
        <title>Bot Verification</title>
        <script>
            function onSubmit() {
                document.getElementById('lsrecaptcha-form').submit();
            }
    
            var onloadCallback = function() {
                var cont = grecaptcha.render('recaptchadiv', {
                    'sitekey': '6LewU34UAAAAAHvXqFOcQlm8z1MP1xpGAZCYEeZY',
                    'callback': onSubmit,
                    
                });
                grecaptcha.execute(cont);
            };
        </script>
        <style>
            body {
            height: 100%;
            }
            .panel {
            padding: 30px;
            max-width: 425px;
            margin: 10% auto;
            box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
            }
            .title {
            font-size: 1.5em;
            font-weight: 100;
            margin-top: 10px;
            text-align: center;
            }
            .recaptcha-center {
            margin-top: 35px;
            margin-bottom: 20px;
            margin-left: 13%;
            margin-right: 13%;
            display: block;
            }
        </style>
    </head>
    <body>
        <div class="panel">
            <h3 class="title">Verifying that you are not a robot...</h3>
            <form id="lsrecaptcha-form" method="POST" action="/.lsrecap/recaptcha?">
                <div id="recaptchadiv" class="recaptcha-center"></div>
            </form>
        </div>
        <script src="https://www.recaptcha.net/recaptcha/api.js?onload=onloadCallback&render=explicit"
                async defer>
        </script>
    <script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"9ada0715f7f24372bbb2312d677e6000","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
    </body>
    </html>
    
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 2606:4700:3037::6815:5b8b:443 · www.nohello.co

    2026-01-24 04:41

    HTTP/1.1 200 OK
    Date: Sat, 24 Jan 2026 04:41:10 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    last-modified: Tue, 16 Dec 2025 03:48:41 GMT
    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=SaMD8jqQsJvkRPLA6MJzjZ8O45DkOlJqr9U1fXMJ%2F%2FVfbc70XJhbKVZTTEJ%2B1Zy0pWUVzb5Yp5ZX92Dkww4nyK1pmDPBadL4pXBhrLleHo8XiiSjy5ohgWMe"}]}
    vary: Accept-Encoding
    Server: cloudflare
    platform: hostinger
    panel: hpanel
    retry-after: 60
    content-security-policy: upgrade-insecure-requests
    alt-svc: h3=":443"; ma=86400
    x-turbo-charged-by: LiteSpeed
    cf-cache-status: DYNAMIC
    CF-RAY: 9c2cdb60ffc6e010-FRA
    
    Page title: No Hello
    
    
    <!DOCTYPE html>
    <html lang="en">
    
    <head>
      <meta name="description" content="Learn better chat etiquette: Stop saying just 'Hello' in messages. Get tips for more productive online communication.">
      <meta name="keywords" content="chat etiquette, communication tips, productivity, online chat, slack etiquette, ask better questions, asynchronous communication">
      <meta name="author" content="nohello.in">
      <meta charset="UTF-8">
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
      <title>No Hello</title>
      <link rel="icon" href="nohello.ico" type="image/x-icon" />
      <style>
        html, body {
          margin: 0;
          padding: 0;
          height: 100%;
          background-color: #181818;
          color: #f5f5f5;
          font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
          overflow: hidden;
        }
    
        #intro-text {
          position: absolute;
          top: 45%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: 6vw;
          white-space: nowrap;
          opacity: 0;
          animation: fadeIn 0.5s forwards;
          text-align: center;
        }
    
        #skip-btn {
          position: absolute;
          top: calc(55% + 20px);
          left: 50%;
          transform: translateX(-50%);
          background: transparent;
          color: #fff;
          padding: 10px 24px;
          cursor: pointer;
          border-radius: 30px;
          font-size: 1rem;
          z-index: 10;
          border: 2px solid rgba(255, 255, 255, 0.4);
          backdrop-filter: blur(4px);
          transition: border-radius 0.3s ease, border-color 0.3s ease;
        }
    
        @keyframes borderFlow {
          0% {
            border-image: linear-gradient(270deg, maroon, green, maroon) 1;
          }
          50% {
            border-image: linear-gradient(90deg, green, maroon, green) 1;
          }
          100% {
            border-image: linear-gradient(270deg, maroon, green, maroon) 1;
          }
        }
    
        @keyframes fadeIn {
          to {
            opacity: 1;
          }
        }
    
        .strike-red {
          position: relative;
          display: inline-block;
          color: inherit;
        }
    
        .strike-red::after {
          content: '';
          position: absolute;
          top: 50%;
          left: 0;
          right: 0;
          height: 4px;
          background-color: red;
          transform: translateY(-50%);
        }
    
        #content-wrapper {
          display: none;
          width: 100vw;
          height: 100vh;
        }
    
        #main-frame {
          border: none;
          width: 100%;
          height: 100%;
          display: block;
        }
      </style>
    </head>
    
    <body>
      <div id="intro-text"></div>
      <button id="skip-btn">Skip Intro</button>
      <div id="content-wrapper">
        <iframe id="main-frame" src="nohello.html"></iframe>
      </div>
    
      <script>
        const introWords = [
          { text: "no", delay: 900 },
          { text: "more", delay: 600 },
          { text: "<strong class='strike-red'>hello</strong>", delay: 600 },
          { text: "&", delay: 600 },
          { text: "wait", delay: 600 },
          { text: "just", delay: 600 },
          { type: "typing", delay: 1300 }
        ];
    
        const textEl = document.getElementById("intro-text");
        const wrapper = document.getElementById("content-wrapper");
        const skipBtn = document.getElementById("skip-btn");
    
        let wordIndex = 0;
    
        skipBtn.addEventListener("click", showContent);
    
        function showNextWord() {
          textEl.style.opacity = 0;
          void textEl.offsetWidth;
    
          let word = introWords[wordIndex];
          let delay = 300;
    
          if (word && word.type === "typing") {
            textEl.innerHTML = "<span></span>";
            const span = textEl.querySelector("span");
            const fullText = "ask.";
            let i = 0;
    
            function typeChar() {
              span.textContent = fullText.slice(0, i);
              i++;
              if (i <= fullText.length) {
                setTimeout(typeChar, 120);
              } else {
                textEl.innerHTML = "<strong>ask</strong><span style='color: green;'>.</span>";
                setTimeout(showContent, word.delay || 1000);
              }
            }
    
            typeChar();
            re
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 104.21.91.139:80 · www.nohello.co

    2026-01-24 04:41

    HTTP/1.1 301 Moved Permanently
    Date: Sat, 24 Jan 2026 04:41:10 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Q8zkO8ghTo80R3%2BymchuqJUCogHe9OT06R%2FMwQOnUnBp57y3%2FXrnqeCnIgCnno2RK8%2Bs4seQNaahdSMXeNVwak05TWGVnlZWB5r%2B7Siw"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    Location: https://www.nohello.co/
    platform: hostinger
    panel: hpanel
    Content-Security-Policy: upgrade-insecure-requests
    X-turbo-charged-by: LiteSpeed
    cf-cache-status: DYNAMIC
    CF-RAY: 9c2cdb600bfd367f-FRA
    alt-svc: h3=":443"; ma=86400
    
    Page title:  301 Moved Permanently
    
    
    <!DOCTYPE html>
    <html style="height:100%">
    <head>
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
    <title> 301 Moved Permanently
    </title><style>@media (prefers-color-scheme:dark){body{background-color:#000!important}}</style></head>
    <body style="color: #444; margin:0;font: normal 14px/20px Arial, Helvetica, sans-serif; height:100%; background-color: #fff;">
    <div style="height:auto; min-height:100%; ">     <div style="text-align: center; width:800px; margin-left: -400px; position:absolute; top: 30%; left:50%;">
            <h1 style="margin:0; font-size:150px; line-height:150px; font-weight:bold;">301</h1>
    <h2 style="margin-top:20px;font-size: 30px;">Moved Permanently
    </h2>
    <p>The document has been permanently moved.</p>
    </div></div></body></html>
    
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 172.67.222.18:8443 · www.nohello.co

    2026-01-24 04:41

    HTTP/1.1 522 <none>
    Date: Sat, 24 Jan 2026 04:41:30 GMT
    Content-Type: text/plain; charset=UTF-8
    Content-Length: 15
    Connection: close
    Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
    Expires: Thu, 01 Jan 1970 00:00:01 GMT
    Referrer-Policy: same-origin
    X-Frame-Options: SAMEORIGIN
    Server: cloudflare
    CF-RAY: 9c2cdb64cd0939df-FRA
    alt-svc: h3=":8443"; ma=86400
    
    
    error code: 522
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 2606:4700:3031::ac43:de12:8443 · nohello.co

    2026-01-23 20:03

    HTTP/1.1 522 <none>
    Date: Fri, 23 Jan 2026 20:04:02 GMT
    Content-Type: text/plain; charset=UTF-8
    Content-Length: 15
    Connection: close
    Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
    Expires: Thu, 01 Jan 1970 00:00:01 GMT
    Referrer-Policy: same-origin
    Server-Timing: cfEdge;dur=19527,cfOrigin;dur=0
    X-Frame-Options: SAMEORIGIN
    Server: cloudflare
    CF-RAY: 9c29e56058bd53fb-YYZ
    alt-svc: h3=":8443"; ma=86400
    
    
    error code: 522
    Found 2026-01-23 by HttpPlugin
    Create report
  • Open service 104.21.91.139:8443 · nohello.co

    2026-01-23 20:03

    HTTP/1.1 522 <none>
    Date: Fri, 23 Jan 2026 20:04:02 GMT
    Content-Type: text/plain; charset=UTF-8
    Content-Length: 15
    Connection: close
    Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
    Expires: Thu, 01 Jan 1970 00:00:01 GMT
    Referrer-Policy: same-origin
    Server-Timing: cfEdge;dur=19508,cfOrigin;dur=0
    X-Frame-Options: SAMEORIGIN
    Server: cloudflare
    CF-RAY: 9c29e5603ac5c8b1-YYZ
    alt-svc: h3=":8443"; ma=86400
    
    
    error code: 522
    Found 2026-01-23 by HttpPlugin
    Create report
  • Open service 172.67.222.18:443 · nohello.co

    2026-01-23 20:03

    HTTP/1.1 200 OK
    Date: Fri, 23 Jan 2026 20:03:50 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Mmlro9Sn3q6RRs6N%2F1kJCnZ1vWtHjCATstEvpWsaeLyLBKrCDGheEiXlFxs%2FWv0H5DmnpPvxRuSieFMYdFxUO4LZgCc6MWeBpU8%3D"}]}
    vary: Accept-Encoding
    Server: cloudflare
    Cache-Control: no-cache,no-store
    x-frame-options: SAMEORIGIN
    alt-svc: h3=":443"; ma=86400
    x-turbo-charged-by: LiteSpeed
    cf-cache-status: DYNAMIC
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server-Timing: cfCacheStatus;desc="DYNAMIC"
    Server-Timing: cfEdge;dur=14,cfOrigin;dur=8325
    CF-RAY: 9c29e55dc91c436a-EWR
    
    Page title: Bot Verification
    
    <!DOCTYPE html>
    <html>
    <head>
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
        <title>Bot Verification</title>
        <script>
            function onSubmit() {
                document.getElementById('lsrecaptcha-form').submit();
            }
    
            var onloadCallback = function() {
                var cont = grecaptcha.render('recaptchadiv', {
                    'sitekey': '6LewU34UAAAAAHvXqFOcQlm8z1MP1xpGAZCYEeZY',
                    'callback': onSubmit,
                    
                });
                grecaptcha.execute(cont);
            };
        </script>
        <style>
            body {
            height: 100%;
            }
            .panel {
            padding: 30px;
            max-width: 425px;
            margin: 10% auto;
            box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
            }
            .title {
            font-size: 1.5em;
            font-weight: 100;
            margin-top: 10px;
            text-align: center;
            }
            .recaptcha-center {
            margin-top: 35px;
            margin-bottom: 20px;
            margin-left: 13%;
            margin-right: 13%;
            display: block;
            }
        </style>
    </head>
    <body>
        <div class="panel">
            <h3 class="title">Verifying that you are not a robot...</h3>
            <form id="lsrecaptcha-form" method="POST" action="/.lsrecap/recaptcha?">
                <div id="recaptchadiv" class="recaptcha-center"></div>
            </form>
        </div>
        <script src="https://www.recaptcha.net/recaptcha/api.js?onload=onloadCallback&render=explicit"
                async defer>
        </script>
    <script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"9ada0715f7f24372bbb2312d677e6000","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
    </body>
    </html>
    
    Found 2026-01-23 by HttpPlugin
    Create report
  • Open service 172.67.222.18:80 · nohello.co

    2026-01-23 20:03

    HTTP/1.1 301 Moved Permanently
    Date: Fri, 23 Jan 2026 20:03:42 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=oNHfpJGvHg9ZKjsmgZMrEyLuxhdZyrhmV%2BzIxGt8y5qgGwMX5zzV7PyFK8zEOqqjyhplZFCyTyVS5IzFv8qdAyEmXd4S0a8BY5Q%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    Location: https://nohello.co/
    platform: hostinger
    panel: hpanel
    Content-Security-Policy: upgrade-insecure-requests
    X-turbo-charged-by: LiteSpeed
    cf-cache-status: DYNAMIC
    CF-RAY: 9c29e55b2eb7da9e-AMS
    alt-svc: h3=":443"; ma=86400
    
    Page title:  301 Moved Permanently
    
    
    <!DOCTYPE html>
    <html style="height:100%">
    <head>
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
    <title> 301 Moved Permanently
    </title><style>@media (prefers-color-scheme:dark){body{background-color:#000!important}}</style></head>
    <body style="color: #444; margin:0;font: normal 14px/20px Arial, Helvetica, sans-serif; height:100%; background-color: #fff;">
    <div style="height:auto; min-height:100%; ">     <div style="text-align: center; width:800px; margin-left: -400px; position:absolute; top: 30%; left:50%;">
            <h1 style="margin:0; font-size:150px; line-height:150px; font-weight:bold;">301</h1>
    <h2 style="margin-top:20px;font-size: 30px;">Moved Permanently
    </h2>
    <p>The document has been permanently moved.</p>
    </div></div></body></html>
    
    Found 2026-01-23 by HttpPlugin
    Create report
  • Open service 172.67.222.18:8443 · nohello.co

    2026-01-23 20:03

    HTTP/1.1 522 <none>
    Date: Fri, 23 Jan 2026 20:04:02 GMT
    Content-Type: text/plain; charset=UTF-8
    Content-Length: 15
    Connection: close
    Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
    Expires: Thu, 01 Jan 1970 00:00:01 GMT
    Referrer-Policy: same-origin
    Server-Timing: cfEdge;dur=19696,cfOrigin;dur=0
    X-Frame-Options: SAMEORIGIN
    Server: cloudflare
    CF-RAY: 9c29e55fab2cf8ca-SIN
    alt-svc: h3=":8443"; ma=86400
    
    
    error code: 522
    Found 2026-01-23 by HttpPlugin
    Create report
  • Open service 2606:4700:3037::6815:5b8b:80 · nohello.co

    2026-01-23 20:03

    HTTP/1.1 301 Moved Permanently
    Date: Fri, 23 Jan 2026 20:03:41 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=19mPReacpfJfaHgXADMOuSJsf7FnO4Oye7Dcrn3I3EsKO6nkRvMn5BAhY4v6NU7H6JP950AJa1rHaM9EeDq%2BO3IS%2F0ihiVy4aENo8tkLQRPiOiqj%2FVI%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    Location: https://nohello.co/
    platform: hostinger
    panel: hpanel
    Content-Security-Policy: upgrade-insecure-requests
    X-turbo-charged-by: LiteSpeed
    cf-cache-status: DYNAMIC
    Server-Timing: cfCacheStatus;desc="DYNAMIC"
    Server-Timing: cfEdge;dur=22,cfOrigin;dur=132
    CF-RAY: 9c29e55a2f50879d-SIN
    alt-svc: h3=":443"; ma=86400
    
    Page title:  301 Moved Permanently
    
    
    <!DOCTYPE html>
    <html style="height:100%">
    <head>
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
    <title> 301 Moved Permanently
    </title><style>@media (prefers-color-scheme:dark){body{background-color:#000!important}}</style></head>
    <body style="color: #444; margin:0;font: normal 14px/20px Arial, Helvetica, sans-serif; height:100%; background-color: #fff;">
    <div style="height:auto; min-height:100%; ">     <div style="text-align: center; width:800px; margin-left: -400px; position:absolute; top: 30%; left:50%;">
            <h1 style="margin:0; font-size:150px; line-height:150px; font-weight:bold;">301</h1>
    <h2 style="margin-top:20px;font-size: 30px;">Moved Permanently
    </h2>
    <p>The document has been permanently moved.</p>
    </div></div><script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"9ada0715f7f24372bbb2312d677e6000","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
    </body></html>
    
    Found 2026-01-23 by HttpPlugin
    Create report
  • Open service 2606:4700:3031::ac43:de12:443 · nohello.co

    2026-01-23 20:03

    HTTP/1.1 200 OK
    Date: Fri, 23 Jan 2026 20:03:42 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    last-modified: Tue, 16 Dec 2025 03:48:41 GMT
    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=18dWYNHfTas1Ai6ugC3gUqLERXORotNEuOmQOs6s6oS0he3GoNV0SuJmBmd4AkOxGrJO3TEUw4JVF%2FUVU4%2BcNKoHb%2Bjy%2BTFweSiMzBHR5RFA%2FCMF2C0%3D"}]}
    vary: Accept-Encoding
    Server: cloudflare
    platform: hostinger
    panel: hpanel
    retry-after: 60
    content-security-policy: upgrade-insecure-requests
    alt-svc: h3=":443"; ma=86400
    x-turbo-charged-by: LiteSpeed
    cf-cache-status: DYNAMIC
    CF-RAY: 9c29e55bcc483862-LHR
    
    Page title: No Hello
    
    
    <!DOCTYPE html>
    <html lang="en">
    
    <head>
      <meta name="description" content="Learn better chat etiquette: Stop saying just 'Hello' in messages. Get tips for more productive online communication.">
      <meta name="keywords" content="chat etiquette, communication tips, productivity, online chat, slack etiquette, ask better questions, asynchronous communication">
      <meta name="author" content="nohello.in">
      <meta charset="UTF-8">
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
      <title>No Hello</title>
      <link rel="icon" href="nohello.ico" type="image/x-icon" />
      <style>
        html, body {
          margin: 0;
          padding: 0;
          height: 100%;
          background-color: #181818;
          color: #f5f5f5;
          font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
          overflow: hidden;
        }
    
        #intro-text {
          position: absolute;
          top: 45%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: 6vw;
          white-space: nowrap;
          opacity: 0;
          animation: fadeIn 0.5s forwards;
          text-align: center;
        }
    
        #skip-btn {
          position: absolute;
          top: calc(55% + 20px);
          left: 50%;
          transform: translateX(-50%);
          background: transparent;
          color: #fff;
          padding: 10px 24px;
          cursor: pointer;
          border-radius: 30px;
          font-size: 1rem;
          z-index: 10;
          border: 2px solid rgba(255, 255, 255, 0.4);
          backdrop-filter: blur(4px);
          transition: border-radius 0.3s ease, border-color 0.3s ease;
        }
    
        @keyframes borderFlow {
          0% {
            border-image: linear-gradient(270deg, maroon, green, maroon) 1;
          }
          50% {
            border-image: linear-gradient(90deg, green, maroon, green) 1;
          }
          100% {
            border-image: linear-gradient(270deg, maroon, green, maroon) 1;
          }
        }
    
        @keyframes fadeIn {
          to {
            opacity: 1;
          }
        }
    
        .strike-red {
          position: relative;
          display: inline-block;
          color: inherit;
        }
    
        .strike-red::after {
          content: '';
          position: absolute;
          top: 50%;
          left: 0;
          right: 0;
          height: 4px;
          background-color: red;
          transform: translateY(-50%);
        }
    
        #content-wrapper {
          display: none;
          width: 100vw;
          height: 100vh;
        }
    
        #main-frame {
          border: none;
          width: 100%;
          height: 100%;
          display: block;
        }
      </style>
    </head>
    
    <body>
      <div id="intro-text"></div>
      <button id="skip-btn">Skip Intro</button>
      <div id="content-wrapper">
        <iframe id="main-frame" src="nohello.html"></iframe>
      </div>
    
      <script>
        const introWords = [
          { text: "no", delay: 900 },
          { text: "more", delay: 600 },
          { text: "<strong class='strike-red'>hello</strong>", delay: 600 },
          { text: "&", delay: 600 },
          { text: "wait", delay: 600 },
          { text: "just", delay: 600 },
          { type: "typing", delay: 1300 }
        ];
    
        const textEl = document.getElementById("intro-text");
        const wrapper = document.getElementById("content-wrapper");
        const skipBtn = document.getElementById("skip-btn");
    
        let wordIndex = 0;
    
        skipBtn.addEventListener("click", showContent);
    
        function showNextWord() {
          textEl.style.opacity = 0;
          void textEl.offsetWidth;
    
          let word = introWords[wordIndex];
          let delay = 300;
    
          if (word && word.type === "typing") {
            textEl.innerHTML = "<span></span>";
            const span = textEl.querySelector("span");
            const fullText = "ask.";
            let i = 0;
    
            function typeChar() {
              span.textContent = fullText.slice(0, i);
              i++;
              if (i <= fullText.length) {
                setTimeout(typeChar, 120);
              } else {
                textEl.innerHTML = "<strong>ask</strong><span style='color: green;'>.</span>";
                setTimeout(showContent, word.delay || 1000);
              }
            }
    
            typeChar();
            re
    Found 2026-01-23 by HttpPlugin
    Create report
  • Open service 2606:4700:3037::6815:5b8b:8443 · nohello.co

    2026-01-23 20:03

    HTTP/1.1 522 <none>
    Date: Fri, 23 Jan 2026 20:04:01 GMT
    Content-Type: text/plain; charset=UTF-8
    Content-Length: 15
    Connection: close
    Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
    Expires: Thu, 01 Jan 1970 00:00:01 GMT
    Referrer-Policy: same-origin
    X-Frame-Options: SAMEORIGIN
    Server: cloudflare
    CF-RAY: 9c29e55f8c3cf746-LHR
    alt-svc: h3=":8443"; ma=86400
    
    
    error code: 522
    Found 2026-01-23 by HttpPlugin
    Create report
  • Open service 2606:4700:3031::ac43:de12:80 · nohello.co

    2026-01-23 20:03

    HTTP/1.1 301 Moved Permanently
    Date: Fri, 23 Jan 2026 20:03:42 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=0gIw3f5CIscIy%2Fl3nTmFvfF5uiIuWnaxWG4yeS8ZY2VjCyKL7eUzx29hQEn5c557iZ6Li4Q9e7Tc51jvSonmOC1xnV1Dxhgm8TpUwCity8qVFVrE7i0%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    Location: https://nohello.co/
    platform: hostinger
    panel: hpanel
    Content-Security-Policy: upgrade-insecure-requests
    X-turbo-charged-by: LiteSpeed
    cf-cache-status: DYNAMIC
    CF-RAY: 9c29e55aeb0d3639-FRA
    alt-svc: h3=":443"; ma=86400
    
    Page title:  301 Moved Permanently
    
    
    <!DOCTYPE html>
    <html style="height:100%">
    <head>
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
    <title> 301 Moved Permanently
    </title><style>@media (prefers-color-scheme:dark){body{background-color:#000!important}}</style></head>
    <body style="color: #444; margin:0;font: normal 14px/20px Arial, Helvetica, sans-serif; height:100%; background-color: #fff;">
    <div style="height:auto; min-height:100%; ">     <div style="text-align: center; width:800px; margin-left: -400px; position:absolute; top: 30%; left:50%;">
            <h1 style="margin:0; font-size:150px; line-height:150px; font-weight:bold;">301</h1>
    <h2 style="margin-top:20px;font-size: 30px;">Moved Permanently
    </h2>
    <p>The document has been permanently moved.</p>
    </div></div></body></html>
    
    Found 2026-01-23 by HttpPlugin
    Create report
  • Open service 2606:4700:3037::6815:5b8b:443 · nohello.co

    2026-01-23 20:03

    HTTP/1.1 200 OK
    Date: Fri, 23 Jan 2026 20:03:42 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    last-modified: Tue, 16 Dec 2025 03:48:41 GMT
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server-Timing: cfCacheStatus;desc="DYNAMIC"
    Server-Timing: cfEdge;dur=12,cfOrigin;dur=589
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=cqhqYQkxXsmnqQaTMlF5N8hBKOVlaqmd%2BD1bie5cvCyxEED9mKDp5Lh9YBd9pL4sr0vqJZH5IFsehR7kMMKVLpP%2F%2BnNsnhhMH7DJWLAPH1aRzj3f"}]}
    vary: Accept-Encoding
    Server: cloudflare
    platform: hostinger
    panel: hpanel
    retry-after: 60
    content-security-policy: upgrade-insecure-requests
    alt-svc: h3=":443"; ma=86400
    x-turbo-charged-by: LiteSpeed
    cf-cache-status: DYNAMIC
    CF-RAY: 9c29e55cfe449608-EWR
    
    Page title: No Hello
    
    
    <!DOCTYPE html>
    <html lang="en">
    
    <head>
      <meta name="description" content="Learn better chat etiquette: Stop saying just 'Hello' in messages. Get tips for more productive online communication.">
      <meta name="keywords" content="chat etiquette, communication tips, productivity, online chat, slack etiquette, ask better questions, asynchronous communication">
      <meta name="author" content="nohello.in">
      <meta charset="UTF-8">
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
      <title>No Hello</title>
      <link rel="icon" href="nohello.ico" type="image/x-icon" />
      <style>
        html, body {
          margin: 0;
          padding: 0;
          height: 100%;
          background-color: #181818;
          color: #f5f5f5;
          font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
          overflow: hidden;
        }
    
        #intro-text {
          position: absolute;
          top: 45%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: 6vw;
          white-space: nowrap;
          opacity: 0;
          animation: fadeIn 0.5s forwards;
          text-align: center;
        }
    
        #skip-btn {
          position: absolute;
          top: calc(55% + 20px);
          left: 50%;
          transform: translateX(-50%);
          background: transparent;
          color: #fff;
          padding: 10px 24px;
          cursor: pointer;
          border-radius: 30px;
          font-size: 1rem;
          z-index: 10;
          border: 2px solid rgba(255, 255, 255, 0.4);
          backdrop-filter: blur(4px);
          transition: border-radius 0.3s ease, border-color 0.3s ease;
        }
    
        @keyframes borderFlow {
          0% {
            border-image: linear-gradient(270deg, maroon, green, maroon) 1;
          }
          50% {
            border-image: linear-gradient(90deg, green, maroon, green) 1;
          }
          100% {
            border-image: linear-gradient(270deg, maroon, green, maroon) 1;
          }
        }
    
        @keyframes fadeIn {
          to {
            opacity: 1;
          }
        }
    
        .strike-red {
          position: relative;
          display: inline-block;
          color: inherit;
        }
    
        .strike-red::after {
          content: '';
          position: absolute;
          top: 50%;
          left: 0;
          right: 0;
          height: 4px;
          background-color: red;
          transform: translateY(-50%);
        }
    
        #content-wrapper {
          display: none;
          width: 100vw;
          height: 100vh;
        }
    
        #main-frame {
          border: none;
          width: 100%;
          height: 100%;
          display: block;
        }
      </style>
    </head>
    
    <body>
      <div id="intro-text"></div>
      <button id="skip-btn">Skip Intro</button>
      <div id="content-wrapper">
        <iframe id="main-frame" src="nohello.html"></iframe>
      </div>
    
      <script>
        const introWords = [
          { text: "no", delay: 900 },
          { text: "more", delay: 600 },
          { text: "<strong class='strike-red'>hello</strong>", delay: 600 },
          { text: "&", delay: 600 },
          { text: "wait", delay: 600 },
          { text: "just", delay: 600 },
          { type: "typing", delay: 1300 }
        ];
    
        const textEl = document.getElementById("intro-text");
        const wrapper = document.getElementById("content-wrapper");
        const skipBtn = document.getElementById("skip-btn");
    
        let wordIndex = 0;
    
        skipBtn.addEventListener("click", showContent);
    
        function showNextWord() {
          textEl.style.opacity = 0;
          void textEl.offsetWidth;
    
          let word = introWords[wordIndex];
          let delay = 300;
    
          if (word && word.type === "typing") {
            textEl.innerHTML = "<span></span>";
            const span = textEl.querySelector("span");
            const fullText = "ask.";
            let i = 0;
    
            function typeChar() {
              span.textContent = fullText.slice(0, i);
              i++;
              if (i <= fullText.length) {
                setTimeout(typeChar, 120);
              } else {
                textEl.innerHTML = "<strong>ask</strong><span style='color: green;'>.</span>";
                setTimeout(showContent, word.delay || 1000);
              }
            }
    
            typeChar();
            re
    Found 2026-01-23 by HttpPlugin
    Create report
  • Open service 104.21.91.139:443 · nohello.co

    2026-01-23 20:03

    HTTP/1.1 200 OK
    Date: Fri, 23 Jan 2026 20:03:50 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=jl16fy%2Bgs7LekKGfCNBd34kv4hzvfpTT9tn804UMfvTt%2FaRw%2Btg1bXMhlSannyPvneWNyxIqtEw7uKVX3IkQ7v%2BvimQjBoMSCrQ%3D"}]}
    vary: Accept-Encoding
    Server: cloudflare
    Cache-Control: no-cache,no-store
    x-frame-options: SAMEORIGIN
    alt-svc: h3=":443"; ma=86400
    x-turbo-charged-by: LiteSpeed
    cf-cache-status: DYNAMIC
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    CF-RAY: 9c29e55aec6e94eb-LHR
    
    Page title: Bot Verification
    
    <!DOCTYPE html>
    <html>
    <head>
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
        <title>Bot Verification</title>
        <script>
            function onSubmit() {
                document.getElementById('lsrecaptcha-form').submit();
            }
    
            var onloadCallback = function() {
                var cont = grecaptcha.render('recaptchadiv', {
                    'sitekey': '6LewU34UAAAAAHvXqFOcQlm8z1MP1xpGAZCYEeZY',
                    'callback': onSubmit,
                    
                });
                grecaptcha.execute(cont);
            };
        </script>
        <style>
            body {
            height: 100%;
            }
            .panel {
            padding: 30px;
            max-width: 425px;
            margin: 10% auto;
            box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
            }
            .title {
            font-size: 1.5em;
            font-weight: 100;
            margin-top: 10px;
            text-align: center;
            }
            .recaptcha-center {
            margin-top: 35px;
            margin-bottom: 20px;
            margin-left: 13%;
            margin-right: 13%;
            display: block;
            }
        </style>
    </head>
    <body>
        <div class="panel">
            <h3 class="title">Verifying that you are not a robot...</h3>
            <form id="lsrecaptcha-form" method="POST" action="/.lsrecap/recaptcha?">
                <div id="recaptchadiv" class="recaptcha-center"></div>
            </form>
        </div>
        <script src="https://www.recaptcha.net/recaptcha/api.js?onload=onloadCallback&render=explicit"
                async defer>
        </script>
    </body>
    </html>
    
    Found 2026-01-23 by HttpPlugin
    Create report
  • Open service 104.21.91.139:80 · nohello.co

    2026-01-23 20:03

    HTTP/1.1 301 Moved Permanently
    Date: Fri, 23 Jan 2026 20:03:42 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=F2lWWLbkE4CJyPAaImQRWSadAQKRtVDb0NWww%2BDu5Bg1KiL2Psm%2BDoLAyqJLy9q%2Fp0VDH7tWRsvalIqzdKFvbSGpT%2FcYIuYVlxs%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    Location: https://nohello.co/
    platform: hostinger
    panel: hpanel
    Content-Security-Policy: upgrade-insecure-requests
    X-turbo-charged-by: LiteSpeed
    cf-cache-status: DYNAMIC
    CF-RAY: 9c29e55a0efac23f-AMS
    alt-svc: h3=":443"; ma=86400
    
    Page title:  301 Moved Permanently
    
    
    <!DOCTYPE html>
    <html style="height:100%">
    <head>
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
    <title> 301 Moved Permanently
    </title><style>@media (prefers-color-scheme:dark){body{background-color:#000!important}}</style></head>
    <body style="color: #444; margin:0;font: normal 14px/20px Arial, Helvetica, sans-serif; height:100%; background-color: #fff;">
    <div style="height:auto; min-height:100%; ">     <div style="text-align: center; width:800px; margin-left: -400px; position:absolute; top: 30%; left:50%;">
            <h1 style="margin:0; font-size:150px; line-height:150px; font-weight:bold;">301</h1>
    <h2 style="margin-top:20px;font-size: 30px;">Moved Permanently
    </h2>
    <p>The document has been permanently moved.</p>
    </div></div></body></html>
    
    Found 2026-01-23 by HttpPlugin
    Create report
nohello.co*.nohello.co
CN:
nohello.co
Key:
ECDSA-256
Issuer:
WE1
Not before:
2026-01-21 05:28
Not after:
2026-04-21 06:27