Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
302 Found - myvsq.com
HTTP Status: 302
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Mon, 05 May 2025 23:52:51 GMT
Server: Apache
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate
Pragma: no-cache
Set-Cookie: PHPSESSID=4ebf584a6cc8fad58852d56f92da7073; path=/
Upgrade: h2,h2c
Connection: Upgrade
Location: ../login.php
host-header: c2hhcmVkLmJsdWVob3N0LmNvbQ==
Content-Length: 0
Content-Type: text/html; charset=UTF-8

HTTP Code 302 Found (Moved Temporarily)

302 status code indicates that the requested resource is temporarily available at a different URL.

When is Code 302 used?

  • When temporarily changing a page URL
  • When testing new content
  • During temporary maintenance

What does Code 302 mean for the user?

The user is automatically redirected to the new URL, but search engines continue to index the old address.

200 OK - ../login.php
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Mon, 05 May 2025 23:52:51 GMT
Server: Apache
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate
Pragma: no-cache
Set-Cookie: PHPSESSID=aa62a508b1d883a21988cdbf5c93d271; path=/
Vary: Accept-Encoding
host-header: c2hhcmVkLmJsdWVob3N0LmNvbQ==
Transfer-Encoding: chunked
Content-Type: text/html; charset=UTF-8

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: myvsq.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>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet">
<link href="https://netdna.bootstrapcdn.com/font-awesome/3.1.1/css/font-awesome.min.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="/img/vsq favicon.png" sizes="32x32">
</head>
<style>
    head {margin: 0; padding: 0; font-family: 'Montserrat', sans-serif; }
    
    .header { display: flex; justify-content: space-between;  background-color: #f3f3f3; padding: 0px 50px;justify-content: center;align-items: center; }
    .logo {text-align: center; flex-grow: 1; background-color:transparent;}
    .menu-icon { cursor: pointer; position: absolute; right: 20px;font-size: 23px;}
    .menu-content { display: none; position: absolute; z-index:2; right: 10px; background-color: #f9f9f9; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);font-size: 14px; border-radius:15px; }
    .menu-content a { color: black; padding: 12px 16px; text-decoration: none; display: block; }
    .menu-content a:hover { background-color: #f1f1f1 }
    .menu-icon i {
  padding: 5px; 
  border: 2px solid transparent; 
  border-radius: 4px; /* Optional: adds rounded corners to the border */}
  .menu-icon i:hover {
  border: 2px solid #A71432; /* Change 'gray' to whatever color you prefer */}
      
      
      
      .input {
  display: flex;
  flex-direction: column;
  width: 200px;
  background-color: #D3D3D3;
  justify-content: center;
  border-radius: 10px;
  transition: 1s;
  padding: 10px;
  overflow: hidden;
}

.value {
  font-size: 15px;
  background-color: transparent;
  border: none;
  padding: 10px;
  color: #A71432;
  display: flex;
  position: relative;
  gap: 5px;
  cursor: pointer;
  border-radius: 10px;
  transition: 1s;
  box-sizing: border-box;
}

.value:not(:active):hover,
.value:focus {
  display: flex;
  box-sizing: border-box;
  border: 2px solid #A71432;
  color: #A71432;
}

.value:focus,
.value:active {
  background-color: #1a1f24;
  outline: none;
  margin-left: 17px;
}

.value::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -15px;
  width: 5px;
  height: 80%;
  background-color: #2f81f7;
  border-radius: 5px;
  opacity: 0;
  transition: 1s;
}

.value:focus::before,
.value:active::before {
  opacity: 1;
}

.value svg {
  width: 20px;
}

.input:hover > :not(.value:hover) {
  transition: 300ms;
  filter: blur(1.5px);
  transform: scale(0.95, 0.95);
}
 
</style>

<body>
<div class="header">
    <div class="logo">
        <a href="https://myvsq.com/dashboard.php" >
        <img src="/img/vsq-logo.png"  alt="Website Logo" style="height: 65px;"> </a> <!-- Adjust logo size as needed -->
    </div>
    </div>

<script>
const menuIcon = document.querySelector(".menu-icon");
const menuContent = document.querySelector(".menu-content");

menuIcon.addEventListener("click", function(event) {
    // Toggle the display state of the menu content
    if (menuContent.style.display === "block") {
        menuContent.style.display = "none";
    } else {
        menuContent.style.display = "block";
    }
    // Toggle the 'clicked' class for the menu icon
    this.classList.toggle('clicked');
    
    // Stop the click event from propagating to the document
    event.stopPropagation();
});

document.addEventListener("click", function() {
    // Hide the menu content if it is visible
    if (menuContent.style.display === "block") {
        menuContent.style.display = "none";
        menuIcon.classList.remove('clicked');
    }
});




</script>
</body>



    <title>Connexion</title>
    <style>
   
 
        body {
    font-family: 'Montserrat', sans-serif;
    background-color: #e0e5ec;
}

.container {
display: flex;
    justify-content: space-evenly;
   
}
.login-container {
    display:block;
     margin-top: 70px;
    width: 400px;
    padding: 20px;
    background-color: #e0e5ec; /* Same as the body for a seamless look */
    border-radius: 15px;
    box-shadow: 
        8px 8px 15px #a3b1c6, /* Dark shadow */
        -8px -8px 15px #ffffff; /* Light shadow */
        
        
}

.login-container h2 {
    margin-bottom: 20px;
    text-align: center;
    color: #333; /* Darker text color for better contrast */
}

.form-group {

    padding: 20px;
  
}

.form-group label {
    display:block;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333; /* Darker text color for better readability */
}

.form-group input {
    display:block;
 
     margin-left:0px;
 
    width: 90%;
    padding: 10px;
    background-color: #e0e5ec;
    border: none;
    border-radius: 10px;
    box-shadow: inset 3px 3px 5px #a3b1c6, /* Inset dark shadow */
                inset -3px -3px 5px #ffffff; /* Inset light shadow */
    outline: none;
    color: #333; /* Darker text color */
}

.form-group button {
    
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background-color: #A71432;
    color: #fff;
    cursor: pointer;
    box-shadow: 3px 3px 5px #a3b1c6, /* Button shadow */
                -3px -3px 5px #ffffff;
}

.form-group button:hover {
    background-color: #e0e5ec;
    color: #A71432;
    border: none;
    box-shadow: inset 3px 3px 5px #a3b1c6, /* Inset dark shadow on hover */
                inset -3px -3px 5px #ffffff; /* Inset light shadow on hover */
}

.error-message {
    color: #A71432;
    margin-top: 10px;
    text-align: center;
}
    </style>


<body>
<div class="container">
<div class="login-container">
    <h2>Connexion au compte</h2>
    <form method="post">
        <div class="form-group">
            <label for="username">Nom d'utilisateur</label>
            <input type="text" id="username" name="username" required>
        </div>
        <div class="form-group">
            <label for="password">Mot de passe</label>
            <input type="password" id="password" name="password" required>
        </div>
        <div class="form-group">
            <button type="submit">Se connecter</button>
        </div>
               
    </form>
</div>
</div>
</body>
</html>                               

Whois info of domain

Domain Name: MYVSQ.COM
Registry Domain ID: 2865755939_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.networksolutions.com
Registrar URL: http://networksolutions.com
Updated Date: 2025-02-26T15:23:38Z
Creation Date: 2024-03-22T10:09:51Z
Registry Expiry Date: 2026-03-22T10:09:51Z
Registrar: Network Solutions, LLC
Registrar IANA ID: 2
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.8777228662
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: NS1.BLUEHOST.COM
Name Server: NS2.BLUEHOST.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-05T23:52:41Z <<<
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