Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - p10.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx
Date: Thu, 15 May 2025 10:25:07 GMT
Content-Type: text/html
Content-Length: 162
Connection: keep-alive
Location: https://p10.com/

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://p10.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx
Date: Thu, 15 May 2025 10:25:07 GMT
Content-Type: text/html
Content-Length: 7843
Last-Modified: Tue, 31 Dec 2024 18:38:11 GMT
Connection: keep-alive
ETag: "67743a13-1ea3"
X-Powered-By: PleskLin
Accept-Ranges: bytes

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: p10.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" >
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-0YD0NGN5TG"></script>
<script> window.dataLayer = window.dataLayer || [];
   function gtag(){dataLayer.push(arguments);}
   gtag('js', new Date());

   gtag('config', 'G-0YD0NGN5TG');
</script>

	<title>P10.com -- 10-character password generator utility</title>
	<!-- Last Updated: 2022-02-10 -->
	<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
	<meta name="description" content="P10.com -- 10-character password generator utility" />
	<meta name="keywords" content="password, passwords, strong passwords, password generator" />
	<meta name="robots" content="index, follow" />
	<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
	<link rel="stylesheet" type="text/css" href="./ultimate.css" />
	
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css" />
<script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js"></script>
<script>
window.addEventListener("load", function(){
window.cookieconsent.initialise({
  "palette": {
    "popup": {
      "background": "#000"
    },
    "button": {
      "background": "#f1d600"
    }
  },
  "position": "bottom-right",
  "content": {
    "message": "This site uses cookies, including third-party cookies, to deliver its services, to personalize ads and to analyze traffic. By continuing to use this site, you agree to its use of cookies.",
    "href": "http://privacy.loffs.com/"
  }
})});
</script>
	

<script type="text/javascript">
<!-- Original:  [email protected] -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function getRandomNum(lbound, ubound) {
return (Math.floor(Math.random() * (ubound - lbound)) + lbound);
}
function getRandomChar(number, lower, upper, other, extra) {
var numberChars = "0123456789";
var lowerChars = "abcdefghijklmnopqrstuvwxyz";
var upperChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
var otherChars = "!@#$%*-=+?";
var charSet = extra;
if (number == true)
charSet += numberChars;
if (lower == true)
charSet += lowerChars;
if (upper == true)
charSet += upperChars;
if (other == true)
charSet += otherChars;
return charSet.charAt(getRandomNum(0, charSet.length));
}
function getPassword(length, extraChars, firstNumber, firstLower, firstUpper, firstOther,
latterNumber, latterLower, latterUpper, latterOther) {
var rc = "";
if (length > 0)
rc = rc + getRandomChar(firstNumber, firstLower, firstUpper, firstOther, extraChars);
for (var idx = 1; idx < length; ++idx) {
rc = rc + getRandomChar(latterNumber, latterLower, latterUpper, latterOther, extraChars);
}
return rc;
}
// End -->
</script>

</head>
<body>

<div id="header">
<center>
    <img src="p10logo.gif" height="100" width="299" border="0">
    <h2>10-character password generator utility</h2>
</center>
</div>
<div class="colmask holygrail">
    <div class="colmid">
        <div class="colleft">
            <div class="col1wrap">
                <div class="col1">
					<!-- Column 1 start -->
<h2>Password Generator</h2>
<center>
<table width=95% border=1>
<tr align=center>
<td>
<form name="myform">
<table border=0>
<tr>
<td>
First character can be:
</td>
<td>
<input type=checkbox name=firstNumber>Number
<input type=checkbox name=firstLower checked>Lowercase
<input type=checkbox name=firstUpper checked>Uppercase
<input type=checkbox name=firstOther>Other
</td>
</tr>
<tr>
<td>
Latter characters can be:
</td>
<td>
<input type=checkbox name=latterNumber checked>Number
<input type=checkbox name=latterLower checked>Lowercase
<input type=checkbox name=latterUpper checked>Uppercase
<input type=checkbox name=latterOther checked>Other
</td>
</tr>
<tr>
<td>
Password length:
</td>
<td>
10 <input type=hidden name=passwordLength value="10" size=3>
</td>
</tr>
<tr>
<td>
Extra password characters: 
</td>
<td>
<input type=text name=extraChars size=20>
</td>
</tr>
</table>
</td>
</tr>
<tr align=center>
<td>
New password: 
<input type=text name=password size=20>
<br>
<input type=button value="Generate password" onClick="document.myform.password.value =
getPassword(document.myform.passwordLength.value, document.myform.extraChars.value,
document.myform.firstNumber.checked, document.myform.firstLower.checked,
document.myform.firstUpper.checked, document.myform.firstOther.checked,
document.myform.latterNumber.checked, document.myform.latterLower.checked,
document.myform.latterUpper.checked, document.myform.latterOther.checked);">
</form>
</td>
</tr>
</table>
</center>

<h2>Introduction</h2>
<p>Many websites require that users create a username and <a href="http://en.wikipedia.org/wiki/Password" target="_blank">password</a> in order to personalize their content. All too often,
people select passwords that are very easy for others to guess. If a password is compromised, it can lead to various problems including fraud and <a href="http://www.ftc.gov/bcp/edu/microsites/idtheft/consumers/about-identity-theft.html" target="_blank">identity theft</a>. P10.com helps you
generate stronger passwords.</p>

<h2>Instructions</h2>
<p>We've preselected the most common options in the password generator above. Simply click the "Generate password" button to generate a new password.</p>
<p>The first character is often restricted to be a letter, so "number" and "other" are not selected by default. However, you can check those boxes in order to have an even stronger password,
if you know for sure that your system permits non-letters as the first character in the password.</p>
<p>Using symbols, in addition to letters and numbers, makes passwords much more difficult for others to guess. By default, the "other" characters include the following common symbols: ! @ # $ % * - = + ?  If your system permits additional
symbols to be entered as valid password characters (such as periods, round brackets, square brackets, etc.) you may enter them into the "Extra password characters" field.</p>
<p><strong>As the password is generated entirely by Javascript in your browser, we will never know your password. For extra safety, you may wish to clear your browser cache after visiting P10.</strong></p>


<h2>Other Resources</h2>
<p>Here are some other resources that will help you learn more about and manage passwords:</p>
<ul>
	<li><a href="http://en.wikipedia.org/wiki/Password">Wikipedia</a> - article on passwords at Wikipedia</li>
	<li><a href="http://www.microsoft.com/protect/fraud/passwords/checker.aspx">Password Checker</a> - Microsoft utility to test the strength of your password</li>
	<li><a href="http://passwordsafe.sourceforge.net/">Password Safe</a> - open source password manager software designed by world-renowned security expert <a href="http://www.schneier.com/passsafe.html">Bruce Schneier</a></li>
</ul>

    				<!-- Column 1 end -->
                </div>
            </div>
            <div class="col2">
				<!-- Column 2 start -->
<center>
<br>

<br>
<br>
<p><a href="http://privacy.loffs.com/">Privacy Policy</a><br>
<a href="http://www.LOFFS.com/?src=P10">Contact Us</a></p>
</center>
              
                <!-- Column 2 end -->
            </div>
            <div class="col3">
				<!-- Column 3 start -->
                <h2><center>
                
                
                </center></h2>
                

				<!-- Column 3 end -->
            </div>
        </div>
    </div>
</div>
<div id="footer">
    <p align="center">&copy;2010-2025 <a href="http://P10.com/">P10.com</a></p>
</div>


</body>
</html>
                               

Whois info of domain

Domain Name: P10.COM
Registry Domain ID: 21980025_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.tucows.com
Registrar URL: http://www.tucows.com
Updated Date: 2023-01-23T13:56:59Z
Creation Date: 2000-03-09T15:25:56Z
Registry Expiry Date: 2027-03-09T15:25:56Z
Registrar: Tucows Domains Inc.
Registrar IANA ID: 69
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.4165350123
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Name Server: NS1.SYSTEMDNS.COM
Name Server: NS2.SYSTEMDNS.COM
Name Server: NS3.SYSTEMDNS.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-15T10:24:45Z <<<
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