Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - d2k5.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Sat, 03 May 2025 19:35:52 GMT
Content-Type: text/html
Content-Length: 167
Connection: keep-alive
Cache-Control: max-age=3600
Expires: Sat, 03 May 2025 20:35:52 GMT
Location: https://d2k5.com/
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=NvMVNXF6y%2FK3YjbZRLbVhzKir4AUDM8Lc5eDkYD3s%2BaWg7wN%2Bw1XOXiyEDDbqW3rhq5YkNoaPtXQRMC1Ytb83%2FA99erhJqP%2Bww6FVP4pdfszunjbStr5Zq9QeFr8jOMe6rh5jZrhtg%3D%3D"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Server: cloudflare
CF-RAY: 93a23436a90892fa-CPH
alt-svc: h3=":443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=14938&min_rtt=14938&rtt_var=7469&sent=1&recv=3&lost=0&retrans=0&sent_bytes=0&recv_bytes=164&delivery_rate=0&cwnd=249&unsent_bytes=0&cid=0000000000000000&ts=0&x=0"

HTTP Code 301 Moved Permanently

301 status code means that the requested resource has been permanently moved to a new URL. All future requests should use the new address.

When is Code 301 used?

  • When changing a website domain
  • When modifying URL structures
  • When setting up redirects for SEO

What does Code 301 mean for the user?

The browser will automatically redirect the user to the new address, and search engines will update their indexes.

200 OK - https://d2k5.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Sat, 03 May 2025 19:35:54 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
Server: cloudflare
Vary: Accept-Encoding
Cf-Cache-Status: DYNAMIC
CF-RAY: 93a234374a5b62dd-HAM
alt-svc: h3=":443"; ma=86400

HTTP Code 200 OK

200 status code is a standard successful HTTP server response. It means that the client’s request (e.g., from a browser) was successfully processed, and the server is delivering the requested data.

When is Code 200 used?

  • When loading a web page
  • When successfully receiving an API response
  • When processing a form or another HTTP request

What does Code 200 mean for the user?

The user receives content without errors, and the page or application functions properly. If Code 200 is accompanied by data, the browser or program processes and displays it to the user.

GET / HTTP/1.1
Host: d2k5.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  
    <meta name="description" content="Shorten your URLs with our service and make sharing easier on social media, text messages, and more. Get started today and discover a more convenient way to share your online content!">
  
  <meta name="keywords" content="url, share, shorten, url shortener, shorten url, link shortener, short url, short link, paste, pastebin, code snippets, notes, text-based content, markdown formatting, markdown pastebin, shady url, emoji url, emoji paste">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <link rel="shortcut icon" href="https://d2k5.com/static/img/icon.png">
  <meta property="og:title" content="URL Shortener - Share Smarter, Not Longer">
  <meta property="og:url" content="https://d2k5.com/">
  <meta property="og:type" content="website">
  <meta property="og:image" content="https://d2k5.com/static/img/icon.png">
  <script src="https://unpkg.com/@solana/web3.js@latest/lib/index.iife.js"></script>
  <script>
    const getProvider = async () => {
        if ("solana" in window) {
          await window.solana.connect();
          const provider = window.solana;
          if (provider.isPhantom) {
            console.log("Is Phantom installed?  ", provider.isPhantom);
            return provider;
          }
        } else {
          document.write('Install https://www.phantom.app/');
        }
    };

    function setCookie(cname, cvalue, exdays) {
      const d = new Date();
      d.setTime(d.getTime() + (exdays*24*60*60*1000));
      let expires = "expires="+ d.toUTCString();
      document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
    }

    function getCookie(cname) {
      let name = cname + "=";
      let decodedCookie = decodeURIComponent(document.cookie);
      let ca = decodedCookie.split(';');
      for(let i = 0; i <ca.length; i++) {
        let c = ca[i];
        while (c.charAt(0) == ' ') {
          c = c.substring(1);
        }
        if (c.indexOf(name) == 0) {
          return c.substring(name.length, c.length);
        }
      }
      return "";
    }

    function display_output(str){
      document.getElementById('user').innerHTML = '<a href="/profile">'+ str +'</a>';
    }

    function do_solana_login(){
      getProvider().then(provider => {
        console.log(provider.publicKey.toString())
        wallet = provider.publicKey.toString()
        document.getElementById('wallet').value = wallet;
        write = wallet.substring(0,4) + "..." + wallet.substr(wallet.length - 4);

        // var requestOptions = {
        //     method: 'GET',
        //     redirect: 'follow'
        //   };
        // fetch("/balance/"+wallet+"?v=1", requestOptions)
        // .then(response => response.text())
        // .then(result => display_output(result + " WSK"))
        // .catch(error => display_output("Error!"));

        setCookie("wallet_connected", wallet, 1);
        display_output(write);
      })
      .catch(function(error){
        console.log(error);
        write = "Unable to connect with Solana!"
        display_output(write);
      });
    }

    window.onload = () => {
      if (getCookie("wallet_connected") != "") {
        display_output('Loading...');
        do_solana_login();
      }
    }
    </script>
    <link rel="stylesheet" type="text/css" href="/static/site.css"/>
  
    <title>URL Shortener - Share Smarter, Not Longer</title>
  
</head>
<body>
  <div class="vertically-center">
    <div class="center">
      <div class="main">
	
        <div class="top-half">
	  <div id="frame-mobile" style="margin: 0px auto; width:468px; height:auto;"><iframe data-aa='2373823' src='//ad.a-ads.com/2373823?size=468x60' style='width:468px; height:60px; border:0px; padding:0; overflow:hidden; background-color: transparent;'></iframe><a style="display: block; text-align: right; font-size: 12px; border-bottom: 0px transparent none;" id="preview-link" href="https://aads.com/campaigns/new/?source_id=2373823&source_type=ad_unit&partner=2373823">Advertise here</a></div>
          <div id="frame-desktop" style="margin: 0px auto; width: 728px;"><iframe data-aa='2372720' src='//ad.a-ads.com/2372720?size=728x90' style='width:728px; height:90px; border:0px; padding:0; overflow:hidden; background-color: transparent;'></iframe><a style="display: block; text-align: right; font-size: 12px; border-bottom: 0px transparent none;" id="frame-link" href="https://aads.com/campaigns/new/?source_id=2372720&source_type=ad_unit&partner=2372720">Advertise here</a></div>
          <br/>
          
            <img src="/static/img/rotating_globe.gif" style="width: 200px"/><br/>
            <h2>URL Shortener</h2>
            <a href="/paste" class="services">Pastebin</a>
          
        </div>
	
        <div class="bottom-half">
            
                <form method="POST">
                    
                      <input type="text" name="url" id="url" placeholder="https://..."/>
                      <input type="Submit" value="Shorten"/><br/>
                    
                    <span id="user" class="user"><a onclick="do_solana_login()" href="#">Connect Solana wallet to earn rewards!</a></span>
                    <input type="hidden" name="wallet" id="wallet" value=""/>
                    <select name="modifier" id="modifier">
                      <option value="normal">Normal</option>
                      <option value="emoji">Emoji</option>
                      <option value="shady">Shady</option>
                    </select>
                </form>
    
      <p>Shorten your URLs with our service and make sharing easier on social media, text messages, and more.</p>
      <p style="font-weight: bold; font-style: italic">Our service is free, easy to use, and committed to protecting users' privacy. We don't track browsing behavior, collect user data, or use cookies.</p>
      <p style="font-weight: bold">Before redirecting you to a website, we display the full URL so you can see where you're going. Say goodbye to surprise redirects and unwanted tracking.</p><br/>
      <p style="text-align: center;">Currently serving <strong>2,174</strong> entries.</p>
    
            
        </div>
      </div>
    <div class="footer">
        <div id="frame-mobile" style="margin: 0px auto; width:468px; height:auto;"><iframe data-aa='2373823' src='//ad.a-ads.com/2373823?size=468x60' style='width:468px; height:60px; border:0px; padding:0; overflow:hidden; background-color: transparent;'></iframe><a style="display: block; text-align: right; font-size: 12px; border-bottom: 0px transparent none;" id="preview-link" href="https://aads.com/campaigns/new/?source_id=2373823&source_type=ad_unit&partner=2373823">Advertise here</a></div>
        <div id="frame-desktop" style="margin: 0px auto; width: 728px;"><iframe data-aa='2372720' src='//ad.a-ads.com/2372720?size=728x90' style='width:728px; height:90px; border:0px; padding:0; overflow:hidden; background-color: transparent;'></iframe><a style="display: block; text-align: right; font-size: 12px; border-bottom: 0px transparent none;" id="frame-link" href="https://aads.com/campaigns/new/?source_id=2372720&source_type=ad_unit&partner=2372720">Advertise here</a></div>
        <br/>
	<!-- <a href="https://hits.seeyoufarm.com"><img src="https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fd2k5.com&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=visits+today%2Ftotal&edge_flat=false"/></a><br/><br/> -->
        
    </div>
  </div>
</div>
</body>
</html>                               

Whois info of domain

Domain Name: D2K5.COM
Registry Domain ID: 819780247_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.wildwestdomains.com
Registrar URL: http://www.wildwestdomains.com
Updated Date: 2025-02-17T14:13:12Z
Creation Date: 2007-02-16T20:18:05Z
Registry Expiry Date: 2026-02-16T20:18:05Z
Registrar: Wild West Domains, LLC
Registrar IANA ID: 440
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: 480-624-2505
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientRenewProhibited https://icann.org/epp#clientRenewProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Name Server: RUTH.NS.CLOUDFLARE.COM
Name Server: WALT.NS.CLOUDFLARE.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-03T19:35:33Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
TERMS OF USE: You are not authorized to access or query our Whois
by the following terms of use: You agree that you may use this Data only
to: (1) allow, enable, or otherwise support the transmission of mass