Questions tagged [whois]

The WHOIS protocol allows a user to query the registrant of a particular domain name or IP address.

The WHOIS service is a TCP based protocol that allows you to look up the registrant of a domain name.

The WHOIS service sits on TCP port 43 and can often be found at whois.nic.tld (where 'tld' is replaced with the appropriate top-level domain such as .it or .xyz).

One way to use it is to simply telnet to it and send the domain name followed with at CRLF. For example:

telnet whois.nic.coop 43 midcounties.coop

You will then get a list of all the details about the domain.

415 questions
1
vote
1 answer

What are regrinfo and regyinfo in whois lookup php response data? How do they differ from raw_data in php response data?

I am trying to retrieve the information of domain using phpWhois to know the Registration status, Registrar, Creation and Expiry Dates of the domain. To retrieve the information of domain, use phpWhois\Whois; ---- ---- $domainDetails =…
ishu_oct
  • 13
  • 4
1
vote
0 answers

Why do I get none instead of getting the data? How do I fix this?

I use python whois #https://pypi.org/project/python-whois/ In most cases, I get None. Help please How to solve this problem? import whois w = whois.whois('job.kg') print(w.domain_name, w.creation_date, w.expiration_date) print(w) JOB.KG Fri Oct…
Creator X
  • 41
  • 6
1
vote
1 answer

Is there a listing of known whois query output formats?

TL;DR: I need a source for as many different output formats from a whois query as possible. Background: I am looking for a single reference that can provide as many (if not all) unique whois query output formats as possible. I don't believe this…
Shrout1
  • 2,497
  • 4
  • 42
  • 65
1
vote
1 answer

How to use WHOIS queries from python script when port 43 is likely not accessible

Im very new to network programming and faced a following problem: Im working on VMware CentOS7 virtual machine on Windows10 host. My script should send WHOIS queries and parse their output (e.g. expiration date). However, an attempt to send a query…
1
vote
1 answer

Print grep output into rows

I'm new to Linux and putting some scripting skills to the test with a small loop that uses grep to parse email fields from whois record look-ups. It searches for fields that often contain registrant email addresses, then strips everything preceding…
1
vote
1 answer

How to get domain name only from an IP address for whois lookup?

I'm trying to run a who-is command on an arbitrary IP address for my internal use (no public access) as such: function echo_whois($ip) { $host = gethostbyaddr($ip); //How to get domain from host? //$domain = ? echo("
");
   …
c00000fd
  • 20,994
  • 29
  • 177
  • 400
1
vote
1 answer

Strange net paths in WHOIS

As a self-learning project, I'm implementing a C++ whois client. I'm using a couple of ancient C implementations for reference, e.g. koders.com. One thing puzzles me. As well as the expected path format, like example.com, example.co.uk,…
Michael J
  • 7,631
  • 2
  • 24
  • 30
1
vote
1 answer

How to hide Creation Date from WHOIS?

Amazon Route53 hides most of the contact information by default, however that doesn't include the Creation Date property. Is there an option to hide that piece of information as well? I do not want the public to know when I created my website.
x300n
  • 311
  • 5
  • 14
1
vote
1 answer

Determine the name of a company that is using a ip address, not the issuer of the IP address

I visited a website today from work in a private browser session (no other cookies stored). I have never visited the site before and our company does not have an account with them. After the page loaded, an animated greeting said "Welcome XXX" where…
jtlindsey
  • 4,346
  • 4
  • 45
  • 73
1
vote
1 answer

Extend Python module in whois package

I'm using pythons whois module to check free domains in .by zone. The module currently does't support it. But all i need to do is to add these code into .../lib/python3.8/site-packages/whois/tld_regexpr.py: by = { 'extend': 'com' } I think that it…
S. A.
  • 101
  • 2
  • 11
1
vote
1 answer

how to parse previously fetch whois data with Ruby Whois?

According to README on github, Ruby Whois can be used "as a standalone library to parse WHOIS records fetched previously and/or from different WHOIS clients." I know how to use the library to directly perform whois query and parse the returning…
Shanshan
  • 11
  • 1
1
vote
1 answer

Looking information returned from whois

msf > whois 75.118.185.142 [*] exec: whois 75.118.185.142 WideOpenWest Finance LLC WIDEOPENWEST (NET-75-118-0-0-1) 75.118.0.0 - 75.118.255.255 WIDEOPENWEST OHIO WOW-CL11-1-184-118-75 (NET-75-118-184-0-1) 75.118.184.0 - 75.118.191.255 We see from…
Henok Tesfaye
  • 8,287
  • 13
  • 47
  • 84
1
vote
1 answer

Check multiple whois requests in a textarea

I would like to create a whois function that can check availability for multiple domains (many different words at the same time). I have this script which works for one single word. How can I get it to check multiple words (one word on each row in…
Hakan
  • 169
  • 2
  • 9
1
vote
1 answer

Setting address of whois service for ruby whois gem for IP addresses

A Connection to whois.arin.net is not open to us. Our network administrators say we should use 192.0.47.59 for our whois service. In some cases I will have a DNS name, in other cases I will have an IP address. I want to get the whois information in…
Marlin Pierce
  • 9,931
  • 4
  • 30
  • 52
1
vote
1 answer

Setting address of whois service for ruby whois gem

Using the ruby whois gem, how do I set the server address of the whois service? Setting the bind_host, I get an error. > whois_client = Whois::Client.new(bind_host: "192.0.47.59", bind_port: 43) => #
Marlin Pierce
  • 9,931
  • 4
  • 30
  • 52