Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - uboru.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Thu, 15 May 2025 12:44:38 GMT
Server: Apache/2.4.58 (Ubuntu)
Location: https://uboru.com/
Content-Length: 301
Content-Type: text/html; charset=iso-8859-1

HTTP Code 301 Moved Permanently

http status code 301 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://uboru.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Thu, 15 May 2025 12:44:38 GMT
Server: Apache/2.4.58 (Ubuntu)
Vary: Accept-Encoding
Transfer-Encoding: chunked
Content-Type: text/html; charset=UTF-8

HTTP Code 200 OK

http status code 200 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: uboru.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 name="viewport" content="width=device-width, initial-scale=1.0">
       
        <title>Uboru</title>
        <style>
            body {
                font-family: Arial, sans-serif;
                margin: 0;
                padding: 0;
            }
            header {
                background-color: #4CAF50;
                color: white;
                text-align: center;
                padding: 1rem 0;
            }
            .navbar {
                background-color: #333;
                overflow: hidden;
            }
            .navbar a {
                float: left;
                display: block;
                color: white;
                text-align: center;
                padding: 14px 20px;
                text-decoration: none;
            }
            .navbar a:hover {
                background-color: #ddd;
                color: black;
            }
            .section {
                padding: 60px;
                text-align: center;
            }
            #about {
                background-color: #f4f4f4;
            }
            #contact {
                background-color: #e2e2e2;
            }
            #support {
                background-color: #cccccc;
            }
            .panel {
                background-color: white;
                border: 1px solid #ccc;
                border-radius: 10px;
                box-shadow: 0 2px 4px rgba(0,0,0,0.1);
                padding: 40px;
                width: 300px;
                text-align: center;
            }
    
            .panel h2 {
                margin-top: 0;
                color: #333;
            }
    
            .panel p {
                color: #666;
            }
    
            .widgets {
                display: flex;
                gap: 20px;
            }
    
            .widget {
                flex: 1;
                background-color: white;
                padding: 20px;
                border-radius: 5px;
                box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
                text-align: center;
            }
            section {
                width: 50%; /* You can adjust the width as needed */
                background-color: #f4f4f4; /* Optional: for better visualization */
                padding: 20px; /* Optional: for spacing around the content */
                text-align: left; /* Optional: to center text inside the section */
                box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: for a subtle shadow effect */
                }
            footer {
                background-color: #333;
                color: white;
                text-align: center;
                padding: 1rem 0;
                position: fixed;
                bottom: 0;
                width: 100%;
            }
    
    #popupbg {
    display: none;
    position: fixed;
    z-index: 1;
    left: 20%;
    top: 20%;
    width: 50%;
    height: 50%;
    overflow: auto;
    background-color: white;
    border-radius: 15px;
    border: 2px solid #444;
    opacity: 1.0; /* Set the opacity level */
}


.popup {
            display: none; /* Hidden by default */
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20%;
            max-height: 50%;
            padding: 20px;
            background-color: white;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
            border: 2px solid #444;
            overflow-y: hidden;
            border-radius: 10px;
            z-index: 1000; /* Ensure pop-up appears above other elements */
        }

    
    .pop-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 10px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    text-align: Left;
    }
    

    .popup-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 2px;
    border: none;
    width: 100%;
    max-width: 99%;
    max-height: 100%;
    text-align: Left;
}
    label {
        display: block;
        margin-bottom: 5px;
        left: 20%;
      
    }
    input[type="text"], input[type="email"], input[type="password"] {
        left: 20%;
        width: calc(100% - 50px);
        padding: 5px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }
    
    input[type="submit"] {
        background-color: #007BFF;
        color: white;
        padding: 10px 15px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }
     input[type="submit"]:hover {
        background-color: #0056b3;
    }
    
    
    Select {
        width: calc(100% - 22px);
        padding: 20px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }
    
    button {
        background-color: #007BFF;
        color: white;
        padding: 10px 15px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

    .close-button {
        background-color:rgb(247, 7, 7);
        color: white;
        padding: 10px 15px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }
    .wrap {
        width:50%;
        margin:0 auto;
    }
    
    .R1 
    {
    color: #9e0505;
    font-family: verdana;
    font-size: 12px;
    text-align: Left;
    }

    TABLE {

border-collapse: collapse;
width: 90%;
border: 1px  #9e0505;
COLOR: #3e3f5c; 
FONT-FAMILY: Arial; 

}

th, td {
      border: 1px solid #ccc;
      padding: 8px;
      text-align: left;
    }
    th {
      cursor: pointer;
    }
    th.sort-asc::after {
      content: "🔼";
    }
    th.sort-desc::after {
      content: "🔽";
    }

</style>
    </head>
    <body>
     <header>
            <h1>Uboru</h1> Simplifing Association Management Software.
      </header>
        <div class="navbar">
            <a href="index.php">Home</a>
            <a href="about.php">About</a>
           <a href="contact.php">Contact Us</a>
           <a href="support.php">Support</a>
            
        </div>
    
        <div align = "center">
     
            <h2>A trusted IT service provider in operation since 2001. </h2>
			 <section class="widgets">
			 <div class="widget"><p align="left">Software application services are essential tools for your non-profit when you are aiming to enhance customer interactions and streamline operations.</p>
            </div>
                   
                
          </section>
			
			<section class="widgets">

        <div class="widget"><h2> Application Services  </h2><p align="left">
  Our appliction services provides a centralized platform where your organization can store and manage contacts and membership data, track sales, and automate various marketing efforts. 
 </p>
 </div>
                
        <div class="widget"><h2> Sign up to demo Uboru! </h2>
				<p> <button id='openPopup'>Sign Up</button> </p>
				
				</div>
        </section>
			
			</div>
      <div class='wrap'>
            <div id='popup' class='popup'>
                  <div class='popup-content'>
                    <span class='close'>&times;</span>
                    <form  action= "signup/index.php" method='Post' enctype='application/x-www-form-urlencoded'>
                        
                    <p align="left"> 
                    <font class="Menu_Name">Demo Request Contact Information</font>
                        <hr> 
                        <label for="name"><font class="R1">First Name:</font></label>
                        <input type="text" id="name" name="fname" value = "" required placeholder = "First Name">
                        <label for="Contact"><font class="R1">Last Name:</font></label>
                        <input type="text" id="Contact" name="lname" value = "" required placeholder = "Last Name">
                        <label for="Contact"><font class="R1">Company:</font></label>
                        <input type="text" id="company" name="company" value = "" required placeholder = "Company">
                        <label for="email"><font class="R1">Email:</font></label>
                        <input type="email" id="email" name="email"  value = "" required placeholder = "Email">
                        <label for="Phone"><font class="R1">Phone Number:</font></label>
                        <input type="text" id="phone" name="phone" value = "" required placeholder = "Phone"> 
                        <input type="hidden" value="1" name = "useraction">	
                        <input type="submit" value="Submit"> 
                        </p>
                        </form>
                      </div>
                </div>
        </div>    
             <script src='script.js'></script>    
			
<footer>
        <p>&copy; 2025 Uboru is a service of <a href="http://www.acosolutions.com">ACO Solutions Inc. </a> All rights reserved.</p>
    </footer>			
</body>
</html>

                               

Whois info of domain

Domain Name: UBORU.COM
Registry Domain ID: 2946128404_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.hostinger.com
Registrar URL: http://www.hostinger.com
Updated Date: 2024-12-29T16:07:39Z
Creation Date: 2024-12-29T16:07:34Z
Registry Expiry Date: 2025-12-29T16:07:34Z
Registrar: HOSTINGER operations, UAB
Registrar IANA ID: 1636
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +37064503378
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: NS1.DNS-PARKING.COM
Name Server: NS2.DNS-PARKING.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-15T12:44:30Z <<<
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