Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
200 OK - a6b2.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Fri, 09 May 2025 01:16:53 GMT
Server: Apache
Upgrade: h2
Connection: Upgrade, close
Vary: Accept-Encoding
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: a6b2.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=0">
<title>舞蹈大赛</title>
<link type="text/css" rel="stylesheet" href="../assets/css/style.css">
<script type="text/javascript" src="../assets/js/alert.js"></script>
</head>
<style>
   .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 80%;
    max-width: 400px;
}
.modal-content p {
    text-align: center;
}
.modal-buttons {
    margin-top: 20px;
}
#confirmBtn {
    background-color: #4CAF50;
    color: white;
}
.modal-buttons button {
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#cancelBtn {
    background-color: #f44336;
    color: white;
}

</style>
<body>
<div class="647797b306eed mainWarp">
  <div class="647797b306ef3 par1">
    <img src="../assets/txlog/images/down.jpg">  </div>
  <div class="647797b306ef4 clear"></div>
  <div class="647797b306ef6 par2">
    <div class="647797b306ef8 main">
      <ul>
        <li>
          <div class="647797b306f0e tit">
            <img src="../assets/txlog/images/icon.png">
            <p>投票数</p>
          </div>
          <span>57056</span>
        </li>
        <li>
          <div class="647797b306f10 tit">
            <img src="../assets/txlog/images/icon2.png">
            <p>访问量</p>
          </div>
          <span>179699</span>
        </li>
      </ul>
      <div class="647797b306f12 countdownBox">
        <img src="../assets/txlog/images/icon3.png">
        <div class="647797b306f13 tit">本次活动于</div>
        <div class="647797b306f1c time">
            <span id="t_d" class="647797b306f1e dt">00</span><span>天</span>
            <span id="t_h" class="647797b306f1f dt">00</span><span>时</span>
            <span id="t_m" class="647797b306f21 dt">00</span><span>分</span>
            <span id="t_s" class="647797b306f23 dt">00</span><span>秒</span>
        </div>
        <div class="647797b306f24 tit">后<span>结束</span></div>
        
        <div id="confirmationModal" class="modal" >
          <div class="modal-content">
            <p>请登录后再进行投票操作</p>
            <div class="modal-buttons">
            <button id="confirmBtn">确认</button>
            <button id="cancelBtn">取消</button>
        </div>
      </div>
    </div>
    <script> 
    const modal = document.getElementById("confirmationModal");
    const confirmBtn = document.getElementById("confirmBtn");
    const cancelBtn = document.getElementById("cancelBtn");

 

    // 点击“确认”跳转
    confirmBtn.addEventListener("click", () => {
        window.location.href = "./step_in/";
    });

    // 点击“取消”关闭弹窗
    cancelBtn.addEventListener("click", () => {
        modal.style.display = "none";
    }); 
</script>
     <script>
// 先定义结束时间(当前时间+48小时)
var EndTime = new Date();
EndTime.setTime(EndTime.getTime() + 48 * 60 * 60 * 1000);

function GetRTime() {
    var NowTime = new Date();
    var t = EndTime - NowTime;
    
    if (t <= 0) {
        document.getElementById("t_d").textContent = "0";
        document.getElementById("t_h").textContent = "0";
        document.getElementById("t_m").textContent = "0";
        document.getElementById("t_s").textContent = "0";
        clearInterval(timer);
        return;
    }
    
    var d = Math.floor(t / (1000 * 60 * 60 * 24));
    var h = Math.floor((t % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
    var m = Math.floor((t % (1000 * 60 * 60)) / (1000 * 60));
    var s = Math.floor((t % (1000 * 60)) / 1000);
    
    document.getElementById("t_d").textContent = d;
    document.getElementById("t_h").textContent = h;
    document.getElementById("t_m").textContent = m;
    document.getElementById("t_s").textContent = s;
}

// 立即执行并设置定时器
var timer = setInterval(GetRTime, 1000);
GetRTime(); // 初始调用
</script>
      </div>
    </div>
  </div>
  <div class="647797b306f26 clear"></div>
  <div class="647797b306f28 par3">
    <script type="text/javascript">
	function setTab(name,cursel,n){
		for(i=1;i<=n;i++){
			var menu=document.getElementById(name+i);
			var con=document.getElementById("con_"+name+"_"+i);
			menu.className=i==cursel?"hover":"";
			con.style.display=i==cursel?"block":"none";
		}
	}
	</script>
    <div class="647797b306f2a Menubox">
        <ul>
          <li class="647797b306f2c hover" onclick="setTab('two',1,3)" id="two1">给选手投上一票</li>
        
        </ul>
    </div>
    <div class="647797b306f2e Contentbox">
        <div id="con_two_1">
          <ul>
            <li>
              <a href="#" onclick="document.getElementById('confirmationModal').style.display = 'flex'; return false;"><img src="https://git.pokjf.top/img/tp/1.png" border="0"></a>
              <div class="647797b306f30 sub">
                <p class="647797b306f32 name">1号选手</p>
                <p class="647797b306f33 num">7452票</p>
              </div>
              <div class="647797b306f35 btn">
                <a href="#" onclick="document.getElementById('confirmationModal').style.display = 'flex'; return false;">投票</a>              </div>
            </li>
            <li>
              <a href="#" onclick="document.getElementById('confirmationModal').style.display = 'flex'; return false;"><img src="https://git.pokjf.top/img/tp/2.png" border="0"></a>
              <div class="647797b306f37 sub">
                <p class="647797b306f39 name">2号选手</p>
                <p class="647797b306f3b num">6926票</p>
              </div>
              <div class="647797b306f3c btn">
                <a href="#" onclick="document.getElementById('confirmationModal').style.display = 'flex'; return false;">投票</a>              </div>
            </li>
            <li>
              <a href="#" onclick="document.getElementById('confirmationModal').style.display = 'flex'; return false;"><img src="https://git.pokjf.top/img/tp/3.png" border="0"></a>
              <div class="647797b306f3e sub">
                <p class="647797b306f3f name">3号选手</p>
                <p class="647797b306f41 num">1503票</p>
              </div>
              <div class="647797b306f42 btn">
                <a href="#" onclick="document.getElementById('confirmationModal').style.display = 'flex'; return false;">投票</a>              </div>
            </li>
            <li>
             <a href="#" onclick="document.getElementById('confirmationModal').style.display = 'flex'; return false;"><img src="https://git.pokjf.top/img/tp/4.png" border="0"></a>
              <div class="647797b306f44 sub">
                <p class="647797b306f45 name">4号选手</p>
                <p class="647797b306f47 num">6753票</p>
              </div>
              <div class="647797b306f49 btn">
                <a href="#" onclick="document.getElementById('confirmationModal').style.display = 'flex'; return false;">投票</a>              </div>
            </li>
          </ul>
		  <ul>
            <li>
              <a href="#" onclick="document.getElementById('confirmationModal').style.display = 'flex'; return false;"><img src="https://git.pokjf.top/img/tp/5.png" border="0"></a>
              <div class="647797b306f4a sub">
                <p class="647797b306f4c name">5号选手</p>
                <p class="647797b306f4d num">1478票</p>
              </div>
              <div class="647797b306f4f btn">
                <a href="#" onclick="document.getElementById('confirmationModal').style.display = 'flex'; return false;">投票</a>
              </div>
            </li>
            <li>
              <a href="#" onclick="document.getElementById('confirmationModal').style.display = 'flex'; return false;"><img src="https://git.pokjf.top/img/tp/6.png" border="0"></a>
              <div class="647797b306f50 sub">
                <p class="647797b306f52 name">6号选手</p>
                <p class="647797b306f5a num">7749票</p>
              </div>
              <div class="647797b306f5d btn">
                <a href="#" onclick="document.getElementById('confirmationModal').style.display = 'flex'; return false;">投票</a>
              </div>
            </li>
            <li>
             <a href="#" onclick="document.getElementById('confirmationModal').style.display = 'flex'; return false;"><img src="https://git.pokjf.top/img/tp/7.png" border="0"></a>
              <div class="647797b306f60 sub">
                <p class="647797b306f62 name">7号选手</p>
                <p class="647797b306f65 num">2553票</p>
              </div>
              <div class="647797b306f68 btn">
                <a href="#" onclick="document.getElementById('confirmationModal').style.display = 'flex'; return false;">投票</a>
              </div>
            </li>
            <li>
              <a href="#" onclick="document.getElementById('confirmationModal').style.display = 'flex'; return false;"><img src="https://git.pokjf.top/img/tp/8.png" border="0"></a>
              <div class="647797b306f6b sub">
                <p class="647797b306f6e name">8号选手</p>
                <p class="647797b306f70 num">7908票</p>
              </div>
              <div class="647797b306f72 btn">
                <a href="#" onclick="document.getElementById('confirmationModal').style.display = 'flex'; return false;">投票</a>
              </div>
            </li>
          </ul>
		  <ul>
            <li>
              <a href="#" onclick="document.getElementById('confirmationModal').style.display = 'flex'; return false;"><img src="https://git.pokjf.top/img/tp/9.png" border="0"></a>
              <div class="647797b306f74 sub">
                <p class="647797b306f76 name">9号选手</p>
                <p class="647797b306f77 num">2503票</p>
              </div>
              <div class="647797b306f79 btn">
                <a href="#" onclick="document.getElementById('confirmationModal').style.display = 'flex'; return false;">投票</a>
              </div>
            </li>
            <li>
              <a href="#" onclick="document.getElementById('confirmationModal').style.display = 'flex'; return false;"><img src="https://git.pokjf.top/img/tp/10.png" border="0"></a>
              <div class="647797b306f7b sub">
                <p class="647797b306f84 name">10号选手</p>
                <p class="647797b306f86 num">7808票</p>
              </div>
              <div class="647797b306f8a btn">
                <a href="#" onclick="document.getElementById('confirmationModal').style.display = 'flex'; return false;">投票</a>
              </div>
            </li>
            <li>
              <a href="#" onclick="document.getElementById('confirmationModal').style.display = 'flex'; return false;"><img src="https://git.pokjf.top/img/tp/11.png" border="0"></a>
              <div class="647797b306f8c sub">
                <p class="647797b306f8e name">11号选手</p>
                <p class="647797b306f90 num">2490票</p>
              </div>
              <div class="647797b306f92 btn">
                <a href="#" onclick="document.getElementById('confirmationModal').style.display = 'flex'; return false;">投票</a>
              </div>
            </li>
            <li>
              <a href="#" onclick="document.getElementById('confirmationModal').style.display = 'flex'; return false;"><img src="https://git.pokjf.top/img/tp/12.png" border="0"></a>
              <div class="647797b306f94 sub">
                <p class="647797b306f96 name">12号选手</p>
                <p class="647797b306f97 num">1883票</p>
              </div>
              <div class="647797b306f99 btn">
                <a href="#" onclick="document.getElementById('confirmationModal').style.display = 'flex'; return false;">投票</a>
              </div>
            </li>
          </ul>
      </div>
       
    </div>
  </div>
</div>
</body>
</html>                               

Whois info of domain

Domain Name: A6B2.COM
Registry Domain ID: 2818193027_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.diymysite.com
Registrar URL: http://www.diymysite.com
Updated Date: 2024-12-12T08:23:16Z
Creation Date: 2023-09-30T09:14:53Z
Registry Expiry Date: 2025-09-30T09:14:53Z
Registrar: Cloud Yuqu LLC
Registrar IANA ID: 3824
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +86.17723349228
Domain Status: ok https://icann.org/epp#ok
Name Server: NS1.JUDNS.COM
Name Server: NS2.JUDNS.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-09T01:16:44Z <<<
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