Log

WHOIS.C.NF Log

WHOIS.C.NF version 4.0
2023/01/01


These 3 following domain can access our whois services:


谁是.com -- 301 Redirect (With Path)
WHOIS.C.NF -- Direct Access (With Path)

Introduction

  • Name : WHOIS.C.NF
  • Item Version : 2.0
  • Author :
  • License : WHOIS.C.NF is free software to product in public use. TERMS OF USE: You are not authorized to access or query our services (including Port.WHOIS.C.NF, *.WHOIS.C.NF & WHOIS.C.NF) through the use of electronic processes that are high-volume and automated except it is reasonably necessary to use, court orders or notify us in advance ( ).

Thank you so much for using WHOIS.C.NF and for being our loyal user. You are awesome!
WHOIS.C.NF is completely free for anyone to use legally.

This log is to help you regarding each matters of WHOIS.C.NF and mark changes of WHOIS.C.NF. Please go through the documentation carefully to understand how WHOIS.C.NF works and how to use WHOIS.C.NF properly.

Before get started

We highly encourage you to get familiar with this documentation file. Spending half an hour reading the manual may save a lot of your time and avoid questions with obvious answers.

To quickly find the necessary information, you can use your browser's built-in "Search" tool

  • Press the CMD+F (in macOS)
  • press CTRL+F (in Windows)

Getting Started #back to top


WHOIS.C.NF, which is a responsive layout for tablet and other mobile devices, is based on the HTML5 structure and css with PHP 7 as server-side processing.

To use WHOIS.C.NF you must be using at least TLS 1.2, the latest version of Chrome and other compatible browsers.

How do I whois a domain name?#back to top


Go to WHOIS.C.NF, input the domain name to whois. e.g. [ WHOIS.C.NF ] / [ cia.gov ], then click "whois" button

What's new in WHOIS.C.NF 4.0?
WHOIS.C.NF version 4.0 supports High Fault-tolerant Input (HFI).

What is High Fault-tolerant Input (HFI)?
In WHOIS.C.NF v1.0, you are not allowed to enter the URL (domain name with http/https:// protocol).
But, in WHOIS.C.NF 4.0,you can input like [ https://WHOIS.C.NF ], it will whois and clear the protocol directly.

Here are some more Fault-tolerant Input (HFI) examples at below:

http://WHOIS.C.NF --> WHOIS.C.NF
https://WHOIS.C.NF --> WHOIS.C.NF
https://WHOIS.C.NF/log --> WHOIS.C.NF
http://WHOIS.C.NF/index.html --> WHOIS.C.NF
http://whois。C。NF --> WHOIS.C.NF
whois。C。NF/log --> WHOIS.C.NF
It's real, Try it yourself >>>

Fault-tolerant Input (HFI) #back to top


Common input error is expected:

Protocol like http:// or https:// is default neglected by WHOIS.C.NF v4.0
www before the domain is neglected in specific situation.
File /path/ after the domain name is neglected.

Common Examples:

http://WHOIS.C.NF --> WHOIS.C.NF
https://WHOIS.C.NF --> WHOIS.C.NF
https://WHOIS.C.NF/log --> WHOIS.C.NF
http://WHOIS.C.NF/index.html --> WHOIS.C.NF
http://whois。C。NF --> WHOIS.C.NF
whois。C。NF/log --> WHOIS.C.NF
It's real, Try it yourself >>>

IDN Punycode Support#back to top


From WHOIS.C.NF 2.0, IDN is supported.

Same way to WHOIS a IDN as a normal domain name.
From WHOIS.C.NF v2.0, it auto recognize IDN and convert it into IDN form.

Click To Copy#back to top


From WHOIS.C.NF 2.0, Normal domain names and IDN are clicked to open link in new window and copy to clipboard.

Click the [1] to copy normal domain names.
Click the [2] to copy IDN / PUNYCODE.

To whois quickly #back to top


Directly input the basic form in the address bar of your browser.

Basic form: WHOIS.C.NF/[domain/URL(with protocol and path is also okay.)]
Just input the following in your address bar is fine:
WHOIS.C.NF/c.nf
WHOIS.C.NF/https://c.nf/index.html

Who create WHOIS.C.NF? #back to top


WHOIS.C.NF is created by [email protected].

Can i join WHOIS.C.NF?#back to top


No, you can't.

WHOIS.C.NF is not a team project, it is completely hosted by [email protected]
Currently, do not have intention to work as a project or a teamwork, it is just a tool for free.
However, if you would love to contribute WHOIS.C.NF, you can test WHOIS.C.NF and report bugs to [email protected]
Some of the whois server is outdated as configured in WHOIS.C.NF, if you have latest information about whois servers, contact [email protected]

Source code?#back to top


WHOIS.C.NF is not a open-sourced software. All Rights Reserved by WHOIS.C.NF 2023

If you really love WHOIS.C.NF, contact [email protected] or just bookmark it would be just fine.

WHOIS.C.NF steals data from me?#back to top


No, we are not intended to record data for now.

But there are chances we will change this policy in the future, we will keep the public updated and mentioned in homepage and here if we record data from you.
By Data, it is including but not only your IP Address(to prevent spams), your whois record, etc.

Variables Usage #back to top


Please adjust the sample code according to your own situation.

You are not authorized to access or query this
Whois database through the use of electronic
processes that are high-volume and automated.

GET  https://WHOIS.C.NF/WHOIS.C.NF
						    //Js

<script src="https://cdn.jsdelivr.net/npm/jquery/dist/jquery.min.js"></script>

<script>
$.ajax({
url: 'https://WHOIS.C.NF/WHOIS.C.NF',
type: 'post',
dataType: 'json',
async: false,
data: {
format : 'json',
},
beforeSend:function(){

},
complete:function(){

},
error: function() {

},
success: function (res) {

if(res.code === 200){
console.log(res)
}else{
console.log(res)
}
}
})
</script>

						    // PHP
						    
<?php

header('Access-Control-Allow-Origin:*');
header('content-type:application/json');

$url  = 'https://WHOIS.C.NF/WHOIS.C.NF';

$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_HEADER, 0);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($curl, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
curl_setopt($curl, CURLOPT_POSTFIELDS, [
    'format' => 'json',
]);
$data = curl_exec($curl);
curl_close($curl);

echo $data;

$data = json_decode(trim($data,chr(239).chr(187).chr(191)));
echo $data->code;

Disclaimer #back to top

The normal operation of WHOIS.C.NF service is not guaranteed,
and your privacy has nothing to do with WHOIS.C.NF


You are not authorized to access or query this
Whois database through the use of electronic processes
that are high-volume and automated.

No customer support service is provided.

If you have doubts, look this log first.

This WHOIS service is only for legally use.


TERMS OF USE: You are not authorized to access
or query our services (including Port.WHOIS.C.NF,
*.WHOIS.C.NF & WHOIS.C.NF) through the use of electronic
processes that are high-volume and automated except
it is reasonably necessary to use,
court orders or notify us in advance ( [email protected] ).

Support#back to top

No Customer services.
Any problem, contact [email protected]

Version History (Changelog) #back to top

Once again, thank you so much for using WHOIS.C.NF.


Changelog

-----------------------------------------------------------------------------------------			
WHOIS.C.NF version 4.0 (2023/01/01) Production Stage 3&4
-----------------------------------------------------------------------------------------	
- update pictures & log context
- bug fix

-----------------------------------------------------------------------------------------						
WHOIS.C.NF version 2.0 (2021/06/23) Production Stage2
-----------------------------------------------------------------------------------------
- upgrade Knowledgebase page
- fix some responsive issues
- other UI and UX upgrades
- upgrade docs files
- create Log section
- IDN Support
- Fault-tolerant Input (HFI) support

-----------------------------------------------------------------------------------------
WHOIS.C.NF version 1.7 (2021/4/5) Not Released for Public
-----------------------------------------------------------------------------------------
- add new style
- fix responsive issue and other issues
- other UI and UX upgrades
- upgrade docs files

-----------------------------------------------------------------------------------------
WHOIS.C.NF version 1.2 (2021/1/17) Production Stage1
-----------------------------------------------------------------------------------------
- upgrade to PHP 7
- fix other bugs

-----------------------------------------------------------------------------------------
WHOIS.C.NF version 1.1 (2020/12/25) Production Stage0
-----------------------------------------------------------------------------------------
- fix code error
- fix search button
- add new style

-----------------------------------------------------------------------------------------
WHOIS.C.NF version 1.0.0 (2020/9/1) Initial Stage
-----------------------------------------------------------------------------------------
- actual release



                                

Copyright #back to top

All Rights Reserved by WHOIS.C.NF 2023