Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
200 OK - py99.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Connection: close
Date: Thu, 01 May 2025 08:36:33 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Set-Cookie: JSESSIONID=D30C63F03254E7FBDCE75B6BBF67C174; Path=/
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: py99.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])









<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>企业短信平台</title>
<link href="css/default.css" rel="stylesheet" type="text/css">
<link rel="shortcut icon" href="favicon.ico" />
<style type="text/css">
body {background:url(images/loginbg.jpg) top center no-repeat;}
.tiplabel {padding:0px; color:#FF0000; padding-left:45px;}
.login_input {border:1px solid #d0d9e7;height:24px;line-height:24px;
	padding:0 3px;background-color:#fcfdff;font-size:10pt;font-family: "宋体", "微软雅黑", "Arial";
}
</style>
<script language="javascript" src="script/jquery.js" type="text/javascript"></script>
<script language="javascript1.2" type="text/javascript">
function RefreshCode(obj){
	obj.src = obj.src + "?code=" + Math.random();
}
$(document).ready(function() {
	$("#loginForm").submit(function(){
		return login();
	});
	
	$("#username").bind("focus", function() {
		var ret = chkUsername();
		if(ret < 0) {
			$("#div_username_err_info").show();
			showError("username", ret);
		} else {
			$("#div_username_err_info").hide();
		}
	});
	$("#username").bind("blur", function(){
		var ret = chkUsername();
		if (ret < 0) {
			$("#div_username_err_info").show();
			showError("username", ret);
		} else {
			$("#div_username_err_info").hide();
		}
		return false;
	});
	$("#password").bind("focus", function() {
		var ret = chkPassword();
		if(ret < 0) {
			$("#div_password_err_info").show();
			showError("password", ret);
		} else {
			$("#div_password_err_info").hide();
		}
	});
	$("#password").bind("blur", function(){
		var ret = chkPassword();
		if (ret < 0) {
			$("#div_password_err_info").show();
			showError("password", ret);
		} else {
			$("#div_password_err_info").hide();
		}
		return false;
	});
	$("#validCode").bind("focus", function() {
		var ret = chkValidCode();
		if(ret < 0) {
			$("#div_validcode_err_info").show();
			showError("validcode", ret);
		} else {
			$("#div_validcode_err_info").hide();
		}
	});
	$("#validCode").bind("blur", function(){
		var ret = chkValidCode();
		if (ret < 0) {
			$("#div_validcode_err_info").show();
			showError("validcode", ret);
		} else {
			$("#div_validcode_err_info").hide();
		}
		return false;
	});
	if ("" == $("#username").val()) {
		$("#username").focus();
	} else {
		$("#password").focus();
	} 
	
	if ("" == $("#username").val()) {
		$("#username").val(getCookie("sysUerName"));
	}
	
	if ("" == $("#password").val()) {
		$("#password").val(getCookie("sysPassword"));
	}
}); 

function chkPassword() {
	var password = $.trim($("#password").val());
	if (password == "") {
		return 0;
	} else if(password.length < 1 || password.length > 20){
		//合法长度为4-20个字符
		return -1;
	}
	//else if(! /^\w+$/.test(password)){
		//只能包含_,英文字母,数字
	//	return -2;
	//}
	return 1;
}

function chkValidCode() {
	var validCode = $.trim($("#validCode").val());
	if (validCode == "") {
		return 0;
	} else if(validCode.length != 4){
		//合法长度为4个字符
		return -1;
	} 
	//else if(! /^\w+$/.test(validCode)){
		//只能包含_,英文字母,数字
	//	return -2;
	//}
	return 1;
}

function chkUsername() {
	var username = $.trim($("#username").val());
	if (username == "") {
		return 0;
	} else if( /^\d.*$/.test(username)){
		//用户名不能以数字开头
		//return -1;
	} else if(username.length < 1 || username.length > 20){
		//合法长度为4-20个字符
		return -2;
	}
	//else if(! /^\w+$/.test(username)){
		//用户名只能包含_,英文字母,数字
	//	return -3;
	//} else if(! /^([a-z]|[A-Z])[0-9a-zA-Z_]+$/.test(username)){
		//用户名只能英文字母开头
	//	return -4;
	//}
	return 1;
} 

function login() {
	var ret = chkUsername();
	if (ret != 1) {
		$("#div_username_err_info").show();
		showError("username", ret);
		return false;
	} else {
		$("#div_username_err_info").hide();
	}
	ret = chkPassword();
	if (ret != 1) {
		$("#div_password_err_info").show();
		showError("password", ret);
		return false;
	} else {
		$("#div_password_err_info").hide();
	}
	ret = chkValidCode();
	if (ret != 1) {
		$("#div_validcode_err_info").show();
		showError("validcode", ret);
		return false;
	} else {
		$("#div_validcode_err_info").hide();
	}
	
	var chk_value =[];    
	$('input[name="loginCookie"]:checked').each(function(){    
		chk_value.push($(this).val());    
	 });    
	
	if(chk_value.length > 0){
		setCookie("sysUerName", $("#username").val(), 3*365);
		setCookie("sysPassword", $("#password").val(), 3*365);
	}
	
	return true;
}

function showError(type, ret) {
	if ("username" == type) {
		if (ret == -1){
			$("#div_username_err_info").html("用户名不能以数字开头");
	    } else if(ret == -2){
			$("#div_username_err_info").html("合法长度为4-20个字符");
	    } else if(ret == -3){
	     	$("#div_username_err_info").html("用户名只能包含_,英文字母,数字 ");
	    } else if(ret == -4){
			$("#div_username_err_info").html("用户名只能英文字母开头");
	    } else if (ret == 0) {
	    	$("#div_username_err_info").html("请输入用户名");
	    }
	} else if ("password" == type) { 
		if(ret == -1){
			$("#div_password_err_info").html("合法长度为4-20个字符");
	    } else if(ret == -2) {
	     	$("#div_password_err_info").html("用户名只能包含_,英文字母,数字 ");
	    } else if (ret == 0) {
	    	$("#div_password_err_info").html("请输入密码");
	    }
	} else if ("validcode" == type) { 
		if(ret == -1){
			$("#div_validcode_err_info").html("合法长度为4个字符");
	    } else if(ret == -2){
	     	$("#div_validcode_err_info").html("用户名只能包含英文字母,数字 ");
	    } else if (ret == 0) {
	    	$("#div_validcode_err_info").html("请输入验证码");
	    }
	}
}
function setCookie(name, value) { 
    var argv = setCookie.arguments; 
    var argc = setCookie.arguments.length; 
    var expires = (argc > 2) ? argv[2] : null; 
    if(expires!=null) 
    { 
        var LargeExpDate = new Date (); 
        LargeExpDate.setTime(LargeExpDate.getTime() + (expires*1000*3600*24));         
    } 
    document.cookie = name + "=" + escape(value)+((expires == null) ? "" : ("; expires=" +LargeExpDate.toGMTString())); 
}

function getCookie(name) { 
    var search = name+"=";
    if(document.cookie.length > 0) { 
        offset = document.cookie.indexOf(search); 
        if(offset != -1) { 
            offset += search.length;
            end = document.cookie.indexOf(";", offset);
            if(end == -1) {
            	end = document.cookie.length;
            } 
            return unescape(document.cookie.substring(offset, end));
        }
    } 
    return "" 
} 

function deleteCookie(name) { 
    var expdate = new Date(); 
    expdate.setTime(expdate.getTime() - (86400 * 1000 * 1)); 
    setCookie(name, "", expdate); 
} 
</script>
</head>
<body>
<form action="login_verify.do" method="post" id="loginForm">
<div id="login">
  <div id="loginlogo"></div>
  <div id="logindiv">
    <div class="logintab">
      <div class="wy" onClick="location.href='login.do'" id="divwy" style="cursor:pointer;">用户登录</div>
    </div>
    <div class="loginframe">
      <div class="logintable">
        <div class="login_line">
          <label>用户名:</label>
          <input type="text" class="login_input" name="username" id="username" size="20">
          <div id="div_username_err_info" class="tiplabel"></div>
        </div>
        <div class="login_line">
          <label>密&nbsp;&nbsp;码:</label>
          <input type="password" class="login_input" name="password" id="password" size="20">
          <div id="div_password_err_info" class="tiplabel"></div>
        </div>
        <div class="login_line login_line">
          <label>验证码:</label>
          <input type="text" class="login_input"  id="validCode" autocomplete="off" name="validCode" size="20"><img src="loadpicture.do" onclick="RefreshCode(this)" onmouseover="this.style.cursor='pointer'"  style="height:21px;padding-left:1em;" />
          <div id="div_validcode_err_info" class="tiplabel"></div>
        </div>
        <div class="login_line login_line_a"> 
        	<input type="checkbox" name="loginCookie" value="1">记住登录
	        <input type="submit" class="std_button" value="登录"> 
	        <input type="reset" class="std_button" value="重置">
        </div>
        <div class="login_line login_line"></div>
      </div>
    </div>
  </div>
</div>
</form>
</body>
</html>
                               

Whois info of domain

Domain Name: PY99.COM
Registry Domain ID: 123609213_DOMAIN_COM-VRSN
Registrar WHOIS Server: grs-whois.hichina.com
Registrar URL: http://wanwang.aliyun.com
Updated Date: 2024-06-11T04:19:43Z
Creation Date: 2004-06-28T03:51:42Z
Registry Expiry Date: 2025-06-28T03:51:42Z
Registrar: Alibaba Cloud Computing Ltd. d/b/a HiChina (www.net.cn)
Registrar IANA ID: 1599
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +86.95187
Domain Status: ok https://icann.org/epp#ok
Name Server: NS19.XINCACHE.COM
Name Server: NS20.XINCACHE.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-01T08:36:24Z <<<
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