Showing preview only (448K chars total). Download the full file or copy to clipboard to get everything.
Repository: richardpenman/whois
Branch: master
Commit: d4514a29df64
Files: 150
Total size: 411.5 KB
Directory structure:
gitextract_pxww6m4u/
├── .github/
│ └── workflows/
│ └── python-package.yml
├── .gitignore
├── LICENSE.txt
├── MANIFEST.in
├── README.md
├── requirements.txt
├── setup.py
├── test/
│ ├── __init__.py
│ ├── samples/
│ │ ├── expected/
│ │ │ ├── abc.rs
│ │ │ ├── abc.xyz
│ │ │ ├── about.us
│ │ │ ├── abv.bg
│ │ │ ├── afip.gob.ar
│ │ │ ├── allegro.pl
│ │ │ ├── amazon.co.uk
│ │ │ ├── app.nl
│ │ │ ├── brainly.lat
│ │ │ ├── cbc.ca
│ │ │ ├── cyberciti.biz
│ │ │ ├── davidwalsh.name
│ │ │ ├── digg.com
│ │ │ ├── druid.fi
│ │ │ ├── drupalcamp.by
│ │ │ ├── eurid.eu
│ │ │ ├── google.ai
│ │ │ ├── google.at
│ │ │ ├── google.cl
│ │ │ ├── google.co.cr
│ │ │ ├── google.co.id
│ │ │ ├── google.co.il
│ │ │ ├── google.co.ve
│ │ │ ├── google.com
│ │ │ ├── google.com.br
│ │ │ ├── google.com.pe
│ │ │ ├── google.com.sa
│ │ │ ├── google.com.sg
│ │ │ ├── google.com.tr
│ │ │ ├── google.com.tw
│ │ │ ├── google.com.ua
│ │ │ ├── google.de
│ │ │ ├── google.do
│ │ │ ├── google.fr
│ │ │ ├── google.hn
│ │ │ ├── google.hu
│ │ │ ├── google.ie
│ │ │ ├── google.it
│ │ │ ├── google.kg
│ │ │ ├── google.lu
│ │ │ ├── google.lv
│ │ │ ├── google.mx
│ │ │ ├── google.ro
│ │ │ ├── google.sk
│ │ │ ├── imdb.com
│ │ │ ├── liechtenstein.li
│ │ │ ├── microsoft.com
│ │ │ ├── nic.live
│ │ │ ├── nyan.cat
│ │ │ ├── reddit.com
│ │ │ ├── research.google
│ │ │ ├── sapo.pt
│ │ │ ├── sbc.org.hk
│ │ │ ├── seal.jobs
│ │ │ ├── shazow.net
│ │ │ ├── slashdot.org
│ │ │ ├── squatter.net
│ │ │ ├── titech.ac.jp
│ │ │ ├── translate.goog
│ │ │ ├── urlowl.com
│ │ │ ├── web.de
│ │ │ ├── willhaben.at
│ │ │ ├── www.gov.uk
│ │ │ ├── yahoo.co.jp
│ │ │ ├── yahoo.co.nz
│ │ │ ├── yandex.kz
│ │ │ └── yandex.ru
│ │ └── whois/
│ │ ├── abc.rs
│ │ ├── abc.xyz
│ │ ├── about.us
│ │ ├── abv.bg
│ │ ├── afip.gob.ar
│ │ ├── allegro.pl
│ │ ├── amazon.co.uk
│ │ ├── app.nl
│ │ ├── brainly.lat
│ │ ├── cbc.ca
│ │ ├── cyberciti.biz
│ │ ├── davidwalsh.name
│ │ ├── digg.com
│ │ ├── druid.fi
│ │ ├── drupalcamp.by
│ │ ├── eurid.eu
│ │ ├── google.ai
│ │ ├── google.at
│ │ ├── google.cl
│ │ ├── google.co.cr
│ │ ├── google.co.id
│ │ ├── google.co.il
│ │ ├── google.co.ve
│ │ ├── google.com
│ │ ├── google.com.br
│ │ ├── google.com.pe
│ │ ├── google.com.sa
│ │ ├── google.com.sg
│ │ ├── google.com.tr
│ │ ├── google.com.tw
│ │ ├── google.com.ua
│ │ ├── google.de
│ │ ├── google.do
│ │ ├── google.fr
│ │ ├── google.hn
│ │ ├── google.hu
│ │ ├── google.ie
│ │ ├── google.it
│ │ ├── google.kg
│ │ ├── google.lu
│ │ ├── google.lv
│ │ ├── google.mx
│ │ ├── google.ro
│ │ ├── google.sk
│ │ ├── imdb.com
│ │ ├── liechtenstein.li
│ │ ├── microsoft.com
│ │ ├── nic.live
│ │ ├── nyan.cat
│ │ ├── reddit.com
│ │ ├── sapo.pt
│ │ ├── sbc.org.hk
│ │ ├── seal.jobs
│ │ ├── shazow.net
│ │ ├── slashdot.org
│ │ ├── squatter.net
│ │ ├── titech.ac.jp
│ │ ├── urlowl.com
│ │ ├── web.de
│ │ ├── willhaben.at
│ │ ├── www.gov.uk
│ │ ├── yahoo.co.jp
│ │ ├── yahoo.co.nz
│ │ ├── yandex.kz
│ │ └── yandex.ru
│ ├── test_ipv6.py
│ ├── test_main.py
│ ├── test_nicclient.py
│ ├── test_parser.py
│ └── test_query.py
└── whois/
├── __init__.py
├── exceptions.py
├── parser.py
├── time_zones.py
└── whois.py
================================================
FILE CONTENTS
================================================
================================================
FILE: .github/workflows/python-package.yml
================================================
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python package
on:
push:
branches: [ "master" ]
pull_request:
types:
- opened
- reopened
- edited
- synchronize
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
python -m pytest
================================================
FILE: .gitignore
================================================
*.pyc
================================================
FILE: LICENSE.txt
================================================
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
================================================
FILE: MANIFEST.in
================================================
include whois/data/public_suffix_list.dat
include LICENSE.txt README.md
================================================
FILE: README.md
================================================
# Goal
- Create a simple importable Python module which will produce parsed
WHOIS data for a given domain.
- Able to extract data for all the popular TLDs (com, org, net, ...)
- Query a WHOIS server directly instead of going through an
intermediate web service like many others do.
# Example
```python
>>> import whois
>>> w = whois.whois('example.com')
>>> w.expiration_date # dates converted to datetime object
datetime.datetime(2022, 8, 13, 4, 0, tzinfo=tzoffset('UTC', 0))
>>> w.text # the content downloaded from whois server
u'\nDomain Name: EXAMPLE.COM
Registry Domain ID: 2336799_DOMAIN_COM-VRSN
...'
>>> print(w) # print values of all found attributes
{
"creation_date": "1995-08-14 04:00:00+00:00",
"expiration_date": "2022-08-13 04:00:00+00:00",
"updated_date": "2021-08-14 07:01:44+00:00",
"domain_name": "EXAMPLE.COM",
"name_servers": [
"A.IANA-SERVERS.NET",
"B.IANA-SERVERS.NET"
],
...
```
# Install
Install from pypi:
```bash
pip install python-whois
```
Or checkout latest version from repository:
```bash
git clone git@github.com:richardpenman/whois.git
pip install -r requirements.txt
```
Run test cases:
```bash
python -m pytest
```
# Using a proxy.
Set your environment SOCKS variable
```bash
export SOCKS="username:password@proxy_address:port"
```
# Problems?
Pull requests are welcome!
Thanks to the many who have sent patches for additional TLDs. If you want to add or fix a TLD it's quite straightforward.
See example domains in [whois/parser.py](https://github.com/richardpenman/whois/blob/master/whois/parser.py)
Basically each TLD has a similar format to the following:
```python
class WhoisOrg(WhoisEntry):
"""Whois parser for .org domains
"""
regex = {
'domain_name': 'Domain Name: *(.+)',
'registrar': 'Registrar: *(.+)',
'whois_server': 'Whois Server: *(.+)',
...
}
def __init__(self, domain, text):
if text.strip() == 'NOT FOUND':
raise WhoisDomainNotFoundError(text)
else:
WhoisEntry.__init__(self, domain, text, self.regex)
```
================================================
FILE: requirements.txt
================================================
python-dateutil==2.9.0.post0
================================================
FILE: setup.py
================================================
import os
import setuptools
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setuptools.setup(
name="python-whois",
version="0.9.6",
description="Whois querying and parsing of domain registration information.",
long_description=read("README.md"),
long_description_content_type="text/markdown",
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Programming Language :: Python :: 3",
],
keywords="whois, python",
author="Richard Penman",
author_email="richard.penman@gmail.com",
url="https://github.com/richardpenman/whois",
license="MIT",
packages=["whois"],
package_dir={"whois": "whois"},
install_requires=["python-dateutil"],
test_suite="nose.collector",
tests_require=["nose", "simplejson"],
include_package_data=True,
zip_safe=False,
)
================================================
FILE: test/__init__.py
================================================
================================================
FILE: test/samples/expected/abc.rs
================================================
{"domain_name": "abc.rs", "expiration_date": "2026-03-26 16:18:03+00:00", "updated_date": "2025-02-11 08:24:15+00:00", "registrar": "Mainstream Public Cloud Services d.o.o.", "registrar_url": null, "creation_date": "2008-03-26 16:18:03+00:00", "status": "Active https://www.rnids.rs/en/domain-name-status-codes#Active"}
================================================
FILE: test/samples/expected/abc.xyz
================================================
{"domain_name": "ABC.XYZ", "registry_domain_id": "D2192285-CNIC", "whois_server": "D2192285-CNIC", "registrar_url": null, "updated_date": "2025-03-10 15:22:23+00:00", "creation_date": "2014-03-20 12:59:17+00:00", "expiration_date": "2026-03-20 23:59:59+00:00", "registrar": "MarkMonitor, Inc (TLDs)", "regisrar_id": "292", "status": ["clientTransferProhibited https://icann.org/epp#clientTransferProhibited", "clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited", "clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited"], "name_servers": ["NS2.GOOGLE.COM", "NS4.GOOGLE.COM", "NS3.GOOGLE.COM", "NS1.GOOGLE.COM"], "dnssec": "unsigned", "registrar_email": "registryescalations@markmonitor.com", "registrar_phone": "+1.2083895740"}
================================================
FILE: test/samples/expected/about.us
================================================
{"domain_name": "about.us", "expiration_date": "2018-04-17 23:59:59+00:00", "updated_date": "2017-06-02 01:30:53+00:00", "registrar": "Neustar, Inc.", "registrar_url": "www.neustarregistry.biz", "creation_date": "2002-04-18 15:16:22+00:00", "status": ["serverTransferProhibited https://icann.org/epp#serverTransferProhibited", "clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited", "clientTransferProhibited https://icann.org/epp#clientTransferProhibited", "serverDeleteProhibited https://icann.org/epp#serverDeleteProhibited"]}
================================================
FILE: test/samples/expected/abv.bg
================================================
{"domain_name": "abv.bg", "expiration_date": null, "updated_date": null, "registrar": null, "registrar_url": null, "creation_date": null, "status": "Registered"}
================================================
FILE: test/samples/expected/afip.gob.ar
================================================
{"domain_name": "afip.gob.ar", "expiration_date": "2019-05-26 00:00:00+00:00", "updated_date": ["2018-05-19 12:18:44.329522+00:00", "2019-03-21 20:38:40.827111+00:00"], "registrar": "nicar", "registrar_url": null, "creation_date": "1997-05-26 00:00:00+00:00", "status": null}
================================================
FILE: test/samples/expected/allegro.pl
================================================
{"domain_name": "allegro.pl", "expiration_date": "2018-10-26 15:00:00+00:00", "updated_date": ["2017-10-17 07:01:25+00:00", "2017-03-27 00:00:00+00:00"], "registrar": "Corporation Service Company", "registrar_url": null, "creation_date": "1999-10-27 13:00:00+00:00", "status": null}
================================================
FILE: test/samples/expected/amazon.co.uk
================================================
{"domain_name": "amazon.co.uk", "expiration_date": "2020-12-05 00:00:00+00:00", "updated_date": "2013-10-23 00:00:00+00:00", "registrar": "Amazon.com, Inc. t/a Amazon.com, Inc. [Tag = AMAZON-COM]", "registrar_url": "http://www.amazon.com", "creation_date": "1996-08-01 00:00:00+00:00", "status": "Registered until expiry date."}
================================================
FILE: test/samples/expected/app.nl
================================================
{
"domain_name": "app.nl",
"expiration_date": null,
"updated_date": "2025-09-12 00:00:00+00:00",
"creation_date": "1998-02-20 00:00:00+00:00",
"status": "active",
"registrar": "Hosting Secure",
"registrar_address": "Weesperstraat 61",
"registrar_postal_code": "1018VN",
"registrar_city": "Amsterdam",
"registrar_country": "Netherlands",
"reseller": "Hoasted",
"reseller_address": "Weesperstraat 61",
"reseller_postal_code": "3512AB",
"reseller_city": "Amsterdam",
"reseller_country": "Netherlands",
"abuse_phone": "+31.0202018165",
"abuse_email": "abuse@hostingsecure.com",
"dnssec": "yes",
"name_servers": [
"ns1.hoasted.nl",
"ns2.hoasted.eu",
"ns3.hoasted.com"
]
}
================================================
FILE: test/samples/expected/brainly.lat
================================================
{"domain_name": "brainly.lat", "expiration_date": "2019-07-31 15:59:27+00:00", "updated_date": "2018-07-22 09:01:05+00:00", "registrar": "Instra Corporation Pty Ltd.", "registrar_url": "http://www.instra.com/", "creation_date": "2015-07-31 15:59:27+00:00", "status": "ok http://www.icann.org/epp#OK"}
================================================
FILE: test/samples/expected/cbc.ca
================================================
{"domain_name": "cbc.ca", "expiration_date": "2019-11-24 05:00:00+00:00", "updated_date": "2018-10-26 02:15:16+00:00", "registrar": "Authentic Web Inc.", "registrar_url": "authenticweb.com", "creation_date": "2000-10-16 13:56:05+00:00", "status": ["clientTransferProhibited https://icann.org/epp#clientTransferProhibited", "clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited", "serverDeleteProhibited https://icann.org/epp#serverDeleteProhibited", "serverTransferProhibited https://icann.org/epp#serverTransferProhibited", "serverUpdateProhibited https://icann.org/epp#serverUpdateProhibited"]}
================================================
FILE: test/samples/expected/cyberciti.biz
================================================
{"domain_name": "CYBERCITI.BIZ", "expiration_date": "2024-06-30 23:59:59+00:00", "updated_date": "2018-07-11 05:55:25+00:00", "registrar": "GoDaddy.com, LLC", "registrar_url": "http://www.godaddy.com", "creation_date": "2002-07-01 09:31:21+00:00", "status": ["clientTransferProhibited http://www.icann.org/epp#clientTransferProhibited", "clientUpdateProhibited http://www.icann.org/epp#clientUpdateProhibited", "clientRenewProhibited http://www.icann.org/epp#clientRenewProhibited", "clientDeleteProhibited http://www.icann.org/epp#clientDeleteProhibited"]}
================================================
FILE: test/samples/expected/davidwalsh.name
================================================
{"domain_name": "DAVIDWALSH.NAME", "expiration_date": null, "updated_date": null, "registrar": null, "registrar_url": null, "creation_date": null, "status": "clientTransferProhibited https://icann.org/epp#clientTransferProhibited"}
================================================
FILE: test/samples/expected/digg.com
================================================
{"domain_name": "DIGG.COM", "expiration_date": "2010-02-20 00:00:00+00:00", "updated_date": "2007-03-13 00:00:00+00:00", "registrar": "GODADDY.COM, INC.", "registrar_url": null, "creation_date": "2000-02-20 00:00:00+00:00", "status": ["clientDeleteProhibited", "clientRenewProhibited", "clientTransferProhibited", "clientUpdateProhibited"]}
================================================
FILE: test/samples/expected/druid.fi
================================================
{"domain_name": "druid.fi", "expiration_date": "2022-07-17 00:00:00+00:00", "updated_date": "2019-03-19 00:00:00+00:00", "registrar": "CSL Computer Service Langenbach GmbH (d/b/a joker.com)", "registrar_url": null, "creation_date": "2012-07-18 00:00:00+00:00", "status": "Registered"}
================================================
FILE: test/samples/expected/drupalcamp.by
================================================
{"domain_name": "drupalcamp.by", "expiration_date": "2020-07-25 00:00:00+00:00", "updated_date": null, "registrar": "Active Technologies LLC", "registrar_url": null, "creation_date": "2018-07-25 00:00:00+00:00", "status": null}
================================================
FILE: test/samples/expected/eurid.eu
================================================
{
"domain_name": "eurid.eu",
"script": "LATIN",
"reseller_org": null,
"reseller_lang": null,
"reseller_email": null,
"tech_org": "EURid vzw",
"tech_lang": "en",
"tech_email": "tech@eurid.eu",
"registrar": "EURid vzw",
"registrar_url": "https://www.eurid.eu",
"name_servers": [
"ns3.eurid.eu (185.36.4.253)",
"ns3.eurid.eu (2001:67c:9c:3937::253)",
"nsx.eurid.eu (185.151.141.1)",
"nsx.eurid.eu (2a02:568:fe00::6575)",
"ns1.eurid.eu (2001:67c:9c:3937::252)",
"ns1.eurid.eu (185.36.4.252)",
"ns2.eurid.eu (2001:67c:40:3937::252)",
"ns2.eurid.eu (185.36.6.252)",
"ns4.eurid.eu (2001:67c:40:3937::253)",
"ns4.eurid.eu (185.36.6.253)",
"nsp.netnod.se"
],
"dnssec_flags": "KSK",
"dnssec_protocol": "3",
"dnssec_algorithm": "RSA_SHA256",
"dnssec_pubkey": "AwEAAcOQldGtC33GLx8s335UscKMPlWjDXCqbhR2QyAYcfS4CZS6YHg3A1Zz/K3VurTZF68aSaRkNupZuEgt4jozE3v4+t+2qOfiATvoOCrf74hWduBPwk9Go0z7FVlDkok1/qMQmqOtih8TFP85b+w6F/uyLMZS1JowMDUzRurmHJVoT4lW9+OCdrhuQFK9vU24Y8BmacoRy6mWBCFlysizlOIodwmquOf5A+3Nz0B3TLCK4fIYJYVxCUVlpRJ7uaBS+GLD7afuxkEesReYHgPWZFSDMbXk9Ugh+qUi8tEKKFls9TM3lK9BPBcciXUhI1bRJSHftqcNpMmLqg/79SwoWGc="
}
================================================
FILE: test/samples/expected/google.ai
================================================
{"domain_name": "google.ai", "expiration_date": "2025-09-25 05:37:20+00:00", "updated_date": "2025-01-23 22:17:03+00:00", "registrar": "MarkMonitor Inc.", "registrar_url": null, "creation_date": "2017-12-16 05:37:20+00:00", "status": ["clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited", "clientTransferProhibited https://icann.org/epp#clientTransferProhibited", "clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited"]}
================================================
FILE: test/samples/expected/google.at
================================================
{"domain_name": "google.at", "expiration_date": null, "updated_date": ["2011-04-26 17:57:27+00:00", "2011-01-11 00:07:31+00:00", "2005-06-17 21:36:20+00:00", "2011-01-11 00:08:30+00:00"], "registrar": "MarkMonitor Inc. ( https://nic.at/registrar/434 )", "registrar_url": null, "creation_date": null, "status": null}
================================================
FILE: test/samples/expected/google.cl
================================================
{"domain_name": "google.cl", "expiration_date": "2019-11-20 14:48:02+00:00", "updated_date": null, "registrar": "MarkMonitor Inc.", "registrar_url": "https://markmonitor.com/", "creation_date": "2002-10-22 17:48:23+00:00", "status": null}
================================================
FILE: test/samples/expected/google.co.cr
================================================
{"domain_name": "google.co.cr", "expiration_date": "2020-04-17 00:00:00+00:00", "updated_date": ["2017-02-28 06:39:42+00:00", "2019-03-28 03:49:37+00:00", "2016-03-30 10:37:14+00:00"], "registrar": "NIC-REG1", "registrar_url": null, "creation_date": "2002-04-18 18:00:00+00:00", "status": ["Deletion forbidden", "Sponsoring registrar change forbidden", "Update forbidden", "Administratively blocked", "Registrant change forbidden"]}
================================================
FILE: test/samples/expected/google.co.id
================================================
{"domain_name": "GOOGLE.CO.ID", "expiration_date": "2026-09-01 23:59:59+00:00", "updated_date": "2025-08-05 05:00:20+00:00", "registrar": "PT Digital Registra Indonesia", "registrar_url": "www.digitalregistra.co.id", "creation_date": "2004-12-18 13:33:21+00:00", "status": ["clientDeleteProhibited", "clientRenewProhibited", "clientTransferProhibited", "clientUpdateProhibited", "serverDeleteProhibited", "serverRenewProhibited", "serverTransferProhibited", "serverUpdateProhibited"]}
================================================
FILE: test/samples/expected/google.co.il
================================================
{"domain_name": "google.co.il", "expiration_date": "2026-06-05 00:00:00+00:00", "updated_date": null, "registrar": "Domain The Net Technologies Ltd", "registrar_url": null, "creation_date": "1999-06-05 00:00:00+00:00", "status": "Transfer Locked"}
================================================
FILE: test/samples/expected/google.co.ve
================================================
{"domain_name": "google.co.ve", "expiration_date": "2018-03-06 00:00:00+00:00", "updated_date": "2005-11-17 20:35:01+00:00", "registrar": null, "registrar_url": null, "creation_date": "2003-03-06 00:00:00+00:00", "status": "ACTIVO"}
================================================
FILE: test/samples/expected/google.com
================================================
{"domain_name": "GOOGLE.COM", "expiration_date": "2011-09-14 00:00:00+00:00", "updated_date": "2006-04-10 00:00:00+00:00", "registrar": "MARKMONITOR INC.", "registrar_url": null, "creation_date": "1997-09-15 00:00:00+00:00", "status": ["clientDeleteProhibited", "clientTransferProhibited", "clientUpdateProhibited"]}
================================================
FILE: test/samples/expected/google.com.br
================================================
{"domain_name": "google.com.br", "expiration_date": "2020-05-18 00:00:00+00:00", "updated_date": ["2019-04-17 00:00:00+00:00", "2018-03-24 00:00:00+00:00", "2018-10-11 00:00:00+00:00"], "registrar": null, "registrar_url": null, "creation_date": ["1999-05-18 00:00:00+00:00", "2010-05-20 00:00:00+00:00", "2002-06-19 00:00:00+00:00"], "status": "published"}
================================================
FILE: test/samples/expected/google.com.pe
================================================
{"domain_name": "google.com.pe", "expiration_date": null, "updated_date": null, "registrar": "MarkMonitor Inc.", "registrar_url": null, "creation_date": null, "status": ["clientTransferProhibited", "clientDeleteProhibited", "clientUpdateProhibited"]}
================================================
FILE: test/samples/expected/google.com.sa
================================================
{"domain_name": "google.com.sa", "expiration_date": null, "updated_date": "2019-02-06 00:00:00+00:00", "registrar": null, "registrar_url": null, "creation_date": "2004-01-11 00:00:00+00:00", "status": null}
================================================
FILE: test/samples/expected/google.com.sg
================================================
{"domain_name": "google.com.sg", "expiration_date": "2025-07-04 16:00:00+00:00", "updated_date": "2024-06-03 09:54:56+00:00", "registrar": "MarkMonitor Inc.", "registrar_url": null, "creation_date": "2002-07-05 09:42:32+00:00", "status": ["clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited", "clientTransferProhibited https://icann.org/epp#clientTransferProhibited", "clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited"]}
================================================
FILE: test/samples/expected/google.com.tr
================================================
{"domain_name": "google.com.tr", "expiration_date": "2019-08-22 00:00:00+00:00", "updated_date": null, "registrar": null, "registrar_url": null, "creation_date": "2001-08-23 00:00:00+00:00", "status": null}
================================================
FILE: test/samples/expected/google.com.tw
================================================
{"domain_name": "google.com.tw", "expiration_date": "2019-11-09 00:00:00+00:00", "updated_date": null, "registrar": "Markmonitor, Inc.", "registrar_url": "http://www.markmonitor.com/", "creation_date": "2000-08-29 00:00:00+00:00", "status": null}
================================================
FILE: test/samples/expected/google.com.ua
================================================
{"domain_name": "google.com.ua", "expiration_date": "2019-12-04 00:00:00+02:00", "updated_date": "2018-11-02 11:29:08+02:00", "registrar": "MarkMonitor Inc.", "registrar_url": "http://markmonitor.com", "creation_date": ["2002-12-04 00:00:00+02:00", "2017-07-28 23:53:31+03:00"], "status": ["clientDeleteProhibited", "clientTransferProhibited", "clientUpdateProhibited", "ok", "linked"]}
================================================
FILE: test/samples/expected/google.de
================================================
{"domain_name": "google.de", "expiration_date": null, "updated_date": "2018-03-12 21:44:25+01:00", "registrar": null, "registrar_url": null, "creation_date": null, "status": "connect"}
================================================
FILE: test/samples/expected/google.do
================================================
{"domain_name": "google.do", "expiration_date": "2020-03-08 04:00:00+00:00", "updated_date": "2019-02-07 17:54:31.560000+00:00", "registrar": "Registrar NIC .DO (midominio.do)", "registrar_url": null, "creation_date": "2010-03-08 04:00:00+00:00", "status": "ok https://icann.org/epp#ok"}
================================================
FILE: test/samples/expected/google.fr
================================================
{"domain_name": "google.fr", "expiration_date": "2026-12-30 17:16:48+00:00", "updated_date": "2025-12-03 10:12:00.351952+00:00", "registrar": "MARKMONITOR Inc.", "registrar_url": null, "creation_date": "2000-07-26 22:00:00+00:00", "status": ["ACTIVE", "serverUpdateProhibited", "serverTransferProhibited", "serverDeleteProhibited", "serverRecoverProhibited", "associated", "not identified", "ok"]}
================================================
FILE: test/samples/expected/google.hn
================================================
{"domain_name": "google.hn", "expiration_date": "2020-03-07 05:00:00+00:00", "updated_date": "2019-02-03 10:43:28.837000+00:00", "registrar": "MarkMonitor", "registrar_url": "http://www.markmonitor.com", "creation_date": "2003-03-07 05:00:00+00:00", "status": ["clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited", "clientTransferProhibited https://icann.org/epp#clientTransferProhibited", "clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited"]}
================================================
FILE: test/samples/expected/google.hu
================================================
{"domain_name": "google.hu", "expiration_date": null, "updated_date": null, "registrar": null, "registrar_url": null, "creation_date": "2000-03-03 00:00:00+00:00", "status": null}
================================================
FILE: test/samples/expected/google.ie
================================================
{"domain_name": "google.ie", "expiration_date": "2022-03-21 14:13:27+00:00", "updated_date": null, "registrar": "Markmonitor Inc", "registrar_url": null, "creation_date": "2002-03-21 00:00:00+00:00", "status": ["serverDeleteProhibited https://icann.org/epp#serverDeleteProhibited", "serverTransferProhibited https://icann.org/epp#serverTransferProhibited", "serverUpdateProhibited https://icann.org/epp#serverUpdateProhibited"]}
================================================
FILE: test/samples/expected/google.it
================================================
{"domain_name": "google.it", "expiration_date": "2019-04-21 00:00:00+00:00", "updated_date": "2018-05-07 00:54:15+00:00", "registrar": "MarkMonitor International Limited", "registrar_url": null, "creation_date": "1999-12-10 00:00:00+00:00", "status": "ok"}
================================================
FILE: test/samples/expected/google.kg
================================================
{"domain_name": "GOOGLE.KG", "expiration_date": "2026-03-28 23:59:00+00:00", "updated_date": "2025-03-05 00:13:49+00:00", "registrar": null, "registrar_url": null, "creation_date": "2004-02-10 09:42:42+00:00", "status": null}
================================================
FILE: test/samples/expected/google.lu
================================================
{"domain_name": "google.lu", "expiration_date": null, "updated_date": null, "registrar": "Markmonitor", "registrar_url": null, "creation_date": null, "status": "ACTIVE"}
================================================
FILE: test/samples/expected/google.lv
================================================
{"domain_name": "google.lv", "expiration_date": null, "updated_date": "2024-09-03 17:12:28.647770+00:00", "registrar": null, "registrar_url": null, "creation_date": null, "status": null}
================================================
FILE: test/samples/expected/google.mx
================================================
{"domain_name": "google.mx", "expiration_date": "2020-05-11 00:00:00+00:00", "updated_date": "2019-04-12 00:00:00+00:00", "registrar": "MarkMonitor", "registrar_url": null, "creation_date": "2009-05-12 00:00:00+00:00", "status": null}
================================================
FILE: test/samples/expected/google.ro
================================================
{"domain_name": "google.ro", "expiration_date": "2019-09-17 00:00:00+00:00", "updated_date": null, "registrar": "MarkMonitor Inc.", "registrar_url": null, "creation_date": "2000-07-17 00:00:00+00:00", "status": "UpdateProhibited"}
================================================
FILE: test/samples/expected/google.sk
================================================
{"domain_name": "google.sk", "expiration_date": "2019-07-24 00:00:00+00:00", "updated_date": "2018-07-03 00:00:00+00:00", "registrar": "FAJNOR IP s. r. o.", "registrar_url": null, "creation_date": "2003-07-24 00:00:00+00:00", "status": null}
================================================
FILE: test/samples/expected/imdb.com
================================================
{"domain_name": "IMDB.COM", "expiration_date": "2016-01-04 00:00:00+00:00", "updated_date": "2008-03-28 00:00:00+00:00", "registrar": "NETWORK SOLUTIONS, LLC.", "registrar_url": null, "creation_date": "1996-01-05 00:00:00+00:00", "status": "clientTransferProhibited"}
================================================
FILE: test/samples/expected/liechtenstein.li
================================================
{"domain_name": "liechtenstein.li", "expiration_date": null, "updated_date": null, "registrar": "switchplus AG", "registrar_url": null, "creation_date": "1996-02-08 00:00:00+00:00", "status": null}
================================================
FILE: test/samples/expected/microsoft.com
================================================
{"domain_name": "MICROSOFT.COM", "expiration_date": "2014-05-03 00:00:00+00:00", "updated_date": "2006-10-10 00:00:00+00:00", "registrar": "CRONON AG BERLIN, NIEDERLASSUNG REGENSBURG", "registrar_url": null, "creation_date": "1991-05-02 00:00:00+00:00", "status": ["clientDeleteProhibited", "clientTransferProhibited", "clientUpdateProhibited"]}
================================================
FILE: test/samples/expected/nic.live
================================================
{"domain_name": "nic.live", "expiration_date": "2025-04-27 22:04:24+00:00", "updated_date": "2024-06-11 22:04:34+00:00", "registrar": "Registry Operator acts as Registrar (9999)", "registrar_url": "https://identity.digital", "creation_date": "2015-04-27 22:04:24+00:00", "status": ["ACTIVE", "serverTransferProhibited https://icann.org/epp#serverTransferProhibited"]}
================================================
FILE: test/samples/expected/nyan.cat
================================================
{"domain_name": "nyan.cat", "expiration_date": "2018-04-13 19:52:17.635000+00:00", "updated_date": "2017-07-07 17:24:23.746000+00:00", "registrar": "GANDI SAS", "registrar_url": "https://www.gandi.net/", "creation_date": "2011-04-13 19:52:17.635000+00:00", "status": "ok https://icann.org/epp#ok"}
================================================
FILE: test/samples/expected/reddit.com
================================================
{"domain_name": "REDDIT.COM", "expiration_date": "2009-04-29 00:00:00+00:00", "updated_date": "2008-06-04 00:00:00+00:00", "registrar": "DOMAINBANK", "registrar_url": null, "creation_date": "2005-04-29 00:00:00+00:00", "status": ["clientDeleteProhibited", "clientTransferProhibited", "clientUpdateProhibited"]}
================================================
FILE: test/samples/expected/research.google
================================================
{"domain_name": "research.google", "registrar": "MarkMonitor Inc.", "whois_server": "whois.nic.google", "referral_url": None, "updated_date": datetime.datetime(2021, 4, 5, 9, 28, 32), "creation_date": datetime.datetime(2019, 5, 2, 17, 16, 59), "expiration_date": datetime.datetime(2022, 5, 2, 17, 16, 59), "name_servers": ["ns1.zdns.google", "ns2.zdns.google", "ns3.zdns.google", "ns4.zdns.google"], "status": ["clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited", "clientTransferProhibited https://icann.org/epp#clientTransferProhibited", "clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited"], "emails": "abusecomplaints@markmonitor.com", "dnssec": "signedDelegation", "name": "REDACTED FOR PRIVACY", "org": "Charleston Road Registry, Inc.", "address": "REDACTED FOR PRIVACY", "city": "REDACTED FOR PRIVACY", "state": "CA", "zipcode": "REDACTED FOR PRIVACY", "country": "US"}
================================================
FILE: test/samples/expected/sapo.pt
================================================
{"domain_name": "sapo.pt", "expiration_date": "2019-11-02 23:59:00+00:00", "updated_date": null, "registrar": null, "registrar_url": null, "creation_date": "2002-10-30 00:00:00+00:00", "status": "Registered"}
================================================
FILE: test/samples/expected/sbc.org.hk
================================================
{"domain_name": "SBC.ORG.HK", "expiration_date": "2020-03-07 00:00:00+00:00", "updated_date": null, "registrar": "Hong Kong Domain Name Registration Company Limited", "registrar_url": null, "creation_date": "1998-07-14 00:00:00+00:00", "status": "Active"}
================================================
FILE: test/samples/expected/seal.jobs
================================================
{"domain_name": "SEAL.JOBS", "expiration_date": "2022-02-25 06:26:32+00:00", "updated_date": "2018-03-22 13:44:07+00:00", "registrar": null, "registrar_url": "http://www.godaddy.com", "creation_date": "2017-02-25 06:26:32+00:00", "status": "ok https://icann.org/epp#ok"}
================================================
FILE: test/samples/expected/shazow.net
================================================
{"domain_name": "SHAZOW.NET", "expiration_date": "2009-09-13 00:00:00+00:00", "updated_date": "2007-08-08 00:00:00+00:00", "registrar": "NEW DREAM NETWORK, LLC", "registrar_url": null, "creation_date": "2003-09-13 00:00:00+00:00", "status": "ok"}
================================================
FILE: test/samples/expected/slashdot.org
================================================
{"domain_name": "SLASHDOT.ORG", "expiration_date": "2008-10-04 04:00:00+00:00", "updated_date": null, "registrar": "Tucows Inc. (R11-LROR)", "registrar_url": null, "creation_date": null, "status": "OK"}
================================================
FILE: test/samples/expected/squatter.net
================================================
{"domain_name": "SQUATTER.NET", "expiration_date": "2008-11-06 00:00:00+00:00", "updated_date": "2007-11-07 00:00:00+00:00", "registrar": "DOMAINDISCOVER", "registrar_url": null, "creation_date": "1999-11-06 00:00:00+00:00", "status": "clientTransferProhibited"}
================================================
FILE: test/samples/expected/titech.ac.jp
================================================
{"domain_name": "TITECH.AC.JP", "expiration_date": null, "updated_date": "2025-05-29 10:45:59+09:00", "registrar": null, "registrar_url": null, "creation_date": null, "status": "Connected (2026/03/31)"}
================================================
FILE: test/samples/expected/translate.goog
================================================
{"domain_name": "translate.goog", "registrar": "MarkMonitor Inc.", "whois_server": "whois.nic.google", "referral_url": None, "updated_date": datetime.datetime(2020, 11, 8, 10, 37), "creation_date": datetime.datetime(2017, 12, 5, 22, 54, 14), "expiration_date": datetime.datetime(2021, 12, 5, 22, 54, 14), "name_servers": ["ns1.google.com", "ns2.google.com", "ns3.google.com", "ns4.google.com"], "status": ["clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited", "clientTransferProhibited https://icann.org/epp#clientTransferProhibited", "clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited"], "emails": "abusecomplaints@markmonitor.com", "dnssec": "unsigned", "name": "REDACTED FOR PRIVACY", "org": "Charleston Road Registry, Inc.", "address": "REDACTED FOR PRIVACY", "city": "REDACTED FOR PRIVACY", "state": "CA", "zipcode": "REDACTED FOR PRIVACY", "country": "US"}
================================================
FILE: test/samples/expected/urlowl.com
================================================
{"domain_name": "URLOWL.COM", "expiration_date": "2018-02-21 19:24:57+00:00", "updated_date": "2017-03-31 07:36:34+00:00", "registrar": "DYNADOT, LLC", "registrar_url": "http://www.dynadot.com", "creation_date": "2013-02-21 19:24:57+00:00", "status": "clientTransferProhibited https://icann.org/epp#clientTransferProhibited"}
================================================
FILE: test/samples/expected/web.de
================================================
{"domain_name": "web.de", "expiration_date": null, "updated_date": ["2016-04-11 11:09:54+02:00", "2011-08-10 17:09:10+02:00"], "registrar": null, "registrar_url": null, "creation_date": null, "status": "connect"}
================================================
FILE: test/samples/expected/willhaben.at
================================================
{"domain_name": "willhaben.at", "expiration_date": null, "updated_date": ["2014-12-04 14:57:44+00:00", "2014-04-22 10:08:35+00:00", "2015-10-21 16:23:11+00:00"], "registrar": null, "registrar_url": null, "creation_date": null, "status": null}
================================================
FILE: test/samples/expected/www.gov.uk
================================================
{"domain_name": "gov.uk", "expiration_date": null, "updated_date": null, "registrar": "No registrar listed. This domain is directly registered with Nominet.", "registrar_url": null, "creation_date": "1996-08-01 00:00:00+00:00", "status": "No registration status listed."}
================================================
FILE: test/samples/expected/yahoo.co.jp
================================================
{"domain_name": "YAHOO.CO.JP", "expiration_date": null, "updated_date": "2024-10-01 01:00:44+09:00", "registrar": null, "registrar_url": null, "creation_date": "2019-09-27 00:00:00+00:00", "status": "Connected (2025/09/30)"}
================================================
FILE: test/samples/expected/yahoo.co.nz
================================================
{"domain_name": "yahoo.co.nz", "expiration_date": null, "updated_date": "2025-04-07 09:13:29+00:00", "registrar": "MarkMonitor. Inc", "registrar_url": "https://www.markmonitor.com/", "creation_date": "1997-05-04 12:00:00+00:00", "status": ["clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited", "clientTransferProhibited https://icann.org/epp#clientTransferProhibited", "clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited"]}
================================================
FILE: test/samples/expected/yandex.kz
================================================
{"domain_name": "yandex.kz", "expiration_date": null, "updated_date": "2022-08-04 10:20:10+00:00", "registrar": "HOSTER.KZ", "registrar_url": null, "creation_date": "2009-07-01 12:44:02+00:00", "status": ["status : clientTransferProhibited", "clientDeleteProhibited", "clientRenewProhibited"]}
================================================
FILE: test/samples/expected/yandex.ru
================================================
{"domain_name": "YANDEX.RU", "expiration_date": "2018-09-30 21:00:00+00:00", "updated_date": null, "registrar": "RU-CENTER-RU", "registrar_url": null, "creation_date": "1997-09-23 09:45:07+00:00", "status": "REGISTERED, DELEGATED, VERIFIED"}
================================================
FILE: test/samples/whois/abc.rs
================================================
% The data in the Whois database are provided by RNIDS
% for information purposes only and to assist persons in obtaining
% information about or related to a domain name registration record.
% Data in the database are created by registrants and we do not guarantee
% their accuracy. We reserve the right to remove access
% for entities abusing the data, without notice.
% All timestamps are given in Serbian local time.
%
Domain name: abc.rs
Domain status: Active https://www.rnids.rs/en/domain-name-status-codes#Active
Registration date: 26.03.2008 16:18:03
Modification date: 11.02.2025 08:24:15
Expiration date: 26.03.2026 16:18:03
Confirmed: 26.03.2008 16:18:03
Registrar: Mainstream Public Cloud Services d.o.o.
Registrant: Roda grupa doo
Address: Bulevar Oslobodjenja 129, Beograd, Serbia
Postal Code: 11000
ID Number: 20886374
Tax ID: 107867472
Administrative contact: Individual
Technical contact: SERBIA BROADBAND - SRPSKE KABLOVSKE MREZE D.O.O.
Address: Bulevar Peka Dapcevica 19, Beograd, Serbia
Postal Code: 11000
ID Number: 17280554
Tax ID: 101038731
DNS: ns1.providus.rs - 164.132.48.70
DNS: ns2.providus.rs - 104.199.179.254
DNS: ns3.providus.rs - 52.5.196.189
DNSSEC signed: no
Whois Timestamp: 07.11.2025 20:57:08
================================================
FILE: test/samples/whois/abc.xyz
================================================
[whois.nic.xyz]
Domain Name: ABC.XYZ
Registry Domain ID: D2192285-CNIC
Registrar WHOIS Server: whois.markmonitor.com
Registrar URL:
Updated Date: 2025-03-10T15:22:23.0Z
Creation Date: 2014-03-20T12:59:17.0Z
Registry Expiry Date: 2026-03-20T23:59:59.0Z
Registrar: MarkMonitor, Inc (TLDs)
Registrar IANA ID: 292
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Name Server: NS2.GOOGLE.COM
Name Server: NS4.GOOGLE.COM
Name Server: NS3.GOOGLE.COM
Name Server: NS1.GOOGLE.COM
DNSSEC: unsigned
Registrar Abuse Contact Email: registryescalations@markmonitor.com
Registrar Abuse Contact Phone: +1.2083895740
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of WHOIS database: 2025-10-10T02:49:26.0Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
>>> IMPORTANT INFORMATION ABOUT THE DEPLOYMENT OF RDAP: please visit
https://www.centralnicregistry.com/support/information/rdap <<<
The registration data available in this service is limited. Additional
data may be available at https://lookup.icann.org
The Whois and RDAP services are provided by CentralNic, and contain
information pertaining to Internet domain names registered by our
our customers. By using this service you are agreeing (1) not to use any
information presented here for any purpose other than determining
ownership of domain names, (2) not to store or reproduce this data in
any way, (3) not to use any high-volume, automated, electronic processes
to obtain data from this service. Abuse of this service is monitored and
actions in contravention of these terms will result in being permanently
blacklisted. All data is (c) CentralNic Ltd (https://www.centralnicregistry.com)
Access to the Whois and RDAP services is rate limited. For more
information, visit https://centralnicregistry.com/policies/whois-guidance.
================================================
FILE: test/samples/whois/about.us
================================================
Domain Name: about.us
Registry Domain ID: D651466-US
Registrar WHOIS Server:
Registrar URL: www.neustarregistry.biz
Updated Date: 2017-06-02T01:30:53Z
Creation Date: 2002-04-18T15:16:22Z
Registry Expiry Date: 2018-04-17T23:59:59Z
Registrar: Neustar, Inc.
Registrar IANA ID: 1111112
Registrar Abuse Contact Email: reg-support@support.neustar
Registrar Abuse Contact Phone:
Domain Status: serverTransferProhibited https://icann.org/epp#serverTransferProhibited
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: serverDeleteProhibited https://icann.org/epp#serverDeleteProhibited
Registry Registrant ID: C37639215-US
Registrant Name: .US Registration Policy
Registrant Organization:
Registrant Street: 46000 Center Oak Plaza
Registrant Street:
Registrant Street:
Registrant City: Sterling
Registrant State/Province: VA
Registrant Postal Code: 20166
Registrant Country: US
Registrant Phone: +1.5714345728
Registrant Phone Ext:
Registrant Fax:
Registrant Fax Ext:
Registrant Email: support.us@neustar.us
Registrant Application Purpose: P5
Registrant Nexus Category: C21
Registry Admin ID: C37639215-US
Admin Name: .US Registration Policy
Admin Organization:
Admin Street: 46000 Center Oak Plaza
Admin Street:
Admin Street:
Admin City: Sterling
Admin State/Province: VA
Admin Postal Code: 20166
Admin Country: US
Admin Phone: +1.5714345728
Admin Phone Ext:
Admin Fax:
Admin Fax Ext:
Admin Email: support.us@neustar.us
Admin Application Purpose: P5
Admin Nexus Category: C21
Registry Tech ID: C37639215-US
Tech Name: .US Registration Policy
Tech Organization:
Tech Street: 46000 Center Oak Plaza
Tech Street:
Tech Street:
Tech City: Sterling
Tech State/Province: VA
Tech Postal Code: 20166
Tech Country: US
Tech Phone: +1.5714345728
Tech Phone Ext:
Tech Fax:
Tech Fax Ext:
Tech Email: support.us@neustar.us
Tech Application Purpose: P5
Tech Nexus Category: C21
Name Server: ns1.usatfus.about.us
Name Server: ns2.usatfus.about.us
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of WHOIS database: 2017-12-11T22:54:29Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
NeuStar, Inc., the Registry Administrator for .US, has collected this information for the WHOIS database through a .US-Accredited Registrar. This information is provided to you for informational purposes only and is designed to assist persons in determining contents of a domain name registration record in the NeuStar registry database. NeuStar makes this information available to you "as is" and does not guarantee its accuracy. By submitting a WHOIS query, you agree that you will use this data only for lawful purposes and that, under no circumstances will you use this data: (1) to allow, enable, or otherwise support the transmission of mass unsolicited, commercial advertising or solicitations via direct mail, electronic mail, or by telephone; (2) in contravention of any applicable data and privacy protection laws; or (3) to enable high volume, automated, electronic processes that apply to the registry (or its systems). Compilation, repackaging, dissemination, or other use of the WHOIS database in its entirety, or of a substantial portion thereof, is not allowed without NeuStar's prior written permission. NeuStar reserves the right to modify or change these conditions at any time without prior or subsequent notification of any kind. By executing this query, in any manner whatsoever, you agree to abide by these terms. NOTE: FAILURE TO LOCATE A RECORD IN THE WHOIS DATABASE IS NOT INDICATIVE OF THE AVAILABILITY OF A DOMAIN NAME. All domain names are subject to certain additional domain name registration rules. For details, please visit our site at www.whois.us.
================================================
FILE: test/samples/whois/abv.bg
================================================
DOMAIN NAME: abv.bg
requested on: see at www.register.bg
processed from: see at www.register.bg
activated on: see at www.register.bg
expires at: see at www.register.bg
registration status: Registered
REGISTRANT:
Darik Net EAD
bul. Hristofor Kolumb 41, et. 6
SOFIA, 1592
BULGARIA
ADMINISTRATIVE CONTACT:
Toni Enchev
noc@netinfo.bg
Darik Net EAD
bul. Hristofor Kolumb 41, et. 6
SOFIA, 1592
BULGARIA
tel: +359 2 960 3162
fax:
NIC handle: TE230426
TECHNICAL CONTACT(S):
Milen Evtimov
milen@netinfo.bg
Net Info.BG JSCo
bul. "Cherni vrah" 1-3, Sofiya 1463
SOFIA, 1421
BULGARIA
tel: +359 2 9603100
fax: +359 2 9604179
NIC handle: ME26909
Biser Grigorov
biser@netinfo.bg
Net Info.BG JSCo
bul. "Cherni vrah" 1-3, Sofiya 1463
SOFIA, 1421
BULGARIA
tel: +359 2 9603100
fax: +359 2 9604179
NIC handle: BG26908
NAME SERVER INFORMATION:
ns.netinfo.bg
ns2.netinfo.bg
DNSSEC: Inactive
================================================
FILE: test/samples/whois/afip.gob.ar
================================================
% La información a la que estás accediendo se provee exclusivamente para
% fines relacionados con operaciones sobre nombres de dominios y DNS,
% quedando absolutamente prohibido su uso para otros fines.
%
% La DIRECCIÓN NACIONAL DEL REGISTRO DE DOMINIOS DE INTERNET es depositaria
% de la información que los usuarios declaran con la sola finalidad de
% registrar nombres de dominio en ‘.ar’, para ser publicada en el sitio web
% de NIC Argentina.
%
% La información personal que consta en la base de datos generada a partir
% del sistema de registro de nombres de dominios se encuentra amparada por
% la Ley N° 25326 “Protección de Datos Personales” y el Decreto
% Reglamentario 1558/01.
domain: afip.gob.ar
registrant: 33693450239
registrar: nicar
registered: 1997-05-26 00:00:00
changed: 2018-05-19 12:18:44.329522
expire: 2019-05-26 00:00:00
contact: 33693450239
name: ADMINISTRACION FEDERAL DE INGRESOS PUBLICOS
registrar: nicar
created: 2013-10-30 00:00:00
changed: 2019-03-21 20:38:40.827111
nserver: ns1.afip.gov.ar (200.1.116.10/32)
nserver: ns2.afip.gov.ar (200.1.116.11/32)
registrar: nicar
created: 2016-06-30 22:15:47.314461
================================================
FILE: test/samples/whois/allegro.pl
================================================
DOMAIN NAME: allegro.pl
registrant type: organization
nameservers: dns1.allegro.pl. [91.194.188.132]
dns2.allegro.pl. [91.207.14.244]
dns3.allegro.pl. [80.50.230.43]
dns4.allegro.pl. [213.180.138.53]
created: 1999.10.27 13:00:00
last modified: 2017.10.17 07:01:25
renewal date: 2018.10.26 15:00:00
option created: 2014.06.02 23:44:16
option expiration date: 2020.06.02 23:44:16
dnssec: Unsigned
TECHNICAL CONTACT:
company: DNS Administrator
Grupa Allegro Sp. z o.o.
street: ul. Grunwaldzka 182
city: 60-166 Poznan
location: PL
phone: +48.616271220
fax: +48.616271220
last modified: 2017.03.27
REGISTRAR:
Corporation Service Company
251 Little Falls Drive
Wilmington, Delaware 19808
United States
tel: +1.302.636.5400
fax: +1.302.636.5454
email: registryrelations@cscinfo.com
WHOIS database responses: http://www.dns.pl/english/opiskomunikatow_en.html
WHOIS displays data with a delay not exceeding 15 minutes in relation to the .pl Registry system
Registrant data available at http://dns.pl/cgi-bin/en_whois.pl
================================================
FILE: test/samples/whois/amazon.co.uk
================================================
Domain name:
amazon.co.uk
Data validation:
Nominet was able to match the registrant's name and address against a 3rd party data source on 10-Dec-2012
Registrar:
Amazon.com, Inc. t/a Amazon.com, Inc. [Tag = AMAZON-COM]
URL: http://www.amazon.com
Relevant dates:
Registered on: before Aug-1996
Expiry date: 05-Dec-2020
Last updated: 23-Oct-2013
Registration status:
Registered until expiry date.
Name servers:
ns1.p31.dynect.net
ns2.p31.dynect.net
ns3.p31.dynect.net
ns4.p31.dynect.net
pdns1.ultradns.net
pdns2.ultradns.net
pdns3.ultradns.org
pdns4.ultradns.org
pdns5.ultradns.info
pdns6.ultradns.co.uk 204.74.115.1 2610:00a1:1017:0000:0000:0000:0000:0001
WHOIS lookup made at 11:55:41 18-Apr-2019
--
This WHOIS information is provided for free by Nominet UK the central registry
for .uk domain names. This information and the .uk WHOIS are:
Copyright Nominet UK 1996 - 2019.
You may not access the .uk WHOIS or use any data from it except as permitted
by the terms of use available in full at https://www.nominet.uk/whoisterms,
which includes restrictions on: (A) use of the data for advertising, or its
repackaging, recompilation, redistribution or reuse (B) obscuring, removing
or hiding any or all of this notice and (C) exceeding query rate or volume
limits. The data is provided on an 'as-is' basis and may lag behind the
register. Access may be withdrawn or restricted at any time.
================================================
FILE: test/samples/whois/app.nl
================================================
Domain name: app.nl
Status: active
Reseller:
Hoasted
Weesperstraat 61
3512AB Amsterdam
Netherlands
Registrar:
Hosting Secure
Weesperstraat 61
1018VN Amsterdam
Netherlands
Abuse Contact:
+31.0202018165
abuse@hostingsecure.com
DNSSEC: yes
Domain nameservers:
ns1.hoasted.nl
ns2.hoasted.eu
ns3.hoasted.com
Creation Date: 1998-02-20
Updated Date: 2025-09-12
Record maintained by: SIDN BV
================================================
FILE: test/samples/whois/brainly.lat
================================================
Domain Name: brainly.lat
Registry Domain ID: DOMAIN_497-LAT
Registrar WHOIS Server:
Registrar URL: http://www.instra.com/
Updated Date: 2018-07-22T09:01:05Z
Creation Date: 2015-07-31T15:59:27Z
Registry Expiry Date: 2019-07-31T15:59:27Z
Registrar: Instra Corporation Pty Ltd.
Registrar IANA ID: 1376
Registrar Abuse Contact Email:
Registrar Abuse Contact Phone:
Domain Status: ok http://www.icann.org/epp#OK
Registry Registrant ID: REDACTED FOR PRIVACY
Registrant Name: REDACTED FOR PRIVACY
Registrant Organization: Brainly Sp. z o.o.
Registrant Street: REDACTED FOR PRIVACY
Registrant City: REDACTED FOR PRIVACY
Registrant State/Province: Malopolska
Registrant Postal Code: REDACTED FOR PRIVACY
Registrant Country: PL
Registrant Phone: REDACTED FOR PRIVACY
Registrant Phone Ext: REDACTED FOR PRIVACY
Registrant Fax: REDACTED FOR PRIVACY
Registrant Fax Ext: REDACTED FOR PRIVACY
Registrant Email: Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name
Registry Admin ID: REDACTED FOR PRIVACY
Admin Name: REDACTED FOR PRIVACY
Admin Organization: REDACTED FOR PRIVACY
Admin Street: REDACTED FOR PRIVACY
Admin City: REDACTED FOR PRIVACY
Admin State/Province: REDACTED FOR PRIVACY
Admin Postal Code: REDACTED FOR PRIVACY
Admin Country: REDACTED FOR PRIVACY
Admin Phone: REDACTED FOR PRIVACY
Admin Phone Ext: REDACTED FOR PRIVACY
Admin Fax: REDACTED FOR PRIVACY
Admin Fax Ext: REDACTED FOR PRIVACY
Admin Email: Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name
Registry Tech ID: REDACTED FOR PRIVACY
Tech Name: REDACTED FOR PRIVACY
Tech Organization: REDACTED FOR PRIVACY
Tech Street: REDACTED FOR PRIVACY
Tech City: REDACTED FOR PRIVACY
Tech State/Province: REDACTED FOR PRIVACY
Tech Postal Code: REDACTED FOR PRIVACY
Tech Country: REDACTED FOR PRIVACY
Tech Phone: REDACTED FOR PRIVACY
Tech Phone Ext: REDACTED FOR PRIVACY
Tech Fax: REDACTED FOR PRIVACY
Tech Fax Ext: REDACTED FOR PRIVACY
Tech Email: Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name
Name Server: adi.ns.cloudflare.com
Name Server: chad.ns.cloudflare.com
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
Last update of WHOIS database: 2019-04-17T13:13:00Z<<<
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 registrar's
% sponsorship of the domain name registration in the registry is currently set to expire.
% This date does not necessarily reflect the expiration date of the domain name
% registrant's agreement with the sponsoring registrar. Users may consult the sponsoring
% registrar's Whois database to view the registrar's reported date of expiration for this
% registration.
% The Data in eCOM-LAC?s .LAT Registry Whois database is provided
% by eCOM-LAC for information purposes only, and to assist persons in obtaining
% guarantee its accuracy. By submitting a Whois query, you agree to abide by the
% following terms of use: You agree that you may use this Data only for lawful purposes
% and that under no circumstances will you use this Data to: (1) allow, enable, or
% otherwise support the transmission of mass unsolicited, commercial advertising or
% solicitations via e-mail, telephone, or facsimile; or (2) enable high volume, automated,
% electronic processes that apply to eCOM-LAC or its service providers (or its computer
% expressly prohibited without the prior written consent of eCOM-LAC. You agree not to
% use electronic processes that are automated and high-volume to access or query the
% Whois database except as reasonably necessary to register domain names or modify
% existing registrations. eCOM-LAC reserves the right to restrict your access to the Whois
% database in its sole discretion to ensure operational stability. eCOM-LAC may restrict
% or terminate your access to the Whois database for failure to abide by these terms of
% use. eCOM-LAC reserves the right to modify these terms at any time.
% URL of the ICANN WHOIS Data Problem Reporting System: http://wdprs.internic.net/
% NOTA: La fecha de expiraci?n mostrada en este registro es la fecha indicada por el
% Registrar en la que finaliza la administraci?n del nombre de dominio en el Registry. Esta
% fecha no necesariamente refleja la fecha de expiraci?n del nombre de dominio que el
% registrante acord? con el registrar sponsor. Los usuarios pueden consultar la base de
% datos del whois del registrar sponsor para ver la fecha de expiraci?n reportada por el
% registrar para este dominio.
% Los datos en la base de datos de whois de eCOM-LAC es proporcionada por eCOM-LAC
% para fines informativos solamente y para ayudar a las personas a obtener informaci?n
% relacionada a los datos de registro de un nombre de dominio. eCOM-LAC no garantiza su
% exactitud. Al realizar una consulta al Whois, acepta cumplir con las siguientes condiciones
% de uso: Acepta que puede usar esta informaci?n solo para fines legales y que bajo ninguna
% circunstancia usar? esta informaci?n para: (1) permitir, hacer uso o apoyar de alguna
% manera el env?o masivo de publicidad v?a correo electr?nico, tel?fono o fax; o (2) realizar
% procesos automatizados, electr?nicos y de alto volumen que apliquen a eCOM-LAC o sus
% proveedores de servicio (o sus sistemas computacionales). La recopilaci?n, difusi?n o
% cualquier otro uso de estos datos sin el consentimiento previo por escrito de eCOM-LAC
% queda expresamente prohibido. Usted acepta no utilizar procesos electr?nicos
% automatizados y de alto volumen para acceder o consultar la base de datos de Whois
% excepto cuando sea razonablemente necesario para registrar nombres de dominio o
% modificar registros existentes. eCOM-LAC se reserva el derecho de restringir su acceso a la
% base de datos de whois a su entera discreci?n para asegurar la estabilidad en su
% operaci?n. eCOM-LAC puede restringir o terminar su acceso a la base de datos de Whois
% por no cumplir con estas condiciones de uso. eCOM-LAC se reserva el derecho de modificar estos t?rminos en cualquier momento.
% La URL del sistema de reportes para problemas con la informaci?n de WHOIS del ICANN es: http://wdprs.internic.net/
================================================
FILE: test/samples/whois/cbc.ca
================================================
Domain Name: cbc.ca
Registry Domain ID: D345334-CIRA
Registrar WHOIS Server: whois.ca.fury.ca
Registrar URL: authenticweb.com
Updated Date: 2018-10-26T02:15:16Z
Creation Date: 2000-10-16T13:56:05Z
Registry Expiry Date: 2019-11-24T05:00:00Z
Registrar: Authentic Web Inc.
Registrar IANA ID:
Registrar Abuse Contact Email:
Registrar Abuse Contact Phone:
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Domain Status: serverDeleteProhibited https://icann.org/epp#serverDeleteProhibited
Domain Status: serverTransferProhibited https://icann.org/epp#serverTransferProhibited
Domain Status: serverUpdateProhibited https://icann.org/epp#serverUpdateProhibited
Registry Registrant ID: 24345497-CIRA
Registrant Name: Canadian Broadcasting Corporation
Registrant Organization:
Registrant Street: 250 Front St W
Registrant City: Toronto
Registrant State/Province: ON
Registrant Postal Code: M5V3G5
Registrant Country: CA
Registrant Phone: +1.4162053482
Registrant Phone Ext:
Registrant Fax: +1.4162057750
Registrant Fax Ext:
Registrant Email: domain-name@cbc.ca
Registry Admin ID: 24345372-CIRA
Admin Name: Karen Stephen
Admin Organization: Canadian Broadcasting Corporation
Admin Street: 250 Front St W
Admin City: Toronto
Admin State/Province: ON
Admin Postal Code: M5V3G5
Admin Country: CA
Admin Phone: +1.4162053482
Admin Phone Ext:
Admin Fax: +1.4162057750
Admin Fax Ext:
Admin Email: domain-name@cbc.ca
Registry Tech ID: 24345501-CIRA
Tech Name: Karen Stephen
Tech Organization: Canadian Broadcasting Corporation
Tech Street: 250 Front St W
Tech City: Toronto
Tech State/Province: ON
Tech Postal Code: M5V3G5
Tech Country: CA
Tech Phone: +1.4162053482
Tech Phone Ext:
Tech Fax: +1.4162057750
Tech Fax Ext:
Tech Email: domain-name@cbc.ca
Registry Billing ID:
Billing Name:
Billing Organization:
Billing Street:
Billing City:
Billing State/Province:
Billing Postal Code:
Billing Country:
Billing Phone:
Billing Phone Ext:
Billing Fax:
Billing Fax Ext:
Billing Email:
Name Server: a5-65.akam.net
Name Server: a9-66.akam.net
Name Server: a26-67.akam.net
Name Server: a1-29.akam.net
Name Server: a4-64.akam.net
Name Server: a14-66.akam.net
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of WHOIS database: 2019-04-16T12:20:17Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
%
% Use of CIRA's WHOIS service is governed by the Terms of Use in its Legal
% Notice, available at http://www.cira.ca/legal-notice/?lang=en
%
% (c) 2019 Canadian Internet Registration Authority, (http://www.cira.ca/)
================================================
FILE: test/samples/whois/cyberciti.biz
================================================
Domain Name: CYBERCITI.BIZ
Registry Domain ID: D3209108-BIZ
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: http://www.godaddy.com
Updated Date: 2018-07-11T05:55:25Z
Creation Date: 2002-07-01T09:31:21Z
Registrar Registration Expiration Date: 2024-06-30T23:59:59Z
Registrar: GoDaddy.com, LLC
Registrar IANA ID: 146
Registrar Abuse Contact Email: abuse@godaddy.com
Registrar Abuse Contact Phone: +1.4806242505
Domain Status: clientTransferProhibited http://www.icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited http://www.icann.org/epp#clientUpdateProhibited
Domain Status: clientRenewProhibited http://www.icann.org/epp#clientRenewProhibited
Domain Status: clientDeleteProhibited http://www.icann.org/epp#clientDeleteProhibited
Registry Registrant ID: CR19482819
Registrant Name: Registration Private
Registrant Organization: Domains By Proxy, LLC
Registrant Street: DomainsByProxy.com
Registrant Street: 14455 N. Hayden Road
Registrant City: Scottsdale
Registrant State/Province: Arizona
Registrant Postal Code: 85260
Registrant Country: US
Registrant Phone: +1.4806242599
Registrant Phone Ext:
Registrant Fax: +1.4806242598
Registrant Fax Ext:
Registrant Email: CYBERCITI.BIZ@domainsbyproxy.com
Registry Admin ID: CR19482821
Admin Name: Registration Private
Admin Organization: Domains By Proxy, LLC
Admin Street: DomainsByProxy.com
Admin Street: 14455 N. Hayden Road
Admin City: Scottsdale
Admin State/Province: Arizona
Admin Postal Code: 85260
Admin Country: US
Admin Phone: +1.4806242599
Admin Phone Ext:
Admin Fax: +1.4806242598
Admin Fax Ext:
Admin Email: CYBERCITI.BIZ@domainsbyproxy.com
Registry Tech ID: CR19482820
Tech Name: Registration Private
Tech Organization: Domains By Proxy, LLC
Tech Street: DomainsByProxy.com
Tech Street: 14455 N. Hayden Road
Tech City: Scottsdale
Tech State/Province: Arizona
Tech Postal Code: 85260
Tech Country: US
Tech Phone: +1.4806242599
Tech Phone Ext:
Tech Fax: +1.4806242598
Tech Fax Ext:
Tech Email: CYBERCITI.BIZ@domainsbyproxy.com
Name Server: CLAY.NS.CLOUDFLARE.COM
Name Server: FAY.NS.CLOUDFLARE.COM
DNSSEC: unsigned
URL of the ICANN WHOIS Data Problem Reporting System: http://wdprs.internic.net/
>>> Last update of WHOIS database: 2019-04-16T13:00:00Z <<<
For more information on Whois status codes, please visit https://www.icann.org/resources/pages/epp-status-codes-2014-06-16-en
Notes:
IMPORTANT: Port43 will provide the ICANN-required minimum data set per
ICANN Temporary Specification, adopted 17 May 2018.
Visit https://whois.godaddy.com to look up contact data for domains
not covered by GDPR policy.
The data contained in GoDaddy.com, LLC's WhoIs database,
while believed by the company to be reliable, is provided "as is"
with no guarantee or warranties regarding its accuracy. This
information is provided for the sole purpose of assisting you
in obtaining information about domain name registration records.
Any use of this data for any other purpose is expressly forbidden without the prior written
permission of GoDaddy.com, LLC. By submitting an inquiry,
you agree to these terms of usage and limitations of warranty. In particular,
you agree not to use this data to allow, enable, or otherwise make possible,
dissemination or collection of this data, in part or in its entirety, for any
purpose, such as the transmission of unsolicited advertising and
and solicitations of any kind, including spam. You further agree
not to use this data to enable high volume, automated or robotic electronic
processes designed to collect or compile this data for any purpose,
including mining this data for your own personal or commercial purposes.
Please note: the registrant of the domain name is specified
in the "registrant" section. In most cases, GoDaddy.com, LLC
is not the registrant of domain names listed in this database.
================================================
FILE: test/samples/whois/davidwalsh.name
================================================
Disclaimer: VeriSign, Inc. makes every effort to maintain the
completeness and accuracy of the Whois data, but cannot guarantee
that the results are error-free. Therefore, any data provided
through the Whois service are on an as is basis without any
warranties.
BY USING THE WHOIS SERVICE AND THE DATA CONTAINED
HEREIN OR IN ANY REPORT GENERATED WITH RESPECT THERETO, IT IS
ACCEPTED THAT VERISIGN, INC. IS NOT LIABLE FOR
ANY DAMAGES OF ANY KIND ARISING OUT OF, OR IN CONNECTION WITH, THE
REPORT OR THE INFORMATION PROVIDED BY THE WHOIS SERVICE, NOR
OMISSIONS OR MISSING INFORMATION. THE RESULTS OF ANY WHOIS REPORT OR
INFORMATION PROVIDED BY THE WHOIS SERVICE CANNOT BE RELIED UPON IN
CONTEMPLATION OF LEGAL PROCEEDINGS WITHOUT FURTHER VERIFICATION, NOR
DO SUCH RESULTS CONSTITUTE A LEGAL OPINION. Acceptance of the
results of the Whois constitutes acceptance of these terms,
conditions and limitations. Whois data may be requested only for
lawful purposes, in particular, to protect legal rights and
obligations. Illegitimate uses of Whois data include, but are not
limited to, unsolicited email, data mining, direct marketing or any
other improper purpose. Any request made for Whois data will be
documented by VeriSign, Inc. but will not be used for any commercial purpose whatsoever.
****
Registry Domain ID: 2852634_DOMAIN_NAME-VRSN
Domain Name: DAVIDWALSH.NAME
Registrar: Name.com, Inc.
Registrar IANA ID: 625
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
>>> Last update of whois database: 2017-12-08T23:02:21Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
================================================
FILE: test/samples/whois/digg.com
================================================
Whois Server Version 2.0
Domain names in the .com and .net domains can now be registered
with many different competing registrars. Go to http://www.internic.net
for detailed information.
Domain Name: DIGG.COM
Registrar: GODADDY.COM, INC.
Whois Server: whois.godaddy.com
Referral URL: http://registrar.godaddy.com
Name Server: UDNS1.ULTRADNS.NET
Name Server: UDNS2.ULTRADNS.NET
Status: clientDeleteProhibited
Status: clientRenewProhibited
Status: clientTransferProhibited
Status: clientUpdateProhibited
Updated Date: 13-mar-2007
Creation Date: 20-feb-2000
Expiration Date: 20-feb-2010
>>> Last update of whois database: Thu, 26 Jun 2008 21:39:08 EDT <<<
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
TERMS OF USE: You are not authorized to access or query our Whois
database through the use of electronic processes that are high-volume and
automated except as reasonably necessary to register domain names or
modify existing registrations; the Data in VeriSign Global Registry
Services' ("VeriSign") Whois database is provided by VeriSign for
information purposes only, and to assist persons in obtaining information
about or related to a domain name registration record. VeriSign does not
guarantee its accuracy. By submitting a Whois query, you agree to abide
by the following terms of use: You agree that you may use this Data only
for lawful purposes and that under no circumstances will you use this Data
to: (1) allow, enable, or otherwise support the transmission of mass
unsolicited, commercial advertising or solicitations via e-mail, telephone,
or facsimile; or (2) enable high volume, automated, electronic processes
that apply to VeriSign (or its computer systems). The compilation,
repackaging, dissemination or other use of this Data is expressly
prohibited without the prior written consent of VeriSign. You agree not to
use electronic processes that are automated and high-volume to access or
query the Whois database except as reasonably necessary to register
domain names or modify existing registrations. VeriSign reserves the right
to restrict your access to the Whois database in its sole discretion to ensure
operational stability. VeriSign may restrict or terminate your access to the
Whois database for failure to abide by these terms of use. VeriSign
reserves the right to modify these terms at any time.
The Registry database contains ONLY .COM, .NET, .EDU domains and
Registrars.The data contained in GoDaddy.com, Inc.'s WhoIs database,
while believed by the company to be reliable, is provided "as is"
with no guarantee or warranties regarding its accuracy. This
information is provided for the sole purpose of assisting you
in obtaining information about domain name registration records.
Any use of this data for any other purpose is expressly forbidden without the prior written
permission of GoDaddy.com, Inc. By submitting an inquiry,
you agree to these terms of usage and limitations of warranty. In particular,
you agree not to use this data to allow, enable, or otherwise make possible,
dissemination or collection of this data, in part or in its entirety, for any
purpose, such as the transmission of unsolicited advertising and
and solicitations of any kind, including spam. You further agree
not to use this data to enable high volume, automated or robotic electronic
processes designed to collect or compile this data for any purpose,
including mining this data for your own personal or commercial purposes.
Please note: the registrant of the domain name is specified
in the "registrant" field. In most cases, GoDaddy.com, Inc.
is not the registrant of domain names listed in this database.
Registrant:
Domains by Proxy, Inc.
Registered through: GoDaddy.com, Inc. (http://www.godaddy.com)
Domain Name: DIGG.COM
Domain servers in listed order:
UDNS1.ULTRADNS.NET
UDNS2.ULTRADNS.NET
For complete domain details go to:
http://who.godaddy.com/whoischeck.aspx?Domain=DIGG.COM
================================================
FILE: test/samples/whois/druid.fi
================================================
domain.............: druid.fi
status.............: Registered
created............: 18.7.2012 04:04:23
expires............: 17.7.2022 22:16:55
available..........: 17.8.2022 22:16:55
modified...........: 19.3.2019
holder transfer....: 28.1.2014
RegistryLock.......: no
Nameservers
nserver............: ns3.digitalocean.com [OK]
nserver............: ns1.digitalocean.com [OK]
nserver............: ns2.digitalocean.com [OK]
dnssec.............: unsigned delegation
Holder
name...............: Druid Oy
register number....: 2491789-2
address............: Kaupintie 5
address............: 00440
address............: Helsinki
country............: Finland
phone..............: 0440479783
holder email.......:
Registrar
registrar..........: CSL Computer Service Langenbach GmbH (d/b/a joker.com)
www................: www.joker.com
Last update of WHOIS database: 17.4.2019 8:46:14 (EET) <<<
Copyright (c) Finnish Communications Regulatory Authority
================================================
FILE: test/samples/whois/drupalcamp.by
================================================
Domain Name: drupalcamp.by
Registrar: Active Technologies LLC
Person: HIDDEN!
Email: HIDDEN! Details are available at http://www.cctld.by/whois/
Name Server: darwin.ns.cloudflare.com
Name Server: serena.ns.cloudflare.com
Updated Date: 2018-08-04
Creation Date: 2018-07-25
Expiration Date: 2020-07-25
-------------------------------------------
Service provided by Reliable Software, Ltd.
================================================
FILE: test/samples/whois/eurid.eu
================================================
% The WHOIS service offered by EURid and the access to the records
% in the EURid WHOIS database are provided for information purposes
% only. It allows persons to check whether a specific domain name
% is still available or not and to obtain information related to
% the registration records of existing domain names.
%
% EURid cannot, under any circumstances, be held liable in case the
% stored information would prove to be wrong, incomplete or not
% accurate in any sense.
%
% By submitting a query, you agree not to use the information made
% available to:
%
% - allow, enable or otherwise support the transmission of unsolicited,
% commercial advertising or other solicitations whether via email or
% otherwise;
% - target advertising in any possible way;
% - cause nuisance in any possible way by sending messages to registrants,
% whether by automated, electronic processes capable of enabling
% high volumes or by other possible means.
%
% Without prejudice to the above, it is explicitly forbidden to extract,
% copy and/or use or re-utilise in any form and by any means
% (electronically or not) the whole or a quantitatively or qualitatively
% substantial part of the contents of the WHOIS database without prior
% and explicit permission by EURid, nor in any attempt hereof, to apply
% automated, electronic processes to EURid (or its systems).
%
% You agree that any reproduction and/or transmission of data for
% commercial purposes will always be considered as the extraction of a
% substantial part of the content of the WHOIS database.
%
% By submitting the query, you agree to abide by this policy and accept
% that EURid can take measures to limit the use of its WHOIS services
% to protect the privacy of its registrants or the integrity
% of the database.
%
% The EURid WHOIS service on port 43 (textual WHOIS) never discloses
% any information concerning the registrant.
% Registrant and on-site contact information can be obtained through use of the
% web-based WHOIS service available from the EURid website www.eurid.eu
%
% WHOIS eurid.eu
Domain: eurid.eu
Script: LATIN
Registrant:
NOT DISCLOSED!
Visit www.eurid.eu for the web-based WHOIS.
Technical:
Organisation: EURid vzw
Language: en
Email: tech@eurid.eu
Registrar:
Name: EURid vzw
Website: https://www.eurid.eu
Name servers:
ns3.eurid.eu (185.36.4.253)
ns3.eurid.eu (2001:67c:9c:3937::253)
nsx.eurid.eu (185.151.141.1)
nsx.eurid.eu (2a02:568:fe00::6575)
ns1.eurid.eu (2001:67c:9c:3937::252)
ns1.eurid.eu (185.36.4.252)
ns2.eurid.eu (2001:67c:40:3937::252)
ns2.eurid.eu (185.36.6.252)
ns4.eurid.eu (2001:67c:40:3937::253)
ns4.eurid.eu (185.36.6.253)
nsp.netnod.se
Keys:
flags:KSK protocol:3 algorithm:RSA_SHA256 pubKey:AwEAAcOQldGtC33GLx8s335UscKMPlWjDXCqbhR2QyAYcfS4CZS6YHg3A1Zz/K3VurTZF68aSaRkNupZuEgt4jozE3v4+t+2qOfiATvoOCrf74hWduBPwk9Go0z7FVlDkok1/qMQmqOtih8TFP85b+w6F/uyLMZS1JowMDUzRurmHJVoT4lW9+OCdrhuQFK9vU24Y8BmacoRy6mWBCFlysizlOIodwmquOf5A+3Nz0B3TLCK4fIYJYVxCUVlpRJ7uaBS+GLD7afuxkEesReYHgPWZFSDMbXk9Ugh+qUi8tEKKFls9TM3lK9BPBcciXUhI1bRJSHftqcNpMmLqg/79SwoWGc=
Please visit www.eurid.eu for more info.
================================================
FILE: test/samples/whois/google.ai
================================================
Domain Name: google.ai
Registry Domain ID: 6eddd132ab114b12bd2bd4cf9c492a04-DONUTS
Registrar WHOIS Server: whois.markmonitor.com
Registrar URL: http://www.markmonitor.com
Updated Date: 2025-01-23T22:17:03Z
Creation Date: 2017-12-16T05:37:20Z
Registry Expiry Date: 2025-09-25T05:37:20Z
Registrar: MarkMonitor Inc.
Registrar IANA ID: 292
Registrar Abuse Contact Email: abusecomplaints@markmonitor.com
Registrar Abuse Contact Phone: +1.2083895740
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Registry Registrant ID: 93b24aca40c6451785c486627aa03267-DONUTS
Registrant Name: Domain Administrator
Registrant Organization: Google LLC
Registrant Street: 1600 Amphitheatre Parkway
Registrant City: Mountain View
Registrant State/Province: CA
Registrant Postal Code: 94043
Registrant Country: US
Registrant Phone: +1.6502530000
Registrant Phone Ext:
Registrant Fax: +1.6502530001
Registrant Fax Ext:
Registrant Email: dns-admin@google.com
Registry Admin ID: 93b24aca40c6451785c486627aa03267-DONUTS
Admin Name: Domain Administrator
Admin Organization: Google LLC
Admin Street: 1600 Amphitheatre Parkway
Admin City: Mountain View
Admin State/Province: CA
Admin Postal Code: 94043
Admin Country: US
Admin Phone: +1.6502530000
Admin Phone Ext:
Admin Fax: +1.6502530001
Admin Fax Ext:
Admin Email: dns-admin@google.com
Registry Tech ID: 93b24aca40c6451785c486627aa03267-DONUTS
Tech Name: Domain Administrator
Tech Organization: Google LLC
Tech Street: 1600 Amphitheatre Parkway
Tech City: Mountain View
Tech State/Province: CA
Tech Postal Code: 94043
Tech Country: US
Tech Phone: +1.6502530000
Tech Phone Ext:
Tech Fax: +1.6502530001
Tech Fax Ext:
Tech Email: dns-admin@google.com
Name Server: ns2.zdns.google
Name Server: ns3.zdns.google
Name Server: ns4.zdns.google
Name Server: ns1.zdns.google
DNSSEC: unsigned
================================================
FILE: test/samples/whois/google.at
================================================
% Copyright (c)2019 by NIC.AT (1)
%
% Restricted rights.
%
% Except for agreed Internet operational purposes, no part of this
% information may be reproduced, stored in a retrieval system, or
% transmitted, in any form or by any means, electronic, mechanical,
% recording, or otherwise, without prior permission of NIC.AT on behalf
% of itself and/or the copyright holders. Any use of this material to
% target advertising or similar activities is explicitly forbidden and
% can be prosecuted.
%
% It is furthermore strictly forbidden to use the Whois-Database in such
% a way that jeopardizes or could jeopardize the stability of the
% technical systems of NIC.AT under any circumstances. In particular,
% this includes any misuse of the Whois-Database and any use of the
% Whois-Database which disturbs its operation.
%
% Should the user violate these points, NIC.AT reserves the right to
% deactivate the Whois-Database entirely or partly for the user.
% Moreover, the user shall be held liable for any and all damage
% arising from a violation of these points.
domain: google.at
registrar: MarkMonitor Inc. ( https://nic.at/registrar/434 )
registrant: GI7803022-NICAT
tech-c: GI1919751-NICAT
tech-c: GI7803025-NICAT
nserver: ns1.google.com
remarks: 216.239.32.10
nserver: ns2.google.com
remarks: 216.239.34.10
nserver: ns3.google.com
remarks: 216.239.36.10
nserver: ns4.google.com
remarks: 216.239.38.10
changed: 20110426 17:57:27
source: AT-DOM
personname: DNS Admin
organization: Google Inc.
street address: 1600 Amphitheatre Parkway
postal code: 94043
city: Mountain View
country: United States
phone: +16502530000
fax-no: +16502530001
e-mail: dns-admin@google.com
nic-hdl: GI7803022-NICAT
changed: 20110111 00:07:31
source: AT-DOM
personname:
organization: Google Inc.
street address: 1600 Amphitheatre Parkway
postal code: USA-94043
city: Mountain View, CA
country: United States
phone: +16506234000
fax-no: +16506188571
e-mail: dns-admin@google.com
nic-hdl: GI1919751-NICAT
changed: 20050617 21:36:20
source: AT-DOM
personname: DNS Admin
organization: Google Inc.
street address: 1600 Amphitheatre Parkway
postal code: 94043
city: Mountain View
country: United States
phone: +16502530000
fax-no: +16502530001
e-mail: dns-admin@google.com
nic-hdl: GI7803025-NICAT
changed: 20110111 00:08:30
source: AT-DOM
================================================
FILE: test/samples/whois/google.cl
================================================
%%
%% This is the NIC Chile Whois server (whois.nic.cl).
%%
%% Rights restricted by copyright.
%% See https://www.nic.cl/normativa/politica-publicacion-de-datos-cl.pdf
%%
Domain name: google.cl
Registrant name: Google Inc.
Registrant organisation:
Registrar name: MarkMonitor Inc.
Registrar URL: https://markmonitor.com/
Creation date: 2002-10-22 17:48:23 CLST
Expiration date: 2019-11-20 14:48:02 CLST
Name server: ns1.google.com
Name server: ns2.google.com
Name server: ns3.google.com
Name server: ns4.google.com
%%
%% For communication with domain contacts please use website.
%% See https://www.nic.cl/registry/Whois.do?d=google.cl
%%
================================================
FILE: test/samples/whois/google.co.cr
================================================
% *The information provided by WHOIS is supplied by NIC Costa Rica's database of registered domains. This option has the sole intention of showing information about the domains registered under the CR Top level domain for name assignation purposes. It is absolutely forbidden to collect, store, use or transmit any information displayed by WHOIS for commercial and advertising purposes without prior notice to the persons involved and to NIC Costa Rica. NIC Costa Rica does not guarantee the accuracy of the information displayed by this option. Since it is provided by the contacts, the accuracy is their responsibility. The National Academy of Sciences is not liable for the use of the information here revealed. The National Academy of Sciences undertakes to comply with the terms set forth in the Data Protection laws of the Republic of Costa Rica and therefore protects the data collected from NIC Costa Rica users, regardless of whether they are Costa Rican citizens or not. If you are a contact of a .cr domain name and wish to use the WHOIS Privacy service, select this option in "Edit account" once your login with your username and password, or access the following link:
% https://www.nic.cr/iniciar-sesion/?next=/my-account/
%
%
% *La información mostrada a través de la opción WHOIS es provista de la base de datos de los dominios registrados en NIC Costa Rica. Esta opción tiene el propósito exclusivo de mostrar información sobre los dominios registrados bajo el Dominio Superior .CR para los fines de la delegación de los nombs. Queda absolutamente prohibido compilar, almacenar, usar y/o trasmitir la información mostrada mediante la opción WHOIS para fines comerciales y publicitarios, sin la previa autorización de los afectados y de NIC Costa Rica. NIC Costa Rica no garantiza la exactitud de la información desplegada mediante esta opción, ya que ésta proviene de los contactos, y su veracidad es responsabilidad de estos últimos. La Academia Nacional de Ciencias no se responsabiliza por el uso que se le dé a la información aquí mostrada. La Academia Nacional de Ciencias se compromete a cumplir con los términos establecidos en las leyes de Protección de Datos de la República de Costa Rica y por lo tanto protege los datos recolectados de todos los usuarios de NIC Costa Rica que sean ciudadanos o no de la República de Costa Rica. Si un contacto de un dominio .cr desea hacer uso del servicio de Privacidad WHOIS puede escoger esta opción en "Editar cuenta" con su usuario y clave, o ingresar al siguiente link:
% https://www.nic.cr/iniciar-sesion/?next=/mi-cuenta/
%
% Whoisd Server Version: 3.10.2
% Timestamp: Tue Apr 16 06:51:27 2019
domain: google.co.cr
registrant: CON-66
admin-c: CON-66
nsset: GOOGLE_CO_CR
registrar: NIC-REG1
status: Deletion forbidden
status: Sponsoring registrar change forbidden
status: Update forbidden
status: Administratively blocked
status: Registrant change forbidden
registered: 18.04.2002 18:00:00
changed: 28.02.2017 06:39:42
expire: 17.04.2020
contact: CON-66
org: MarkMonitor Inc.
name: MarkMonitor Inc
address: 3540 East Longwing Lane, Suite 300
address: Meridian
address: 83646
address: Idaho
address: US
phone: +1.2083895740
fax-no: +1.2083895771
e-mail: ccops@markmonitor.com
registrar: NIC-REG1
created: 03.06.2011 16:22:36
changed: 28.03.2019 03:49:37
nsset: GOOGLE_CO_CR
nserver: ns1.google.com
nserver: ns2.google.com
nserver: ns3.google.com
nserver: ns4.google.com
tech-c: CON-66
registrar: NIC-REG1
created: 03.06.2011 12:51:41
changed: 30.03.2016 10:37:14
================================================
FILE: test/samples/whois/google.co.id
================================================
# whois.id
Domain Name: GOOGLE.CO.ID
Registry Domain ID: 166626_DOMAIN_ID-ID
Registrar WHOIS Server:
Registrar URL: www.digitalregistra.co.id
Updated Date: 2025-08-05T05:00:20Z
Creation Date: 2004-12-18T13:33:21Z
Registry Expiry Date: 2026-09-01T23:59:59Z
Registrar: PT Digital Registra Indonesia
Registrar IANA ID: 1
Registrar Abuse Contact Email: info@digitalregistra.co.id
Registrar Abuse Contact Phone:
Domain Status: clientDeleteProhibited
Domain Status: clientRenewProhibited
Domain Status: clientTransferProhibited
Domain Status: clientUpdateProhibited
Domain Status: serverDeleteProhibited
Domain Status: serverRenewProhibited
Domain Status: serverTransferProhibited
Domain Status: serverUpdateProhibited
Name Server: NS1.GOOGLE.COM
Name Server: NS2.GOOGLE.COM
Name Server: NS3.GOOGLE.COM
Name Server: NS4.GOOGLE.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of WHOIS database: 2025-10-16T19:03:31Z <<<
================================================
FILE: test/samples/whois/google.co.il
================================================
% The data in the WHOIS database of the .il registry is provided
% by ISOC-IL for information purposes, and to assist persons in
% obtaining information about or related to a domain name
% registration record. ISOC-IL does not guarantee its accuracy.
% By submitting a WHOIS query, you agree that you will use this
% Data only for lawful purposes and that, under no circumstances
% will you use this Data to: (1) allow, enable, or otherwise
% support the transmission of mass unsolicited, commercial
% advertising or solicitations via e-mail (spam);
% or (2) enable high volume, automated, electronic processes that
% apply to ISOC-IL (or its systems).
% ISOC-IL reserves the right to modify these terms at any time.
% By submitting this query, you agree to abide by this policy.
query: google.co.il
reg-name: google
domain: google.co.il
descr: Google LLC.
descr: 1600 Amphitheatre Parkway
descr: Mountain View CA
descr: 94043
descr: USA
phone: +1 650 3300100
fax-no: +1 650 6188571
e-mail: dns-admin AT google.com
admin-c: DT-DA20915-IL
tech-c: DT-DA19919-IL
zone-c: DT-DA19919-IL
nserver: ns1.google.com
nserver: ns2.google.com
nserver: ns3.google.com
nserver: ns4.google.com
assigned: 05-06-1999
validity: 05-06-2026
DNSSEC: unsigned
status: Transfer Locked
changed: registrar AT ns.il 19990605 (Assigned)
changed: domain-registrar AT isoc.org.il 20020926 (Changed)
changed: domain-registrar AT isoc.org.il 20050706 (Changed)
changed: domain-registrar AT isoc.org.il 20070118 (Changed)
changed: domain-registrar AT isoc.org.il 20170517 (Transferred)
changed: domain-registrar AT isoc.org.il 20170517 (Changed)
changed: domain-registrar AT isoc.org.il 20181216 (Changed)
changed: domain-registrar AT isoc.org.il 20181216 (Changed)
person: Domain admin
address Google Inc.
address 1600 Amphitheatre Parkway
address Mountain View CA
address 94043
address USA
phone: +1 650 3300100
fax-no: +1 650 6188571
e-mail: ccops AT markmonitor.com
nic-hdl: DT-DA20915-IL
changed: Managing Registrar 20170329
person: Domain Admin
address MarkMonitor Inc.
address 3540 E Longwing Lane Suite 300
address Meridian ID
address 83646
address USA
phone: +1 208 3895740
fax-no: +1 208 3895771
e-mail: ccops AT markmonitor.com
nic-hdl: DT-DA19919-IL
changed: Managing Registrar 20161005
changed: Managing Registrar 20170816
registrar name: Domain The Net Technologies Ltd
registrar info: https://www.domainthenet.com
% Rights to the data above are restricted by copyright.
================================================
FILE: test/samples/whois/google.co.ve
================================================
Servidor Whois del Centro de Información de Red de Venezuela (NIC.VE)
Este servidor contiene información autoritativa exclusivamente de dominios .VE
Cualquier consulta sobre este servicio, puede hacerla al correo electrónico whois@nic.ve
Titular:
Google Inc. dns-admin@google.com
Google Inc
1600 Amphitheatre Parkway
Mountain View, CA US
+1.6502530000
Nombre de Dominio: google.co.ve
Contacto Administrativo:
DNS Admin dns-admin@google.com
Google Inc.
1600 Amphitheatre Parkway
Mountain View, CA, CA UNITED STATES
+1.6502530000 (FAX) +16506181499
Contacto Técnico:
DNS Admin dns-admin@google.com
Google Inc.
1600 Amphitheatre Parkway
Mountain View, CA, CA UNITED STATES
+1.6502530000 (FAX) +16506181499
Contacto de Cobranza:
Domain Administrator Venezueladomains2@markmonitor.com
Markmonitor, Inc.
391 N. Ancestor Place
Boise ID US
1-1 - 2083895740 (FAX) 1 - 2083895740
Fecha de Vencimiento: 2018-03-06 00:00:00
Ultima Actualización: 2005-11-17 20:35:01
Fecha de Creación: 2003-03-06 00:00:00
Estatus del dominio: ACTIVO
Servidor(es) de Nombres de Dominio:
- ns1.google.com
- ns2.google.com
- ns3.google.com
- ns4.google.com
NIC-Venezuela - CONATEL
http://www.nic.ve
================================================
FILE: test/samples/whois/google.com
================================================
Whois Server Version 2.0
Domain names in the .com and .net domains can now be registered
with many different competing registrars. Go to http://www.internic.net
for detailed information.
Server Name: GOOGLE.COM.ZZZZZ.GET.LAID.AT.WWW.SWINGINGCOMMUNITY.COM
IP Address: 69.41.185.195
Registrar: INNERWISE, INC. D/B/A ITSYOURDOMAIN.COM
Whois Server: whois.itsyourdomain.com
Referral URL: http://www.itsyourdomain.com
Server Name: GOOGLE.COM.ZOMBIED.AND.HACKED.BY.WWW.WEB-HACK.COM
IP Address: 217.107.217.167
Registrar: ONLINENIC, INC.
Whois Server: whois.35.com
Referral URL: http://www.OnlineNIC.com
Server Name: GOOGLE.COM.YAHOO.COM.MYSPACE.COM.YOUTUBE.COM.FACEBOOK.COM.THEYSUCK.DNSABOUT.COM
IP Address: 72.52.190.30
Registrar: GODADDY.COM, INC.
Whois Server: whois.godaddy.com
Referral URL: http://registrar.godaddy.com
Server Name: GOOGLE.COM.WORDT.DOOR.VEEL.WHTERS.GEBRUIKT.SERVERTJE.NET
IP Address: 62.41.27.144
Registrar: KEY-SYSTEMS GMBH
Whois Server: whois.rrpproxy.net
Referral URL: http://www.key-systems.net
Server Name: GOOGLE.COM.VN
Registrar: ONLINENIC, INC.
Whois Server: whois.35.com
Referral URL: http://www.OnlineNIC.com
Server Name: GOOGLE.COM.UY
Registrar: DIRECTI INTERNET SOLUTIONS PVT. LTD. D/B/A PUBLICDOMAINREGISTRY.COM
Whois Server: whois.PublicDomainRegistry.com
Referral URL: http://www.PublicDomainRegistry.com
Server Name: GOOGLE.COM.UA
Registrar: DIRECTI INTERNET SOLUTIONS PVT. LTD. D/B/A PUBLICDOMAINREGISTRY.COM
Whois Server: whois.PublicDomainRegistry.com
Referral URL: http://www.PublicDomainRegistry.com
Server Name: GOOGLE.COM.TW
Registrar: WEB COMMERCE COMMUNICATIONS LIMITED DBA WEBNIC.CC
Whois Server: whois.webnic.cc
Referral URL: http://www.webnic.cc
Server Name: GOOGLE.COM.TR
Registrar: DIRECTI INTERNET SOLUTIONS PVT. LTD. D/B/A PUBLICDOMAINREGISTRY.COM
Whois Server: whois.PublicDomainRegistry.com
Referral URL: http://www.PublicDomainRegistry.com
Server Name: GOOGLE.COM.SUCKS.FIND.CRACKZ.WITH.SEARCH.GULLI.COM
IP Address: 80.190.192.24
Registrar: EPAG DOMAINSERVICES GMBH
Whois Server: whois.enterprice.net
Referral URL: http://www.enterprice.net
Server Name: GOOGLE.COM.SPROSIUYANDEKSA.RU
Registrar: MELBOURNE IT, LTD. D/B/A INTERNET NAMES WORLDWIDE
Whois Server: whois.melbourneit.com
Referral URL: http://www.melbourneit.com
Server Name: GOOGLE.COM.SERVES.PR0N.FOR.ALLIYAH.NET
IP Address: 84.255.209.69
Registrar: GODADDY.COM, INC.
Whois Server: whois.godaddy.com
Referral URL: http://registrar.godaddy.com
Server Name: GOOGLE.COM.SA
Registrar: OMNIS NETWORK, LLC
Whois Server: whois.omnis.com
Referral URL: http://domains.omnis.com
Server Name: GOOGLE.COM.PLZ.GIVE.A.PR8.TO.AUDIOTRACKER.NET
IP Address: 213.251.184.30
Registrar: OVH
Whois Server: whois.ovh.com
Referral URL: http://www.ovh.com
Server Name: GOOGLE.COM.MX
Registrar: DIRECTI INTERNET SOLUTIONS PVT. LTD. D/B/A PUBLICDOMAINREGISTRY.COM
Whois Server: whois.PublicDomainRegistry.com
Referral URL: http://www.PublicDomainRegistry.com
Server Name: GOOGLE.COM.IS.NOT.HOSTED.BY.ACTIVEDOMAINDNS.NET
IP Address: 217.148.161.5
Registrar: ENOM, INC.
Whois Server: whois.enom.com
Referral URL: http://www.enom.com
Server Name: GOOGLE.COM.IS.HOSTED.ON.PROFITHOSTING.NET
IP Address: 66.49.213.213
Registrar: NAME.COM LLC
Whois Server: whois.name.com
Referral URL: http://www.name.com
Server Name: GOOGLE.COM.IS.APPROVED.BY.NUMEA.COM
IP Address: 213.228.0.43
Registrar: GANDI SAS
Whois Server: whois.gandi.net
Referral URL: http://www.gandi.net
Server Name: GOOGLE.COM.HAS.LESS.FREE.PORN.IN.ITS.SEARCH.ENGINE.THAN.SECZY.COM
IP Address: 209.187.114.130
Registrar: INNERWISE, INC. D/B/A ITSYOURDOMAIN.COM
Whois Server: whois.itsyourdomain.com
Referral URL: http://www.itsyourdomain.com
Server Name: GOOGLE.COM.DO
Registrar: GODADDY.COM, INC.
Whois Server: whois.godaddy.com
Referral URL: http://registrar.godaddy.com
Server Name: GOOGLE.COM.COLLEGELEARNER.COM
IP Address: 72.14.207.99
IP Address: 64.233.187.99
IP Address: 64.233.167.99
Registrar: GODADDY.COM, INC.
Whois Server: whois.godaddy.com
Referral URL: http://registrar.godaddy.com
Server Name: GOOGLE.COM.CO
Registrar: NAMESECURE.COM
Whois Server: whois.namesecure.com
Referral URL: http://www.namesecure.com
Server Name: GOOGLE.COM.BR
Registrar: ENOM, INC.
Whois Server: whois.enom.com
Referral URL: http://www.enom.com
Server Name: GOOGLE.COM.BEYONDWHOIS.COM
IP Address: 203.36.226.2
Registrar: TUCOWS INC.
Whois Server: whois.tucows.com
Referral URL: http://domainhelp.opensrs.net
Server Name: GOOGLE.COM.AU
Registrar: PLANETDOMAIN PTY LTD.
Whois Server: whois.planetdomain.com
Referral URL: http://www.planetdomain.com
Server Name: GOOGLE.COM.ACQUIRED.BY.CALITEC.NET
IP Address: 85.190.27.2
Registrar: ENOM, INC.
Whois Server: whois.enom.com
Referral URL: http://www.enom.com
Domain Name: GOOGLE.COM
Registrar: MARKMONITOR INC.
Whois Server: whois.markmonitor.com
Referral URL: http://www.markmonitor.com
Name Server: NS1.GOOGLE.COM
Name Server: NS2.GOOGLE.COM
Name Server: NS3.GOOGLE.COM
Name Server: NS4.GOOGLE.COM
Status: clientDeleteProhibited
Status: clientTransferProhibited
Status: clientUpdateProhibited
Updated Date: 10-apr-2006
Creation Date: 15-sep-1997
Expiration Date: 14-sep-2011
>>> Last update of whois database: Thu, 26 Jun 2008 21:39:39 EDT <<<
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
TERMS OF USE: You are not authorized to access or query our Whois
database through the use of electronic processes that are high-volume and
automated except as reasonably necessary to register domain names or
modify existing registrations; the Data in VeriSign Global Registry
Services' ("VeriSign") Whois database is provided by VeriSign for
information purposes only, and to assist persons in obtaining information
about or related to a domain name registration record. VeriSign does not
guarantee its accuracy. By submitting a Whois query, you agree to abide
by the following terms of use: You agree that you may use this Data only
for lawful purposes and that under no circumstances will you use this Data
to: (1) allow, enable, or otherwise support the transmission of mass
unsolicited, commercial advertising or solicitations via e-mail, telephone,
or facsimile; or (2) enable high volume, automated, electronic processes
that apply to VeriSign (or its computer systems). The compilation,
repackaging, dissemination or other use of this Data is expressly
prohibited without the prior written consent of VeriSign. You agree not to
use electronic processes that are automated and high-volume to access or
query the Whois database except as reasonably necessary to register
domain names or modify existing registrations. VeriSign reserves the right
to restrict your access to the Whois database in its sole discretion to ensure
operational stability. VeriSign may restrict or terminate your access to the
Whois database for failure to abide by these terms of use. VeriSign
reserves the right to modify these terms at any time.
The Registry database contains ONLY .COM, .NET, .EDU domains and
Registrars.
MarkMonitor.com - The Leader in Corporate Domain Management
----------------------------------------------------------
For Global Domain Consolidation, Research & Intelligence,
and Enterprise DNS, go to: www.markmonitor.com
----------------------------------------------------------
The Data in MarkMonitor.com's WHOIS database is provided by MarkMonitor.com
for information purposes, and to assist persons in obtaining information
about or related to a domain name registration record. MarkMonitor.com
does not guarantee its accuracy. By submitting a WHOIS query, you agree
that you will use this Data only for lawful purposes and that, under no
circumstances will you use this Data to: (1) allow, enable, or otherwise
support the transmission of mass unsolicited, commercial advertising or
solicitations via e-mail (spam); or (2) enable high volume, automated,
electronic processes that apply to MarkMonitor.com (or its systems).
MarkMonitor.com reserves the right to modify these terms at any time.
By submitting this query, you agree to abide by this policy.
Registrant:
Dns Admin
Google Inc.
Please contact contact-admin@google.com 1600 Amphitheatre Parkway
Mountain View CA 94043
US
dns-admin@google.com +1.6502530000 Fax: +1.6506188571
Domain Name: google.com
Registrar Name: Markmonitor.com
Registrar Whois: whois.markmonitor.com
Registrar Homepage: http://www.markmonitor.com
Administrative Contact:
DNS Admin
Google Inc.
1600 Amphitheatre Parkway
Mountain View CA 94043
US
dns-admin@google.com +1.6506234000 Fax: +1.6506188571
Technical Contact, Zone Contact:
DNS Admin
Google Inc.
2400 E. Bayshore Pkwy
Mountain View CA 94043
US
dns-admin@google.com +1.6503300100 Fax: +1.6506181499
Created on..............: 1997-09-15.
Expires on..............: 2011-09-13.
Record last updated on..: 2008-06-08.
Domain servers in listed order:
ns4.google.com
ns3.google.com
ns2.google.com
ns1.google.com
MarkMonitor.com - The Leader in Corporate Domain Management
----------------------------------------------------------
For Global Domain Consolidation, Research & Intelligence,
and Enterprise DNS, go to: www.markmonitor.com
----------------------------------------------------------
--
================================================
FILE: test/samples/whois/google.com.br
================================================
% Copyright (c) Nic.br
% The use of the data below is only permitted as described in
% full by the terms of use at https://registro.br/termo/en.html ,
% being prohibited its distribution, commercialization or
% reproduction, in particular, to use it for advertising or
% any similar purpose.
% 2019-04-19T03:22:06-03:00
domain: google.com.br
owner: Google Brasil Internet Ltda
ownerid: 06.990.590/0001-23
responsible: Domain Administrator
country: BR
owner-c: DOADM17
admin-c: DOADM17
tech-c: DOADM17
billing-c: NAB51
nserver: ns1.google.com
nsstat: 20190418 AA
nslastaa: 20190418
nserver: ns2.google.com
nsstat: 20190418 AA
nslastaa: 20190418
nserver: ns3.google.com
nsstat: 20190418 AA
nslastaa: 20190418
nserver: ns4.google.com
nsstat: 20190418 NOT SYNC ZONE
nslastaa: 20190418
created: 19990518 #162310
changed: 20190417
expires: 20200518
status: published
nic-hdl-br: DOADM17
person: Domain Admin
e-mail: ccops@markmonitor.com
country: BR
created: 20100520
changed: 20180324
nic-hdl-br: NAB51
person: NameAction do Brasil
e-mail: mail@nameaction.com
country: BR
created: 20020619
changed: 20181011
% Security and mail abuse issues should also be addressed to
% cert.br, http://www.cert.br/ , respectivelly to cert@cert.br
% and mail-abuse@cert.br
%
% whois.registro.br accepts only direct match queries. Types
% of queries are: domain (.br), registrant (tax ID), ticket,
% provider, contact handle (ID), CIDR block, IP and ASN.
================================================
FILE: test/samples/whois/google.com.pe
================================================
Domain Name: google.com.pe
WHOIS Server: NIC .PE
Sponsoring Registrar: MarkMonitor Inc.
Domain Status: clientTransferProhibited
Domain Status: clientDeleteProhibited
Domain Status: clientUpdateProhibited
Registrant Name: Google LLC
Admin Name: Google LLC
Admin Email: dns-admin@google.com
Name Server: ns1.google.com
Name Server: ns2.google.com
Name Server: ns3.google.com
Name Server: ns4.google.com
DNSSEC: unsigned
>>> Last update of WHOIS database: 2019-04-18T05:53:50.968Z <<<
TERMS OF USE: You are not authorized to access or query our Whois
database through the use of electronic processes that are high-volume and
automated. Whois database is provided as a service to the internet
community.
The data is for information purposes only. Red Cientifica Peruana does not
guarantee its accuracy. By submitting a Whois query, you agree to abide
by the following terms of use: You agree that you may use this Data only
for lawful purposes and that under no circumstances will you use this Data
to: (1) allow, enable, or otherwise support the transmission of mass
unsolicited, commercial advertising or solicitations via e-mail, telephone,
or facsimile; or (2) enable high volume, automated, electronic processes.
The compilation, repackaging, dissemination or other use of this Data is
expressly prohibited.
================================================
FILE: test/samples/whois/google.com.sa
================================================
% SaudiNIC Whois server.
% Rights restricted by copyright.
% http://nic.sa/en/view/whois-cmd-copyright
Domain Name: google.com.sa
Registrant:
Google Inc. قوقل انك
Address: 1600 Amphitheatre Parkway
Mountain View
United States
Administrative Contact:
Maan Al Khen
Address: Riyadh Olia
11423 Riyadh
Saudi Arabia
Technical Contact:
Domain Administrator
Address: 3540 East Longwing Lane Suite 300
83646 Idaho
United States
Name Servers:
ns1.google.com
ns2.google.com
ns4.google.com
ns3.google.com
Created on: 2004-01-11
Last Updated on: 2019-02-06
================================================
FILE: test/samples/whois/google.com.sg
================================================
Domain Name: google.com.sg
Updated Date: 2024-06-03T09:54:56Z
Creation Date: 2002-07-05T09:42:32Z
Registry Expiry Date: 2025-07-04T16:00:00Z
Registrar: MarkMonitor Inc.
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
VerifiedID Status: VerifiedID@SG-Not Required
Registry Lock:
Registrant Name: GOOGLE LLC
Admin Name: MARKMONITOR INC.
Tech Name: GOOGLE LLC
Tech Email: dns-admin@google.com
Name Server: ns1.google.com
Name Server: ns2.google.com
DNSSEC: unsigned
>>> Last update of WHOIS database: 2024-06-18T01:45:41Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
% ----------------------------------------------------------------------
% SGNIC WHOIS Server
% ----------------------------------------------------------------------
%
% This data is provided for information purposes only.
================================================
FILE: test/samples/whois/google.com.tr
================================================
** Domain Name: google.com.tr
** Registrant:
Google LLC
1600 Amphitheatre Parkway
Mountain View
Out of Turkey,
United States of America
dns-admin@google.com
+ 1-650-2530000-
+ 1-650-2530001-
** Administrative Contact:
NIC Handle : mi154-metu
Organization Name : MarkMonitor, Inc
Address : Hidden upon user request
Phone : Hidden upon user request
Fax : Hidden upon user request
** Technical Contact:
NIC Handle : btl1-metu
Organization Name : Beril Teknoloji Bili�im Yay�nc�l�k Ticaret A.�.
Address : Hidden upon user request
Phone : Hidden upon user request
Fax : Hidden upon user request
** Billing Contact:
NIC Handle : btl1-metu
Organization Name : Beril Teknoloji Bili�im Yay�nc�l�k Ticaret A.�.
Address : Hidden upon user request
Phone : Hidden upon user request
Fax : Hidden upon user request
** Domain Servers:
ns1.google.com
ns2.google.com
ns3.google.com
ns4.google.com
** Additional Info:
Created on..............: 2001-Aug-23.
Expires on..............: 2019-Aug-22.
================================================
FILE: test/samples/whois/google.com.tw
================================================
Domain Name: google.com.tw
Domain Status: clientUpdateProhibited,clientTransferProhibited,clientDeleteProhibited
Registrant:
Google Inc.
DNS Admin dns-admin@google.com
+1.6502530000
+1.6506188571
1600 Amphitheatre Parkway
Mountain View, CA
US
Administrative Contact:
DNS Admin dns-admin@google.com
+1.6502530000
+1.6506188571
Technical Contact:
DNS Admin dns-admin@google.com
+1.6502530000
+1.6506188571
Record expires on 2019-11-09 (YYYY-MM-DD)
Record created on 2000-08-29 (YYYY-MM-DD)
Domain servers in listed order:
ns1.google.com
ns2.google.com
ns3.google.com
ns4.google.com
Registration Service Provider: Markmonitor, Inc.
Registration Service URL: http://www.markmonitor.com/
[Provided by NeuStar Registry Gateway Services]
================================================
FILE: test/samples/whois/google.com.ua
================================================
% Request from 80.254.2.190
% This is the Ukrainian Whois query server #F.
% The Whois is subject to Terms of use
% See https://hostmaster.ua/services/
%
% IN THE PROCESS OF DELEGATION OF A DOMAIN NAME,
% THE REGISTRANT IS AN ENTITY WHO USES AND MANAGES A CERTAIN DOMAIN NAME,
% AND THE REGISTRAR IS A BUSINESS ENTITY THAT PROVIDES THE REGISTRANT
% WITH THE SERVICES NECESSARY FOR THE TECHNICAL MAINTENANCE OF THE REGISTRATION AND OPERATION OF THE DOMAIN NAME.
% FOR INFORMATION ABOUT THE REGISTRANT OF THE DOMAIN NAME, YOU SHOULD CONTACT THE REGISTRAR.
domain: google.com.ua
dom-public: NO
mnt-by: ua.markmonitor
nserver: ns3.google.com
nserver: ns1.google.com
nserver: ns4.google.com
nserver: ns2.google.com
status: clientDeleteProhibited
status: clientTransferProhibited
status: clientUpdateProhibited
created: 2002-12-04 00:00:00+02
modified: 2018-11-02 11:29:08+02
expires: 2019-12-04 00:00:00+02
source: UAEPP
% Registrar:
% ==========
registrar: ua.markmonitor
organization: MarkMonitor Inc.
organization-loc: MarkMonitor Inc.
url: http://markmonitor.com
city: Meridian, Idaho
country: US
abuse-email: abusecomplaints@markmonitor.com
abuse-postal: 83646 Meridian, Idaho 3540 East Longwing Lane, suite 300
source: UAEPP
% Registrant:
% ===========
person: n/a
person-loc: DNS Admin
organization-loc: Google Inc.
e-mail: dns-admin@google.com
address: n/a
address-loc: 1600 Amphitheatre Parkway
address-loc: CA
address-loc: Mountain View
postal-code-loc: 94043
country-loc: US
phone: +1.6502530000
fax: +1.6502530001
mnt-by: ua.markmonitor
status: ok
status: linked
created: 2017-07-28 23:53:31+03
source: UAEPP
% Administrative Contacts:
% =======================
person: n/a
person-loc: DNS Admin
organization-loc: Google Inc.
e-mail: dns-admin@google.com
address: n/a
address-loc: 1600 Amphitheatre Parkway
address-loc: CA
address-loc: Mountain View
postal-code-loc: 94043
country-loc: US
phone: +1.6502530000
fax: +1.6502530001
mnt-by: ua.markmonitor
status: ok
status: linked
created: 2017-07-28 23:53:31+03
source: UAEPP
% Query time: 5 msec
================================================
FILE: test/samples/whois/google.de
================================================
% Restricted rights.
%
% Terms and Conditions of Use
%
% The above data may only be used within the scope of technical or
% administrative necessities of Internet operation or to remedy legal
% problems.
% The use for other purposes, in particular for advertising, is not permitted.
%
% The DENIC whois service on port 43 doesn't disclose any information concerning
% the domain holder, general request and abuse contact.
% This information can be obtained through use of our web-based whois service
% available at the DENIC website:
% http://www.denic.de/en/domains/whois-service/web-whois.html
%
%
Domain: google.de
Nserver: ns1.google.com
Nserver: ns2.google.com
Nserver: ns3.google.com
Nserver: ns4.google.com
Status: connect
Changed: 2018-03-12T21:44:25+01:00
================================================
FILE: test/samples/whois/google.do
================================================
Domain Name: google.do
WHOIS Server: whois.nic.do
Updated Date: 2019-02-07T17:54:31.560Z
Creation Date: 2010-03-08T04:00:00.0Z
Registry Expiry Date: 2020-03-08T04:00:00.0Z
Domain Status: ok https://icann.org/epp#ok
Registrar: Registrar NIC .DO (midominio.do)
Registrar Address: Av. R?mulo Betancourt 1108, La Julia Apartado postal 2748, Santo Domingo
Registrar Country: DO
Registrar Phone: 8095350111
Registrar Fax: 8092860012
Registrar Customer Service Contact: info@nic.do
Registrar Customer Service Email: info@nic.do
Registrant ID: Redacted | EU Data Subject
Registrant Name: GOOGLE LLC
Registrant Organization: GOOGLE LLC
Registrant Street: Redacted | EU Data Subject
Registrant City: Redacted | EU Data Subject
Registrant State/Province: Redacted | EU Data Subject
Registrant Postal Code: Redacted | EU Data Subject
Registrant Country: Redacted | EU Data Subject
Registrant Phone: Redacted | EU Data Subject
Registrant Fax: Redacted | EU Data Subject
Registrant Email: Redacted | EU Data Subject
Admin ID: Redacted | EU Data Subject
Admin Name: Google LLC
Admin Organization: GOOGLE LLC
Admin Street: Redacted | EU Data Subject
Admin City: Redacted | EU Data Subject
Admin State/Province: Redacted | EU Data Subject
Admin Postal Code: Redacted | EU Data Subject
Admin Country: Redacted | EU Data Subject
Admin Phone: Redacted | EU Data Subject
Admin Fax: Redacted | EU Data Subject
Admin Email: Redacted | EU Data Subject
Billing ID: Redacted | EU Data Subject
Billing Name: MARKMONITOR
Billing Organization: MARKMONITOR
Billing Street: Redacted | EU Data Subject
Billing Street: Redacted | EU Data Subject
Billing City: Redacted | EU Data Subject
Billing State/Province: Redacted | EU Data Subject
Billing Postal Code: Redacted | EU Data Subject
Billing Country: Redacted | EU Data Subject
Billing Phone: Redacted | EU Data Subject
Billing Fax: Redacted | EU Data Subject
Billing Email: Redacted | EU Data Subject
Tech ID: Redacted | EU Data Subject
Tech Name: Google LLC
Tech Organization: Google LLC
Tech Street: Redacted | EU Data Subject
Tech City: Redacted | EU Data Subject
Tech State/Province: Redacted | EU Data Subject
Tech Postal Code: Redacted | EU Data Subject
Tech Country: Redacted | EU Data Subject
Tech Phone: Redacted | EU Data Subject
Tech Fax: Redacted | EU Data Subject
Tech Email: Redacted | EU Data Subject
Name Server: ns1.google.com
Name Server: ns2.google.com
DNSSEC: unsigned
>>> Last update of WHOIS database: 2019-04-16T13:27:25.387Z <<<
TERMS OF USE: You are not authorized to access or query our WHOIS database through the use of electronic processes that are high-volume and automated. This WHOIS database is provided by as a service to the internet community.
The data is for information purposes only. We do not guarantee its accuracy. By submitting a WHOIS query, you agree to abide by the following terms of use: You agree that you may use this Data only for lawful purposes and that under no circumstances will you use this Data to: (1) allow, enable, or otherwise support the transmission of mass unsolicited, commercial advertising or solicitations via e-mail, telephone, or facsimile; or (2) enable high volume, automated, electronic processes that apply to NIC.DO. The compilation, repackaging, dissemination or other use of this Data is expressly prohibited.
================================================
FILE: test/samples/whois/google.fr
================================================
%%
%% This is the AFNIC Whois server.
%%
%% complete date format: YYYY-MM-DDThh:mm:ssZ
%%
%% Rights restricted by copyright.
%% See https://www.afnic.fr/en/domain-names-and-support/everything-there-is-to-know-about-domain-names/find-a-domain-name-or-a-holder-using-whois/
%%
%%
domain: google.fr
status: ACTIVE
eppstatus: serverUpdateProhibited
eppstatus: serverTransferProhibited
eppstatus: serverDeleteProhibited
eppstatus: serverRecoverProhibited
hold: NO
holder-c: GIHU100-FRNIC
admin-c: GIHU101-FRNIC
tech-c: MI3669-FRNIC
registrar: MARKMONITOR Inc.
Expiry Date: 2026-12-30T17:16:48Z
created: 2000-07-26T22:00:00Z
last-update: 2025-12-03T10:12:00.351952Z
source: FRNIC
nserver: ns1.google.com
nserver: ns2.google.com
nserver: ns3.google.com
nserver: ns4.google.com
source: FRNIC
registrar: MARKMONITOR Inc.
address: 2150 S. Bonito Way, Suite 150
address: ID 83642 MERIDIAN
country: US
phone: +1.2083895740
fax-no: +1.2083895771
e-mail: registry.admin@markmonitor.com
website: http://www.markmonitor.com
anonymous: No
registered: 2002-01-07T00:00:00Z
source: FRNIC
nic-hdl: GIHU100-FRNIC
type: ORGANIZATION
contact: Google Ireland Holdings Unlimited Company
address: Google Ireland Holdings Unlimited Company
address: 70 Sir John Rogerson's Quay
address: 2 Dublin
country: IE
phone: +353.14361000
e-mail: dns-admin@google.com
registrar: MARKMONITOR Inc.
changed: 2024-06-11T20:04:33.772976Z
anonymous: NO
obsoleted: NO
eppstatus: serverUpdateProhibited
eppstatus: associated
eligstatus: not identified
reachstatus: not identified
source: FRNIC
nic-hdl: GIHU101-FRNIC
type: ORGANIZATION
contact: Google Ireland Holdings Unlimited Company
address: 70 Sir John Rogerson's Quay
address: 2 Dublin
country: IE
phone: +353.14361000
e-mail: dns-admin@google.com
registrar: MARKMONITOR Inc.
anonymous: NO
obsoleted: NO
eppstatus: associated
eppstatus: active
eligstatus: not identified
reachstatus: ok
reachmedia: email
reachsource: REGISTRAR
reachdate: 2018-03-02T00:00:00Z
source: FRNIC
nic-hdl: MI3669-FRNIC
type: ORGANIZATION
contact: MarkMonitor Inc.
address: 2150 S. Bonito Way, Suite 150
address: 83642 Meridian
country: US
phone: +1.2083895740
fax-no: +1.2083895771
e-mail: ccops@markmonitor.com
registrar: MARKMONITOR Inc.
changed: 2026-02-05T20:37:17.379552Z
anonymous: NO
obsoleted: NO
eppstatus: associated
eppstatus: active
eligstatus: ok
eligsource: REGISTRAR
eligdate: 2021-10-05T00:00:00Z
reachstatus: ok
reachmedia: email
reachsource: REGISTRAR
reachdate: 2021-10-05T00:00:00Z
source: FRNIC
>>> Last update of WHOIS database: 2026-02-06T17:22:17.219605Z <<<
================================================
FILE: test/samples/whois/google.hn
================================================
Domain Name: google.hn
Domain ID: 801220-CoCCA
WHOIS Server: whois.nic.hn
Updated Date: 2019-02-03T10:43:28.837Z
Creation Date: 2003-03-07T05:00:00.0Z
Registry Expiry Date: 2020-03-07T05:00:00.0Z
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Registrar: MarkMonitor
Registrar URL: http://www.markmonitor.com
Registrant ID: 490793-CoCCA
Registrant Name: Google Inc.
Registrant Organization: Google Inc.
Registrant Street: 1600 Amphitheatre Parkway
Registrant City: Mountain View
Registrant State/Province: CA
Registrant Postal Code: 94043
Registrant Country: US
Registrant Phone: +1.6502530000
Registrant Fax: +1.6502530001
Registrant Email: dns-admin@google.com
Admin ID: 490793-CoCCA
Admin Name: Google Inc.
Admin Organization: Google Inc.
Admin Street: 1600 Amphitheatre Parkway
Admin City: Mountain View
Admin State/Province: CA
Admin Postal Code: 94043
Admin Country: US
Admin Phone: +1.6502530000
Admin Fax: +1.6502530001
Admin Email: dns-admin@google.com
Billing ID: 857074-CoCCA
Billing Name: CCOPs Provisioning
Billing Organization: MarkMonitor
Billing Street: 10400 Overland Rd PMB 155
Billing City: Boise
Billing State/Province: ID
Billing Postal Code: 83709
Billing Country: US
Billing Phone: +1.2083895740
Billing Fax: +1.2083895771
Billing Email: ccops@markmonitor.com
Tech ID: 857074-CoCCA
Tech Name: CCOPs Provisioning
Tech Organization: MarkMonitor
Tech Street: 10400 Overland Rd PMB 155
Tech City: Boise
Tech State/Province: ID
Tech Postal Code: 83709
Tech Country: US
Tech Phone: +1.2083895740
Tech Fax: +1.2083895771
Tech Email: ccops@markmonitor.com
Name Server: ns1.google.com
Name Server: ns2.google.com
DNSSEC: unsigned
>>> Last update of WHOIS database: 2019-04-16T12:26:36.280Z <<<
T?rminos de Uso: NIC.HN no se hace responsable por la veracidad de los datos proporcionados, ya que los mismos fueron proporcionados por los Registrantes y Usuarios del Servicio de Registro. La informaci?n desplegada ha sido proporcionada por el Administrador de Nombre de Dominio que corresponda, dicha informaci?n no es generada por NIC.HN.
Queda absolutamente prohibido su uso para otros prop?sitos, incluyendo el env?o de Correos Electr?nicos no solicitados con fines publicitarios o de promoci?n de productos y servicios (SPAM) sin mediar la autorizaci?n de los afectados y de NIC.HN.
La base de datos generada a partir del sistema de delegaci?n, est? protegida por las leyes de Propiedad Intelectual y todos los tratados internacionales sobre la materia.
Si necesita mayor informaci?n sobre los registros aqu? mostrados, favor de comunicarse a contacto@nic.hn
================================================
FILE: test/samples/whois/google.hu
================================================
% Whois server 4.0 serving the hu ccTLD
domain: google.hu
record created: 2000-03-03
Tovabbi adatokert ld.:
https://www.domain.hu/domain-kereses/
For further data see:
https://www.domain.hu/domain-search/
================================================
FILE: test/samples/whois/google.ie
================================================
# whois.weare.ie
Domain Name: google.ie
Registry Domain ID: 762999-IEDR
Registrar WHOIS Server: whois.weare.ie
Registrar URL: http://www.eMarkmonitor.com
Updated Date: 2021-05-05T14:19:51Z
Creation Date: 2002-03-21T00:00:00Z
Registry Expiry Date: 2022-03-21T14:13:27Z
Registrar: Markmonitor Inc
Registrar IANA ID: not applicable
Registrar Abuse Contact Email: abusecomplaints@markmonitor.com
Registrar Abuse Contact Phone: +1.2086851865
Domain Status: serverDeleteProhibited https://icann.org/epp#serverDeleteProhibited
Domain Status: serverTransferProhibited https://icann.org/epp#serverTransferProhibited
Domain Status: serverUpdateProhibited https://icann.org/epp#serverUpdateProhibited
Registry Registrant ID: 379250-IEDR
Registrant Name: Google LLC
Registry Admin ID: 5672149-IEDR
Registry Tech ID: 534389-IEDR
Registry Billing ID: REDACTED FOR PRIVACY
Name Server: ns1.google.com
Name Server: ns2.google.com
Name Server: ns3.google.com
DNSSEC: unsigned
================================================
FILE: test/samples/whois/google.it
================================================
*********************************************************************
* Please note that the following result could be a subgroup of *
* the data contained in the database. *
* *
* Additional information can be visualized at: *
* http://web-whois.nic.it *
* Privacy Information: http://web-whois.nic.it/privacy *
*********************************************************************
Domain: google.it
Status: ok
Signed: no
Created: 1999-12-10 00:00:00
Last Update: 2018-05-07 00:54:15
Expire Date: 2019-04-21
Registrant
Organization: Google Ireland Holdings Unlimited Company
Address: 70 Sir John Rogerson's Quay
Dublin
2
Dublin
IE
Created: 2018-03-02 19:04:02
Last Update: 2018-03-02 19:04:02
Admin Contact
Name: Christina Chiou
Organization: Google LLC
Address: 1600 Amphitheatre Parkway
Mountain View
94043
CA
US
Created: 2018-03-12 23:25:59
Last Update: 2018-03-12 23:25:59
Technical Contacts
Name: Domain Administrator
Organization: Google LLC
Address: 1600 Amphitheatre Parkway
Mountain View
94043
CA
US
Created: 2017-12-21 19:54:04
Last Update: 2017-12-21 19:54:04
Registrar
Organization: MarkMonitor International Limited
Name: MARKMONITOR-REG
Web: https://www.markmonitor.com/
DNSSEC: no
Nameservers
ns1.google.com
ns2.google.com
ns3.google.com
ns4.google.com
================================================
FILE: test/samples/whois/google.kg
================================================
% This is the .kg ccTLD Whois server
% Register your own domain at https://www.cctld.kg
% Whois web service - https://www.cctld.kg/whois
Domain GOOGLE.KG (ACTIVE)
Administrative Contact:
PID: AI-44973-KG
Name:
Address: United States Mountain View 1600 Amphitheatre Parkway N/A
Email: dns-admin@google.com
phone: 16502530000
fax: +1.6502530001
Technical Contact:
PID: AI-44973-KG
Name:
Address: United States Mountain View 1600 Amphitheatre Parkway N/A
Email: dns-admin@google.com
phone: 16502530000
fax: +1.6502530001
Billing Contact:
PID: 5935-KG
Name:
Address: United States Meridian 1120 S. Rackham Way Suite 300
Email: ccops@markmonitor.com
phone: +12083895740
fax: +12083895771
Record created: Tue Feb 10 09:42:42 2004
Record last updated on: Wed Mar 5 00:13:49 2025
Record expires on: Sat Mar 28 23:59:00 2026
Name servers in the listed order:
NS1.GOOGLE.COM
NS2.GOOGLE.COM
NS4.GOOGLE.COM
================================================
FILE: test/samples/whois/google.lu
================================================
% Access to RESTENA DNS-LU WHOIS information is provided to assist persons
% in determining the content of a domain name registration record in the LU
% registration database. The data in this record is provided by RESTENA DNS-LU
% for information purposes only, and RESTENA DNS-LU does not guarantee its
% accuracy. Compilation, repackaging, dissemination or other use of the
% WHOIS database in its entirety, or of a substantial part thereof, is not
% allowed without the prior written permission of RESTENA DNS-LU.
%
% By submitting a WHOIS query, you agree to abide by this policy. You acknowledge
% that the use of the WHOIS database is regulated by the ACCEPTABLE USE POLICY
% (http://www.dns.lu/en/support/domainname-availability/whois-gateway/), that you are aware of its
% content, and that you accept its terms and conditions.
%
% You agree especially that you will use this data only for lawful purposes and
% that you will not use this data to:
% (1) allow, enable, or otherwise support the transmission of mass unsolicited,
% commercial advertising or solicitations via e-mail (spam); or
% (2) enable high volume, automated, electronic processes that apply to
% RESTENA DNS-LU (or its systems).
%
% All rights reserved.
%
% WHOIS google.lu
domainname: google.lu
domaintype: ACTIVE
nserver: ns1.google.com
nserver: ns2.google.com
nserver: ns3.google.com
nserver: ns4.google.com
ownertype: ORGANISATION
org-country: US
registrar-name: Markmonitor
registrar-email: ccops@markmonitor.com
registrar-url: http://www.markmonitor.com/
registrar-country: GB
%
% More details on the domain may be available at below whois-web URL.
% Next to possible further data a form to contact domain operator or
% request further details is available.
whois-web: https://www.dns.lu/en/support/domainname-availability/whois-gateway/
================================================
FILE: test/samples/whois/google.lv
================================================
[Domain]
Domain: google.lv
Status: active
[Holder]
Type: Legal person
Name: Google LLC
Address: 1600 Amphitheatre Parkway, Mountain View, CA, 94043, USA
RegNr: None
Visit: https://www.nic.lv/whois/contact/google.lv to contact.
[Tech]
Type: Natural person
Visit: https://www.nic.lv/whois/contact/google.lv to contact.
[Registrar]
Type: Legal person
Name: MarkMonitor Inc.
Address: 1120 S. Rackham Way, Suite 300, Meridian, ID, 83642, USA
RegNr: 82-0513468
Visit: https://www.nic.lv/whois/contact/google.lv to contact.
[Nservers]
Nserver: ns1.google.com
Nserver: ns2.google.com
Nserver: ns3.google.com
Nserver: ns4.google.com
[Whois]
Updated: 2024-09-03T17:12:28.647770+00:00
[Disclaimer]
% The WHOIS service is provided solely for informational purposes.
%
% It is permitted to use the WHOIS service only for technical or administrative
% needs associated with the operation of the Internet or in order to contact
% the domain name holder over legal problems.
%
% Requestor will not use information obtained using WHOIS:
% * To allow, enable or in any other way to support sending of unsolicited mails (spam)
% * for any kind of advertising
% * to disrupt Internet stability and security
%
% It is not permitted to obtain (including copying) or re-use in any form or
% by any means all or quantitatively or qualitatively significant part
% of the WHOIS without NIC's express permission.
================================================
FILE: test/samples/whois/google.mx
================================================
Domain Name: google.mx
Created On: 2009-05-12
Expiration Date: 2020-05-11
Last Updated On: 2019-04-12
Registrar: MarkMonitor
URL: http://www.markmonitor.com/
Registrant:
Name: Google Inc.
City: Mountain View
State: California
Country: United States
Administrative Contact:
Name: Google Inc.
City: Mountain View
State: California
Country: United States
Technical Contact:
Name: Google Inc.
City: Mountain View
State: California
Country: United States
Billing Contact:
Name: MarkMonitor
City: Boise
State: Idaho
Country: United States
Name Servers:
DNS: ns2.google.com
DNS: ns4.google.com
DNS: ns3.google.com
DNS: ns1.google.com
DNSSEC DS Records:
% NOTICE: The expiration date displayed in this record is the date the
% registrar's sponsorship of the domain name registration in the registry is
% currently set to expire. This date does not necessarily reflect the
% expiration date of the domain name registrant's agreement with the sponsoring
% registrar. Users may consult the sponsoring registrar's Whois database to
% view the registrar's reported date of expiration for this registration.
% The requested information ("Information") is provided only for the delegation
% of domain names and the operation of the DNS administered by NIC Mexico.
% It is absolutely prohibited to use the Information for other purposes,
% including sending not requested emails for advertising or promoting products
% and services purposes (SPAM) without the authorization of the owners of the
% Information and NIC Mexico.
% The database generated from the delegation system is protected by the
% intellectual property laws and all international treaties on the matter.
% If you need more information on the records displayed here, please contact us
% by email at ayuda@nic.mx .
% If you want notify the receipt of SPAM or unauthorized access, please send a
% email to abuse@nic.mx .
% NOTA: La fecha de expiracion mostrada en esta consulta es la fecha que el
% registrar tiene contratada para el nombre de dominio en el registry. Esta
% fecha no necesariamente refleja la fecha de expiracion del nombre de dominio
% que el registrante tiene contratada con el registrar. Puede consultar la base
% de datos de Whois del registrar para ver la fecha de expiracion reportada por
% el registrar para este nombre de dominio.
% La informacion que ha solicitado se provee exclusivamente para fines
% relacionados con la delegacion de nombres de dominio y la operacion del DNS
% administrado por NIC Mexico.
% Queda absolutamente prohibido su uso para otros propositos, incluyendo el
% envio de Correos Electronicos no solicitados con fines publicitarios o de
% promocion de productos y servicios (SPAM) sin mediar la autorizacion de los
% afectados y de NIC Mexico.
% La base de datos generada a partir del sistema de delegacion, esta protegida
% por las leyes de Propiedad Intelectual y todos los tratados internacionales
% sobre la materia.
% Si necesita mayor informacion sobre los registros aqui mostrados, favor de
% comunicarse a ayuda@nic.mx.
% Si desea notificar sobre correo no solicitado o accesos no autorizados, favor
% de enviar su mensaje a abuse@nic.mx.
================================================
FILE: test/samples/whois/google.ro
================================================
% The WHOIS service offered by ROTLD and the access to the records in the ROTLD WHOIS database
% are provided for information purposes and to be used within the scope of technical or administrative
% necessities of Internet operation or to remedy legal problems. The use for other purposes,
% in particular for advertising and domain hunting, is not permitted.
% Without prejudice to the above, it is explicitly forbidden to extract, copy and/or use or re-utilise
% in any form and by any means (electronically or not) the whole or a quantitatively or qualitatively
% substantial part of the contents of the WHOIS database without prior and explicit permission by ROTLD,
% nor in any attempt hereof, to apply automated, electronic processes to ROTLD (or its systems).
% ROTLD cannot, under any circumstances, be held liable in case the stored information would prove
% to be wrong, incomplete or not accurate in any sense.
% You agree that any reproduction and/or transmission of data for commercial purposes will always
% be considered as the extraction of a substantial part of the content of the WHOIS database.
% By submitting the query you agree to abide by this policy and accept that ROTLD can take measures
% to limit the use of its WHOIS services in order to protect the privacy of its registrants or the
% integrity of the database.
% The ROTLD WHOIS service on port 43 never discloses any information concerning the registrant.
% Registrant information can be obtained through use of the web-based whois service available from
% the ROTLD website www.rotld.ro
Domain Name: google.ro
Registered On: 2000-07-17
Expires On: 2019-09-17
Registrar: MarkMonitor Inc.
Referral URL: www.markmonitor.com
DNSSEC: Inactive
Nameserver: ns1.google.com
Nameserver: ns2.google.com
Nameserver: ns3.google.com
Nameserver: ns4.google.com
Domain Status: UpdateProhibited
================================================
FILE: test/samples/whois/google.sk
================================================
Domain: google.sk
Registrant: Google
Admin Contact: Google
Tech Contact: Google
Registrar: FAJN-0002
Created: 2003-07-24
Updated: 2018-07-03
Valid Until: 2019-07-24
Nameserver: ns1.google.com
Nameserver: ns2.google.com
Nameserver: ns3.google.com
Nameserver: ns4.google.com
EPP Status: ok
Registrar: FAJN-0002
Name: FAJNOR IP s. r. o.
Organization: FAJNOR IP s. r. o.
Organization ID: 46039201
Phone: +421.263811927
Email: domains@fajnor.sk
Street: Krasovského 13
City: Bratislava
Postal Code: 851 01
Country Code: SK
Created: 2017-09-01
Updated: 2019-04-17
Contact: Google
Name: Domain Administrator
Organization: Google Ireland Holdings Unlimited Company
Phone: +353.14361000
Email: dns-admin@google.com
Street: 70 Sir John Rogerson's Quay
City: Dublin
Postal Code: 2
Country Code: IE
Registrar: FAJN-0002
Created: 2018-01-26
Updated: 2018-07-16
================================================
FILE: test/samples/whois/imdb.com
================================================
Whois Server Version 2.0
Domain names in the .com and .net domains can now be registered
with many different competing registrars. Go to http://www.internic.net
for detailed information.
Server Name: IMDB.COM.MORE.INFO.AT.WWW.BEYONDWHOIS.COM
IP Address: 203.36.226.2
Registrar: TUCOWS INC.
Whois Server: whois.tucows.com
Referral URL: http://domainhelp.opensrs.net
Domain Name: IMDB.COM
Registrar: NETWORK SOLUTIONS, LLC.
Whois Server: whois.networksolutions.com
Referral URL: http://www.networksolutions.com
Name Server: UDNS1.ULTRADNS.NET
Name Server: UDNS2.ULTRADNS.NET
Status: clientTransferProhibited
Updated Date: 28-mar-2008
Creation Date: 05-jan-1996
Expiration Date: 04-jan-2016
>>> Last update of whois database: Thu, 26 Jun 2008 21:40:25 EDT <<<
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
TERMS OF USE: You are not authorized to access or query our Whois
database through the use of electronic processes that are high-volume and
automated except as reasonably necessary to register domain names or
modify existing registrations; the Data in VeriSign Global Registry
Services' ("VeriSign") Whois database is provided by VeriSign for
information purposes only, and to assist persons in obtaining information
about or related to a domain name registration record. VeriSign does not
guarantee its accuracy. By submitting a Whois query, you agree to abide
by the following terms of use: You agree that you may use this Data only
for lawful purposes and that under no circumstances will you use this Data
to: (1) allow, enable, or otherwise support the transmission of mass
unsolicited, commercial advertising or solicitations via e-mail, telephone,
or facsimile; or (2) enable high volume, automated, electronic processes
that apply to VeriSign (or its computer systems). The compilation,
repackaging, dissemination or other use of this Data is expressly
prohibited without the prior written consent of VeriSign. You agree not to
use electronic processes that are automated and high-volume to access or
query the Whois database except as reasonably necessary to register
domain names or modify existing registrations. VeriSign reserves the right
to restrict your access to the Whois database in its sole discretion to ensure
operational stability. VeriSign may restrict or terminate your access to the
Whois database for failure to abide by these terms of use. VeriSign
reserves the right to modify these terms at any time.
The Registry database contains ONLY .COM, .NET, .EDU domains and
Registrars.NOTICE AND TERMS OF USE: You are not authorized to access or query our WHOIS
database through the use of high-volume, automated, electronic processes. The
Data in Network Solutions' WHOIS database is provided by Network Solutions for information
purposes only, and to assist persons in obtaining information about or related
to a domain name registration record. Network Solutions does not guarantee its accuracy.
By submitting a WHOIS query, you agree to abide by the following terms of use:
You agree that you may use this Data only for lawful purposes and that under no
circumstances will you use this Data to: (1) allow, enable, or otherwise support
the transmission of mass unsolicited, commercial advertising or solicitations
via e-mail, telephone, or facsimile; or (2) enable high volume, automated,
electronic processes that apply to Network Solutions (or its computer systems). The
compilation, repackaging, dissemination or other use of this Data is expressly
prohibited without the prior written consent of Network Solutions. You agree not to use
high-volume, automated, electronic processes to access or query the WHOIS
database. Network Solutions reserves the right to terminate your access to the WHOIS
database in its sole discretion, including without limitation, for excessive
querying of the WHOIS database or for failure to otherwise abide by this policy.
Network Solutions reserves the right to modify these terms at any time.
Get a FREE domain name registration, transfer, or renewal with any annual hosting package.
http://www.networksolutions.com
Visit AboutUs.org for more information about IMDB.COM
<a href="http://www.aboutus.org/IMDB.COM">AboutUs: IMDB.COM </a>
Registrant:
IMDb.com, Inc.
Legal Dept, PO Box 81226
Seattle, WA 98108
US
Domain Name: IMDB.COM
------------------------------------------------------------------------
Promote your business to millions of viewers for only $1 a month
Learn how you can get an Enhanced Business Listing here for your domain name.
Learn more at http://www.NetworkSolutions.com/
------------------------------------------------------------------------
Administrative Contact, Technical Contact:
Hostmaster, IMDb hostmaster@imdb.com
IMDb.com, Inc.
Legal Dept, PO Box 81226
Seattle, WA 98108
US
+1.2062664064 fax: +1.2062667010
Record expires on 04-Jan-2016.
Record created on 05-Jan-1996.
Database last updated on 26-Jun-2008 21:38:42 EDT.
Domain servers in listed order:
UDNS1.ULTRADNS.NET
UDNS2.ULTRADNS.NET
================================================
FILE: test/samples/whois/liechtenstein.li
================================================
Domain name:
liechtenstein.li
Holder of domain name:
Liechtensteinische Landesverwaltung
Martin Matt
Heiligkreuz 8
LI-9490 Vaduz
Liechtenstein
Registrar:
switchplus AG
First registration date:
1996-02-08
DNSSEC:N
Name servers:
pdns.llv.li [193.222.114.65]
scsnms.switch.ch [130.59.31.26]
scsnms.switch.ch [2001:620:0:ff::a7]
================================================
FILE: test/samples/whois/microsoft.com
================================================
Whois Server Version 2.0
Domain names in the .com and .net domains can now be registered
with many different competing registrars. Go to http://www.internic.net
for detailed information.
Server Name: MICROSOFT.COM.ZZZZZZ.MORE.DETAILS.AT.WWW.BEYONDWHOIS.COM
IP Address: 203.36.226.2
Registrar: TUCOWS INC.
Whois Server: whois.tucows.com
Referral URL: http://domainhelp.opensrs.net
Server Name: MICROSOFT.COM.ZZZZZ.GET.LAID.AT.WWW.SWINGINGCOMMUNITY.COM
IP Address: 69.41.185.194
Registrar: INNERWISE, INC. D/B/A ITSYOURDOMAIN.COM
Whois Server: whois.itsyourdomain.com
Referral URL: http://www.itsyourdomain.com
Server Name: MICROSOFT.COM.ZZZOMBIED.AND.HACKED.BY.WWW.WEB-HACK.COM
IP Address: 217.107.217.167
Registrar: ONLINENIC, INC.
Whois Server: whois.35.com
Referral URL: http://www.OnlineNIC.com
Server Name: MICROSOFT.COM.ZZZ.IS.0WNED.AND.HAX0RED.BY.SUB7.NET
IP Address: 207.44.240.96
Registrar: INNERWISE, INC. D/B/A ITSYOURDOMAIN.COM
Whois Server: whois.itsyourdomain.com
Referral URL: http://www.itsyourdomain.com
Server Name: MICROSOFT.COM.WILL.LIVE.FOREVER.BECOUSE.UNIXSUCKS.COM
IP Address: 185.3.4.7
Registrar: MELBOURNE IT, LTD. D/B/A INTERNET NAMES WORLDWIDE
Whois Server: whois.melbourneit.com
Referral URL: http://www.melbourneit.com
Server Name: MICROSOFT.COM.WILL.BE.SLAPPED.IN.THE.FACE.BY.MY.BLUE.VEINED.SPANNER.NET
IP Address: 216.127.80.46
Registrar: COMPUTER SERVICES LANGENBACH GMBH DBA JOKER.COM
Whois Server: whois.joker.com
Referral URL: http://www.joker.com
Server Name: MICROSOFT.COM.WILL.BE.BEATEN.WITH.MY.SPANNER.NET
IP Address: 216.127.80.46
Registrar: COMPUTER SERVICES LANGENBACH GMBH DBA JOKER.COM
Whois Server: whois.joker.com
Referral URL: http://www.joker.com
Server Name: MICROSOFT.COM.WAREZ.AT.TOPLIST.GULLI.COM
IP Address: 80.190.192.33
Registrar: EPAG DOMAINSERVICES GMBH
Whois Server: whois.enterprice.net
Referral URL: http://www.enterprice.net
Server Name: MICROSOFT.COM.USERS.SHOULD.HOST.WITH.UNIX.AT.ITSHOSTED.COM
IP Address: 74.52.88.132
Registrar: ENOM, INC.
Whois Server: whois.enom.com
Referral URL: http://www.enom.com
Server Name: MICROSOFT.COM.TOTALLY.SUCKS.S3U.NET
IP Address: 207.208.13.22
Registrar: ENOM, INC.
Whois Server: whois.enom.com
Referral URL: http://www.enom.com
Server Name: MICROSOFT.COM.SOFTWARE.IS.NOT.USED.AT.REG.RU
Registrar: MELBOURNE IT, LTD. D/B/A INTERNET NAMES WORLDWIDE
Whois Server: whois.melbourneit.com
Referral URL: http://www.melbourneit.com
Server Name: MICROSOFT.COM.SHOULD.GIVE.UP.BECAUSE.LINUXISGOD.COM
IP Address: 65.160.248.13
Registrar: GKG.NET, INC.
Whois Server: whois.gkg.net
Referral URL: http://www.gkg.net
Server Name: MICROSOFT.COM.RAWKZ.MUH.WERLD.MENTALFLOSS.CA
Registrar: TUCOWS INC.
Whois Server: whois.tucows.com
Referral URL: http://domainhelp.opensrs.net
Server Name: MICROSOFT.COM.OHMYGODITBURNS.COM
IP Address: 216.158.63.6
Registrar: DOTSTER, INC.
Whois Server: whois.dotster.com
Referral URL: http://www.dotster.com
Server Name: MICROSOFT.COM.MORE.INFO.AT.WWW.BEYONDWHOIS.COM
IP Address: 203.36.226.2
Registrar: TUCOWS INC.
Whois Server: whois.tucows.com
Referral URL: http://domainhelp.opensrs.net
Server Name: MICROSOFT.COM.LOVES.ME.KOSMAL.NET
IP Address: 65.75.198.123
Registrar: GODADDY.COM, INC.
Whois Server: whois.godaddy.com
Referral URL: http://registrar.godaddy.com
Server Name: MICROSOFT.COM.LIVES.AT.SHAUNEWING.COM
IP Address: 216.40.250.172
Registrar: ENOM, INC.
Whois Server: whois.enom.com
Referral URL: http://www.enom.com
Server Name: MICROSOFT.COM.IS.NOT.YEPPA.ORG
Registrar: OVH
Whois Server: whois.ovh.com
Referral URL: http://www.ovh.com
Server Name: MICROSOFT.COM.IS.NOT.HOSTED.BY.ACTIVEDOMAINDNS.NET
IP Address: 217.148.161.5
Registrar: ENOM, INC.
Whois Server: whois.enom.com
Referral URL: http://www.enom.com
Server Name: MICROSOFT.COM.IS.IN.BED.WITH.CURTYV.COM
IP Address: 216.55.187.193
Registrar: ABACUS AMERICA, INC. DBA NAMES4EVER
Whois Server: whois.names4ever.com
Referral URL: http://www.names4ever.com
Server Name: MICROSOFT.COM.IS.HOSTED.ON.PROFITHOSTING.NET
IP Address: 66.49.213.213
Registrar: NAME.COM LLC
Whois Server: whois.name.com
Referral URL: http://www.name.com
Server Name: MICROSOFT.COM.IS.GOD.BECOUSE.UNIXSUCKS.COM
IP Address: 161.16.56.24
Registrar: MELBOURNE IT, LTD. D/B/A INTERNET NAMES WORLDWIDE
Whois Server: whois.melbourneit.com
Referral URL: http://www.melbourneit.com
Server Name: MICROSOFT.COM.IS.A.STEAMING.HEAP.OF.FUCKING-BULLSHIT.NET
IP Address: 63.99.165.11
Registrar: THE NAME IT CORPORATION DBA NAMESERVICES.NET
Whois Server: whois.aitdomains.com
Referral URL: http://www.aitdomains.com
Server Name: MICROSOFT.COM.IS.A.MESS.TIMPORTER.CO.UK
Registrar: MELBOURNE IT, LTD. D/B/A INTERNET NAMES WORLDWIDE
Whois Server: whois.melbourneit.com
Referral URL: http://www.melbourneit.com
Server Name: MICROSOFT.COM.HAS.ITS.OWN.CRACKLAB.COM
IP Address: 209.26.95.44
Registrar: DOTSTER, INC.
Whois Server: whois.dotster.com
Referral URL: http://www.dotster.com
Server Name: MICROSOFT.COM.HAS.A.PRESENT.COMING.FROM.HUGHESMISSILES.COM
IP Address: 66.154.11.27
Registrar: TUCOWS INC.
Whois Server: whois.tucows.com
Referral URL: http://domainhelp.opensrs.net
Server Name: MICROSOFT.COM.FILLS.ME.WITH.BELLIGERENCE.NET
IP Address: 130.58.82.232
Registrar: CRONON AG BERLIN, NIEDERLASSUNG REGENSBURG
Whois Server: whois.tmagnic.net
Referral URL: http://nsi-robo.tmag.de
Server Name: MICROSOFT.COM.CAN.GO.FUCK.ITSELF.AT.SECZY.COM
IP Address: 209.187.114.147
Registrar: INNERWISE, INC. D/B/A ITSYOURDOMAIN.COM
Whois Server: whois.itsyourdomain.com
Referral URL: http://www.itsyourdomain.com
Server Name: MICROSOFT.COM.ARE.GODDAMN.PIGFUCKERS.NET.NS-NOT-IN-SERVICE.COM
IP Address: 216.127.80.46
Registrar: TUCOWS INC.
Whois Server: whois.tucows.com
Referral URL: http://domainhelp.opensrs.net
Server Name: MICROSOFT.COM.AND.MINDSUCK.BOTH.SUCK.HUGE.ONES.AT.EXEGETE.NET
IP Address: 63.241.136.53
Registrar: DOTSTER, INC.
Whois Server: whois.dotster.com
Referral URL: http://www.dotster.com
Domain Name: MICROSOFT.COM
Registrar: TUCOWS INC.
Whois Server: whois.tucows.com
Referral URL: http://domainhelp.opensrs.net
Name Server: NS1.MSFT.NET
Name Server: NS2.MSFT.NET
Name Server: NS3.MSFT.NET
Name Server: NS4.MSFT.NET
Name Server: NS5.MSFT.NET
Status: clientDeleteProhibited
Status: clientTransferProhibited
Status: clientUpdateProhibited
Updated Date: 10-oct-2006
Creation Date: 02-may-1991
Expiration Date: 03-may-2014
>>> Last update of whois database: Thu, 26 Jun 2008 21:39:39 EDT <<<
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
TERMS OF USE: You are not authorized to access or query our Whois
database through the use of electronic processes that are high-volume and
automated except as reasonably necessary to register domain names or
modify existing registrations; the Data in VeriSign Global Registry
Services' ("VeriSign") Whois database is provided by VeriSign for
information purposes only, and to assist persons in obtaining information
about or related to a domain name registration record. VeriSign does not
guarantee its accuracy. By submitting a Whois query, you agree to abide
by the following terms of use: You agree that you may use this Data only
for lawful purposes and that under no circumstances will you use this Data
to: (1) allow, enable, or otherwise support the transmission of mass
unsolicited, commercial advertising or solicitations via e-mail, telephone,
or facsimile; or (2) enable high volume, automated, electronic processes
that apply to VeriSign (or its computer systems). The compilation,
repackaging, dissemination or other use of this Data is expressly
prohibited without the prior written consent of VeriSign. You agree not to
use electronic processes that are automated and high-volume to access or
query the Whois database except as reasonably necessary to register
domain names or modify existing registrations. VeriSign reserves the right
to restrict your access to the Whois database in its sole discretion to ensure
operational stability. VeriSign may restrict or terminate your access to the
Whois database for failure to abide by these terms of use. VeriSign
reserves the right to modify these terms at any time.
The Registry database contains ONLY .COM, .NET, .EDU domains and
Registrars.Registrant:
Microsoft Corporation
One Microsoft Way
Redmond, WA 98052
US
Domain name: MICROSOFT.COM
Administrative Contact:
Administrator, Domain domains@microsoft.com
One Microsoft Way
Redmond, WA 98052
US
+1.4258828080
Technical Contact:
Hostmaster, MSN msnhst@microsoft.com
One Microsoft Way
Redmond, WA 98052
US
+1.4258828080
Registration Service Provider:
DBMS VeriSign, dbms-support@verisign.com
800-579-2848 x4
Please contact DBMS VeriSign for domain updates, DNS/Nameserver
changes, and general domain support questions.
Registrar of Record: TUCOWS, INC.
Record last updated on 15-Nov-2007.
Record expires on 03-May-2014.
Record created on 02-May-1991.
Registrar Domain Name Help Center:
http://domainhelp.tucows.com
Domain servers in listed order:
NS2.MSFT.NET
NS4.MSFT.NET
NS1.MSFT.NET
NS5.MSFT.NET
NS3.MSFT.NET
Domain status: clientDeleteProhibited
clientTransferProhibited
clientUpdateProhibited
The Data in the Tucows Registrar WHOIS database is provided to you by Tucows
for information purposes only, and may be used to assist you in obtaining
information about or related to a domain name's registration record.
Tucows makes this information available "as is," and does not guarantee its
accuracy.
By submitting a WHOIS query, you agree that you will use this data only for
lawful purposes and that, under no circumstances will you use this data to:
a) allow, enable, or otherwise support the transmission by e-mail,
telephone, or facsimile of mass, unsolicited, commercial advertising or
solicitations to entities other than the data recipient's own existing
customers; or (b) enable high volume, automated, electronic processes that
send queries or data to the systems of any Registry Operator or
ICANN-Accredited registrar, except as reasonably necessary to register
domain names or modify existing registrations.
The compilation, repackaging, dissemination or other use of this Data is
expressly prohibited without the prior written consent of Tucows.
Tucows reserves the right to terminate your access to the Tucows WHOIS
database in its sole discretion, including without limitation, for excessive
querying of the WHOIS database or for failure to otherwise abide by this
policy.
Tucows reserves the right to modify these terms at any time.
By submitting this query, you agree to abide by these terms.
NOTE: THE WHOIS DATABASE IS A CONTACT DATABASE ONLY. LACK OF A DOMAIN
RECORD DOES NOT SIGNIFY DOMAIN AVAILABILITY.
================================================
FILE: test/samples/whois/nic.live
================================================
% IANA WHOIS server
% for more information on IANA, visit http://www.iana.org
% This query returned 1 object
refer: whois.nic.live
domain: LIVE
organisation: Dog Beach, LLC
address: c/o Identity Digital Limited
address: 10500 NE 8th Street, Suite 750
address: Bellevue WA 98004
address: United States of America (the)
contact: administrative
name: Vice President, Engineering
organisation: Identity Digital Limited
address: 10500 NE 8th Street, Suite 750
address: Bellevue WA 98004
address: United States of America (the)
phone: +1.425.298.2200
fax-no: +1.425.671.0020
e-mail: tldadmin@identity.digital
contact: technical
name: Senior Director, DNS Infrastructure Group
organisation: Identity Digital Limited
address: 10500 NE 8th Street, Suite 750
address: Bellevue WA 98004
address: United States of America (the)
phone: +1.425.298.2200
fax-no: +1.425.671.0020
e-mail: tldtech@identity.digital
nserver: V0N0.NIC.LIVE 2a01:8840:16:0:0:0:0:1 65.22.20.1
nserver: V0N1.NIC.LIVE 2a01:8840:17:0:0:0:0:1 65.22.21.1
nserver: V0N2.NIC.LIVE 2a01:8840:18:0:0:0:0:1 65.22.22.1
nserver: V0N3.NIC.LIVE 161.232.10.1 2a01:8840:f4:0:0:0:0:1
nserver: V2N0.NIC.LIVE 2a01:8840:19:0:0:0:0:1 65.22.23.1
nserver: V2N1.NIC.LIVE 161.232.11.1 2a01:8840:f5:0:0:0:0:1
ds-rdata: 36322 8 2 201df9a9af6766d9cdbc8355756728f2db40ba93f9724f93aeeb1bddd7d564a0
whois: whois.nic.live
status: ACTIVE
remarks: Registration information: https://www.identity.digital/
created: 2015-06-25
changed: 2023-09-12
source: IANA
# whois.nic.live
Domain Name: nic.live
Registry Domain ID: 4ddd5c8266194b0488fab6a4d20df35d-DONUTS
Registrar WHOIS Server: whois.identitydigital.services
Registrar URL: https://identity.digital
Updated Date: 2024-06-11T22:04:34Z
Creation Date: 2015-04-27T22:04:24Z
Registry Expiry Date: 2025-04-27T22:04:24Z
Registrar: Registry Operator acts as Registrar (9999)
Registrar IANA ID: 9999
Registrar Abuse Contact Email: abuse@identity.digital
Registrar Abuse Contact Phone: +1.6664447777
Domain Status: serverTransferProhibited https://icann.org/epp#serverTransferProhibited
Registry Registrant ID: REDACTED FOR PRIVACY
Registrant Name: REDACTED FOR PRIVACY
Registrant Organization: United TLD Holdco Ltd.
Registrant Street: REDACTED FOR PRIVACY
Registrant City: REDACTED FOR PRIVACY
Registrant State/Province: Dublin 2
Registrant Postal Code: REDACTED FOR PRIVACY
Registrant Country: IE
Registrant Phone: REDACTED FOR PRIVACY
Registrant Phone Ext: REDACTED FOR PRIVACY
Registrant Fax: REDACTED FOR PRIVACY
Registrant Fax Ext: REDACTED FOR PRIVACY
Registrant Email: Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.
Registry Admin ID: REDACTED FOR PRIVACY
Admin Name: REDACTED FOR PRIVACY
Admin Organization: REDACTED FOR PRIVACY
Admin Street: REDACTED FOR PRIVACY
Admin City: REDACTED FOR PRIVACY
Admin State/Province: REDACTED FOR PRIVACY
Admin Postal Code: REDACTED FOR PRIVACY
Admin Country: REDACTED FOR PRIVACY
Admin Phone: REDACTED FOR PRIVACY
Admin Phone Ext: REDACTED FOR PRIVACY
Admin Fax: REDACTED FOR PRIVACY
Admin Fax Ext: REDACTED FOR PRIVACY
Admin Email: Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.
Registry Tech ID: REDACTED FOR PRIVACY
Tech Name: REDACTED FOR PRIVACY
Tech Organization: REDACTED FOR PRIVACY
Tech Street: REDACTED FOR PRIVACY
Tech City: REDACTED FOR PRIVACY
Tech State/Province: REDACTED FOR PRIVACY
Tech Postal Code: REDACTED FOR PRIVACY
Tech Country: REDACTED FOR PRIVACY
Tech Phone: REDACTED FOR PRIVACY
Tech Phone Ext: REDACTED FOR PRIVACY
Tech Fax: REDACTED FOR PRIVACY
Tech Fax Ext: REDACTED FOR PRIVACY
Tech Email: Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.
Name Server: v0n0.nic.live
Name Server: v0n1.nic.live
Name Server: v0n2.nic.live
Name Server: v0n3.nic.live
Name Server: v2n0.nic.live
Name Server: v2n1.nic.live
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of WHOIS database: 2024-07-09T23:49:59Z <<<
# whois.identitydigital.services
Domain Name: nic.live
Registry Domain ID: 4ddd5c8266194b0488fab6a4d20df35d-DONUTS
Registrar WHOIS Server: whois.identitydigital.services
Registrar URL: https://identity.digital
Updated Date: 2024-06-11T22:04:34Z
Creation Date: 2015-04-27T22:04:24Z
Registry Expiry Date: 2025-04-27T22:04:24Z
Registrar: Registry Operator acts as Registrar (9999)
Registrar IANA ID: 9999
Registrar Abuse Contact Email: abuse@identity.digital
Registrar Abuse Contact Phone: +1.6664447777
Domain Status: serverTransferProhibited https://icann.org/epp#serverTransferProhibited
Registry Registrant ID: REDACTED FOR PRIVACY
Registrant Name: REDACTED FOR PRIVACY
Registrant Organization: United TLD Holdco Ltd.
Registrant Street: REDACTED FOR PRIVACY
Registrant City: REDACTED FOR PRIVACY
Registrant State/Province: Dublin 2
Registrant Postal Code: REDACTED FOR PRIVACY
Registrant Country: IE
Registrant Phone: REDACTED FOR PRIVACY
Registrant Phone Ext: REDACTED FOR PRIVACY
Registrant Fax: REDACTED FOR PRIVACY
Registrant Fax Ext: REDACTED FOR PRIVACY
Registrant Email: Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.
Registry Admin ID: REDACTED FOR PRIVACY
Admin Name: REDACTED FOR PRIVACY
Admin Organization: REDACTED FOR PRIVACY
Admin Street: REDACTED FOR PRIVACY
Admin City: REDACTED FOR PRIVACY
Admin State/Province: REDACTED FOR PRIVACY
Admin Postal Code: REDACTED FOR PRIVACY
Admin Country: REDACTED FOR PRIVACY
Admin Phone: REDACTED FOR PRIVACY
Admin Phone Ext: REDACTED FOR PRIVACY
Admin Fax: REDACTED FOR PRIVACY
Admin Fax Ext: REDACTED FOR PRIVACY
Admin Email: Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.
Registry Tech ID: REDACTED FOR PRIVACY
Tech Name: REDACTED FOR PRIVACY
Tech Organization: REDACTED FOR PRIVACY
Tech Street: REDACTED FOR PRIVACY
Tech City: REDACTED FOR PRIVACY
Tech State/Province: REDACTED FOR PRIVACY
Tech Postal Code: REDACTED FOR PRIVACY
Tech Country: REDACTED FOR PRIVACY
Tech Phone: REDACTED FOR PRIVACY
Tech Phone Ext: REDACTED FOR PRIVACY
Tech Fax: REDACTED FOR PRIVACY
Tech Fax Ext: REDACTED FOR PRIVACY
Tech Email: Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.
Name Server: v0n0.nic.live
Name Server: v0n1.nic.live
Name Server: v0n2.nic.live
Name Server: v0n3.nic.live
Name Server: v2n0.nic.live
Name Server: v2n1.nic.live
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of WHOIS database: 2024-07-09T23:49:59Z <<<
================================================
FILE: test/samples/whois/nyan.cat
================================================
Domain Name: nyan.cat
Registry Domain ID: 826532-D
Registrar WHOIS Server: whois.gandi.net
Registrar URL: https://www.gandi.net/
Updated Date: 2017-07-07T17:24:23.746Z
Creation Date: 2011-04-13T19:52:17.635Z
Registry Expiry Date: 2018-04-13T19:52:17.635Z
Registrar: GANDI SAS
Registrar IANA ID: 81
Registrar Abuse Contact Email: direction@gandi.net
Registrar Abuse Contact Phone: +1.1111111
Domain Status: ok https://icann.org/epp#ok
Registry Registrant ID:
Registrant Name:
Registrant Organization:
Registrant Street:
Registrant City:
Registrant State/Province:
Registrant Postal Code:
Registrant Country:
Registrant Phone:
Registrant Phone Ext:
Registrant Fax:
Registrant Fax Ext:
Registrant Email:
Registry Admin ID:
Admin Name:
Admin Organization:
Admin Street:
Admin City:
Admin State/Province:
Admin Postal Code:
Admin Country:
Admin Phone:
Admin Phone Ext:
Admin Fax:
Admin Fax Ext:
Admin Email:
Registry Tech ID:
Tech Name:
Tech Organization:
Tech Street:
Tech City:
Tech State/Province:
Tech Postal Code:
Tech Country:
Tech Phone:
Tech Phone Ext:
Tech Fax:
Tech Fax Ext:
Tech Email:
Registry Billing ID:
Billing Name:
Billing Organization:
Billing Street:
Billing City:
Billing State/Province:
Billing Postal Code:
Billing Country:
Billing Phone:
Billing Phone Ext:
Billing Fax:
Billing Fax Ext:
Billing Email:
Name Server: ns1.dreamhost.com
Name Server: ns2.dreamhost.com
Name Server: ns3.dreamhost.com
DNSSEC: unsigned
IDN Tag:
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of Whois database: 2017-12-11T22:57:02.88Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
This domain has chosen privacy settings according to the European
data protection framework provisions.
Should you need to contact the registrant, please see
http://www.domini.cat/contact-registrant
For law enforcement and trademark protection purposes, see
http://www.domini.cat/whois-access
In case of technical problems, please see
http://www.domini.cat/report-problem
Terms and Conditions of Use
The data in this record is provided by puntCAT for informational
purposes only. puntCAT does not guarantee its accuracy and cannot,
under any circumstances, be held liable in case the stored information would
prove to be wrong, incomplete or not accurate in any sense.
All the domain data that is visible in the Whois service is protected by
law. It is not permitted to use it for any purpose other than technical or
administrative requirements associated with the operation of the Internet.
It is explicitly forbidden to extract, copy and/or use or re-utilise in any
form and by any means (electronically or not) the whole or a quantitatively
or qualitatively substantial part of the contents of the Whois database
without prior and explicit written permission by puntCAT It is
prohibited, in particular, to use it for transmission of unsolicited and/or
commercial and/or advertising by phone, fax, e-mail or for any similar
purposes.
By maintaining the connection you assure that you have a legitimate interest
in the data and that you will only use it for the stated purposes. You are
aware that puntCAT maintains the right to initiate legal
proceedings against you in the event of any breach of this assurance and to
bar you from using its Whois service.
End of Whois record.
================================================
FILE: test/samples/whois/reddit.com
================================================
Whois Server Version 2.0
Domain names in the .com and .net domains can now be registered
with many different competing registrars. Go to http://www.internic.net
for detailed information.
Domain Name: REDDIT.COM
Registrar: DSTR ACQUISITION PA I, LLC DBA DOMAINBANK.COM
Whois Server: rs.domainbank.net
Referral URL: http://www.domainbank.net
Name Server: ASIA1.AKAM.NET
Name Server: ASIA9.AKAM.NET
Name Server: AUS2.AKAM.NET
Name Server: NS1-1.AKAM.NET
Name Server: NS1-195.AKAM.NET
Name Server: USE4.AKAM.NET
Name Server: USW3.AKAM.NET
Name Server: USW5.AKAM.NET
Status: clientDeleteProhibited
Status: clientTransferProhibited
Status: clientUpdateProhibited
Updated Date: 04-jun-2008
Creation Date: 29-apr-2005
Expiration Date: 29-apr-2009
>>> Last update of whois database: Fri, 27 Jun 2008 01:39:54 UTC <<<
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
TERMS OF USE: You are not authorized to access or query our Whois
database through the use of electronic processes that are high-volume and
automated except as reasonably necessary to register domain names or
modify existing registrations; the Data in VeriSign Global Registry
Services' ("VeriSign") Whois database is provided by VeriSign for
information purposes only, and to assist persons in obtaining information
about or related to a domain name registration record. VeriSign does not
guarantee its accuracy. By submitting a Whois query, you agree to abide
by the following terms of use: You agree that you may use this Data only
for lawful purposes and that under no circumstances will you use this Data
to: (1) allow, enable, or otherwise support the transmission of mass
unsolicited, commercial advertising or solicitations via e-mail, telephone,
or facsimile; or (2) enable high volume, automated, electronic processes
that apply to VeriSign (or its computer systems). The compilation,
repackaging, dissemination or other use of this Data is expressly
prohibited without the prior written consent of VeriSign. You agree not to
use electronic processes that are automated and high-volume to access or
query the Whois database except as reasonably necessary to register
domain names or modify existing registrations. VeriSign reserves the right
to restrict your access to the Whois database in its sole discretion to ensure
operational stability. VeriSign may restrict or terminate your access to the
Whois database for failure to abide by these terms of use. VeriSign
reserves the right to modify these terms at any time.
The Registry database contains ONLY .COM, .NET, .EDU domains and
Registrars.
The information in this whois database is provided for the sole
purpose of assisting you in obtaining information about domain
name registration records. This information is available "as is,"
and we do not guarantee its accuracy. By submitting a whois
query, you agree that you will use this data only for lawful
purposes and that, under no circumstances will you use this data
to: (1) enable high volume, automated, electronic processes that
stress or load this whois database system providing you this
information; or (2) allow,enable, or otherwise support the
transmission of mass, unsolicited, commercial advertising or
solicitations via facsimile, electronic mail, or by telephone to
entitites other than your own existing customers. The
compilation, repackaging, dissemination or other use of this data
is expressly prohibited without prior written consent from this
company. We reserve the right to modify these terms at any
time. By submitting an inquiry, you agree to these terms of usage
and limitations of warranty. Please limit your queries to 10 per
minute and one connection.
Domain Services Provided By:
Domain Bank, support@domainbank.com
http:///www.domainbank.com
Registrant:
CONDENET INC
Four Times Square
New York, NY 10036
US
Registrar: DOMAINBANK
Domain Name: REDDIT.COM
Created on: 29-APR-05
Expires on: 29-APR-09
Last Updated on: 04-JUN-08
Administrative Contact:
, domain_admin@advancemags.com
Advance Magazine Group
4 Times Square
23rd Floor
New York, New York 10036
US
2122862860
Technical Contact:
, domains@advancemags.com
Advance Magazine Group
1201 N. Market St
Wilmington, DE 19801
US
3028304630
Domain servers in listed order:
ASIA1.AKAM.NET
ASIA9.AKAM.NET
AUS2.AKAM.NET
NS1-1.AKAM.NET
NS1-195.AKAM.NET
USE4.AKAM.NET
USW3.AKAM.NET
USW5.AKAM.NET
End of Whois Information
================================================
FILE: test/samples/whois/sapo.pt
================================================
Domain: sapo.pt
Domain Status: Registered
Creation Date: 30/10/2002 00:00:00
Expiration Date: 02/11/2019 23:59:00
Owner Name: MEO - SERVI?OS DE COMUNICA??ES E MULTIM?DIA S.A.
Owner Address: A/C Dire??o de Tecnologias de Informa??o
Owner Locality: Av. Fontes Pereira de Melo, 40
Owner ZipCode: 1069-300
Owner Locality ZipCode: Av. Fontes Pereira de Melo, 40
Owner Email: gestao.dominios@telecom.pt
Admin Name: MEO - SERVI?OS DE COMUNICA??ES E MULTIM?DIA S.A.
Admin Address: A/C Dire??o de Tecnologias de Informa??o
Admin Locality: Av. Fontes Pereira de Melo, 40
Admin ZipCode: 1069-300
Admin Locality ZipCode: Av. Fontes Pereira de Melo, 40
Admin Email: gestao.dominios@telecom.pt
Name Server: ns2.sapo.pt | IPv4: 212.55.154.194 and IPv6:
Name Server: dns01.sapo.pt | IPv4: 213.13.28.116 and IPv6: 2001:8a0:2106:4:213:13:28:116
Name Server: dns02.sapo.pt | IPv4: 213.13.30.116 and IPv6: 2001:8a0:2206:4:213:13:30:116
Name Server: ns.sapo.pt | IPv4: 212.55.154.202 and IPv6:
================================================
FILE: test/samples/whois/sbc.org.hk
================================================
-------------------------------------------------------------------------------
Whois server by HKIRC
-------------------------------------------------------------------------------
.hk top level Domain names can be registered via HKIRC-Accredited Registrars.
Go to https://www.hkirc.hk/content.jsp?id=280 for details.
-------------------------------------------------------------------------------
Domain Name: SBC.ORG.HK
Domain Status: Active
DNSSEC: unsigned
Contract Version: HKDNR latest version
Active variants
Inactive variants
Registrar Name: Hong Kong Domain Name Registration Company Limited
Registrar Contact Information: Email: enquiry@hkdnr.hk Hotline: +852 2319 1313
Reseller:
Registrant Contact Information:
Company English Name (It should be the same as the registered/corporation name on your Business Register Certificate or relevant documents): SOCIETY OF BOYS' CENTRES
Company Chinese name: 香港扶幼會
Address: 47 CORNWALL STREET, SHAMSHUIPO, KOWLOON
Country: Hong Kong (HK)
Email: admin@sbc.org.hk
Domain Name Commencement Date: 14-07-1998
Expiry Date: 07-03-2020
Re-registration Status: Complete
Administrative Contact Information:
Given name: BOYS' CENTRES
Family name: SOCIETY OF
Company name: SOCIETY OF BOYS' CENTRES
Address: 47 CORNWALL STREET, SHAMSHUIPO, KOWLOON
Country: Hong Kong (HK)
Phone: +852-27796442
Fax: +852-27793622
Email: admin@sbc.org.hk
Account Name: HK4375390T
Technical Contact Information:
Given name: BOYS' CENTRES
Family name: SOCIETY OF
Company name: SOCIETY OF BOYS' CENTRES
Address: 47 CORNWALL STREET, SHAMSHUIPO, KOWLOON
Country: Hong Kong (HK)
Phone: +852-27796442
Fax: +852-27793622
Email: admin@sbc.org.hk
Name Servers Information:
NS19.ODYSSEYHOST.COM
NS20.ODYSSEYHOST.COM
Status Information:
Domain Prohibit Status:
-------------------------------------------------------------------------------
The Registry contains ONLY .com.hk, .net.hk, .edu.hk, .org.hk,
.gov.hk, idv.hk. and .hk $domains.
-------------------------------------------------------------------------------
WHOIS Terms of Use
By using this WHOIS search enquiry service you agree to these terms of use.
The data in HKDNR's WHOIS search engine is for information purposes only and HKDNR does not guarantee the accuracy of the data. The data is provided to assist people to obtain information about the registration record of domain names registered by HKDNR. You agree to use the data for lawful purposes only.
You are not authorised to use high-volume, electronic or automated processes to access, query or harvest data from this WHOIS search enquiry service.
You agree that you will not and will not allow anyone else to:
a. use the data for mass unsolicited commercial advertising of any sort via any medium including telephone, email or fax; or
b. enable high volume, automated or electronic processes that apply to HKDNR or its computer systems including the WHOIS search enquiry service; or
c. without the prior written consent of HKDNR compile, repackage, disseminate, disclose to any third party or use the data for a purpose other than obtaining information about a domain name registration record; or
d. use such data to derive an economic benefit for yourself.
HKDNR in its sole discretion may terminate your access to the WHOIS search enquiry service (including, without limitation, blocking your IP address) at any time including, without limitation, for excessive use of the WHOIS search enquiry service.
HKDNR may modify these terms of use at any time by publishing the modified terms of use on its website.
================================================
FILE: test/samples/whois/seal.jobs
================================================
Domain Name: SEAL.JOBS
Registry Domain ID: 128797919_DOMAIN_JOBS-VRSN
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: http://www.godaddy.com
Updated Date: 2018-03-22T13:44:07Z
Creation Date: 2017-02-25T06:26:32Z
Registry Expiry Date: 2022-02-25T06:26:32Z
Registrar: GoDaddy.com, LLC
Registrar IANA ID: 146
Registrar Abuse Contact Email: email@godaddy.com
Registrar Abuse Contact Phone: 480-624-2505
Domain Status: ok https://icann.org/epp#ok
Registry Registrant ID: REDACTED FOR PRIVACY
Registrant Name: REDACTED FOR PRIVACY
Registrant Organization: Seal Jobs NV
Registrant Street: REDACTED FOR PRIVACY
Registrant City: REDACTED FOR PRIVACY
Registrant State/Province: Oost-Vlaanderen
Registrant Postal Code: REDACTED FOR PRIVACY
Registrant Country: BE
Registrant Phone: REDACTED FOR PRIVACY
Registrant Phone Ext: REDACTED FOR PRIVACY
Registrant Fax: REDACTED FOR PRIVACY
Registrant Fax Ext: REDACTED FOR PRIVACY
Registrant Email: Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain.
Registry Admin ID: REDACTED FOR PRIVACY
Admin Name: REDACTED FOR PRIVACY
Admin Organization: REDACTED FOR PRIVACY
Admin Street: REDACTED FOR PRIVACY
Admin City: REDACTED FOR PRIVACY
Admin State/Province: REDACTED FOR PRIVACY
Admin Postal Code: REDACTED FOR PRIVACY
Admin Country: REDACTED FOR PRIVACY
Admin Phone: REDACTED FOR PRIVACY
Admin Phone Ext: REDACTED FOR PRIVACY
Admin Fax: REDACTED FOR PRIVACY
Admin Fax Ext: REDACTED FOR PRIVACY
Admin Email: Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain.
Registry Tech ID: REDACTED FOR PRIVACY
Tech Name: REDACTED FOR PRIVACY
Tech Organization: REDACTED FOR PRIVACY
Tech Street: REDACTED FOR PRIVACY
Tech City: REDACTED FOR PRIVACY
Tech State/Province: REDACTED FOR PRIVACY
Tech Postal Code: REDACTED FOR PRIVACY
Tech Country: REDACTED FOR PRIVACY
Tech Phone: REDACTED FOR PRIVACY
Tech Phone Ext: REDACTED FOR PRIVACY
Tech Fax: REDACTED FOR PRIVACY
Tech Fax Ext: REDACTED FOR PRIVACY
Tech Email: Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain.
Name Server: PDNS13.DOMAINCONTROL.COM
Name Server: PDNS14.DOMAINCONTROL.COM
DNSSEC: unsigned
Registry Billing ID: REDACTED FOR PRIVACY
Billing Name: REDACTED FOR PRIVACY
Billing Organization: REDACTED FOR PRIVACY
Billing Street: REDACTED FOR PRIVACY
Billing City: REDACTED FOR PRIVACY
Billing State/Province: REDACTED FOR PRIVACY
Billing Postal Code: REDACTED FOR PRIVACY
Billing Country: REDACTED FOR PRIVACY
Billing Phone: REDACTED FOR PRIVACY
Billing Phone Ext: REDACTED FOR PRIVACY
Billing Fax: REDACTED FOR PRIVACY
Billing Fax Ext: REDACTED FOR PRIVACY
Billing Email: Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain.
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of WHOIS database: 2019-04-17T11:27:11Z <<<
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
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the
expiration date of the domain name registrant's agreement with the
sponsoring registrar. Users may consult the sponsoring registrar's
Whois database to view the registrar's reported date of expiration
for this registration.
TERMS OF USE: You are not authorized to access or query our Whois
database through the use of electronic processes that are high-volume and
automated except as reasonably necessary to register domain names or
modify existing registrations; the Data in VeriSign's ("VeriSign") Whois
database is provided by VeriSign for information purposes only, and to
assist persons in obtaining information about or related to a domain name
registration record. VeriSign does not guarantee its accuracy.
By submitting a Whois query, you agree to abide by the following terms of
use: You agree that you may use this Data only for lawful purposes and that
under no circumstances will you use this Data to: (1) allow, enable, or
otherwise support the transmission of mass unsolicited, commercial
advertising or solicitations via e-mail, telephone, or facsimile; or
(2) enable high volume, automated, electronic processes that apply to
VeriSign (or its computer systems). The compilation, repackaging,
dissemination or other use of this Data is expressly prohibited without
the prior written consent of VeriSign. You agree not to use electronic
processes that are automated and high-volume to access or query the
Whois database except as reasonably necessary to register domain names
or modify existing registrations. VeriSign reserves the right to restrict
your access to the Whois database in its sole discretion to ensure
operational stability. VeriSign may restrict or terminate your access to the
Whois database for failure to abide by these terms of use. VeriSign
reserves the right to modify these terms at any time.
================================================
FILE: test/samples/whois/shazow.net
================================================
Whois Server Version 2.0
Domain names in the .com and .net domains can now be registered
with many different competing registrars. Go to http://www.internic.net
for detailed information.
Domain Name: SHAZOW.NET
Registrar: NEW DREAM NETWORK, LLC
Whois Server: whois.dreamhost.com
Referral URL: http://www.dreamhost.com
Name Server: NS1.DREAMHOST.COM
Name Server: NS2.DREAMHOST.COM
Name Server: NS3.DREAMHOST.COM
Status: ok
Updated Date: 08-aug-2007
Creation Date: 13-sep-2003
Expiration Date: 13-sep-2009
>>> Last update of whois database: Thu, 26 Jun 2008 21:39:08 EDT <<<
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
TERMS OF USE: You are not authorized to access or query our Whois
database through the use of electronic processes that are high-volume and
automated except as reasonably necessary to register domain names or
modify existing registrations; the Data in VeriSign Global Registry
Services' ("VeriSign") Whois database is provided by VeriSign for
information purposes only, and to assist persons in obtaining information
about or related to a domain name registration record. VeriSign does not
guarantee its accuracy. By submitting a Whois query, you agree to abide
by the following terms of use: You agree that you may use this Data only
for lawful purposes and that under no circumstances will you use this Data
to: (1) allow, enable, or otherwise support the transmission of mass
unsolicited, commercial advertising or solicitations via e-mail, telephone,
or facsimile; or (2) enable high volume, automated, electronic processes
that apply to VeriSign (or its computer systems). The compilation,
repackaging, dissemination or other use of this Data is expressly
prohibited without the prior written consent of VeriSign. You agree not to
use electronic processes that are automated and high-volume to access or
query the Whois database except as reasonably necessary to register
domain names or modify existing registrations. VeriSign reserves the right
to restrict your access to the Whois database in its sole discretion to ensure
operational stability. VeriSign may restrict or terminate your access to the
Whois database for failure to abide by these terms of use. VeriSign
reserves the right to modify these terms at any time.
The Registry database contains ONLY .COM, .NET, .EDU domains and
Registrars.
Legal Stuff:
The information in DreamHost's whois database is to be used for
informational purposes only, and to obtain information on a
domain name registration. DreamHost does not guarantee its
accuracy.
You are not authorized to query or access DreamHost's whois
database using high-volume, automated means without written
permission from DreamHost.
You are not authorized to query or access DreamHost's whois
database in order to facilitate illegal activities, or to
facilitate the use of unsolicited bulk email, telephone, or
facsimile communications.
You are not authorized to collect, repackage, or redistribute the
information in DreamHost's whois database.
DreamHost may, at its sole discretion, restrict your access to
the whois database at any time, with or without notice. DreamHost
may modify these Terms of Service at any time, with or without
notice.
+++++++++++++++++++++++++++++++++++++++++++
Domain Name: shazow.net
Registrant Contact:
shazow.net Private Registrant shazow.net@proxy.dreamhost.com
DreamHost Web Hosting
417 Associated Rd #324
Brea, CA 92821
US
+1.2139471032
Administrative Contact:
shazow.net Private Registrant shazow.net@proxy.dreamhost.com
DreamHost Web Hosting
417 Associated Rd #324
Brea, CA 92821
US
+1.2139471032
Technical Contact:
shazow.net Private Registrant shazow.net@proxy.dreamhost.com
DreamHost Web Hosting
417 Associated Rd #324
Brea, CA 92821
US
+1.2139471032
Billing Contact:
shazow.net Private Registrant shazow.net@proxy.dreamhost.com
DreamHost Web Hosting
417 Associated Rd #324
Brea, CA 92821
US
+1.2139471032
Record created on 2003-09-12 21:43:11.
Record expires on 2009-09-12 21:43:11.
Domain servers in listed order:
ns1.dreamhost.com
ns2.dreamhost.com
ns3.dreamhost.com
DreamHost whois server terms of service: http://whois.dreamhost.com/terms.html
================================================
FILE: test/samples/whois/slashdot.org
================================================
NOTICE: Access to .ORG WHOIS information is provided to assist persons in
determining the contents of a domain name registration record in the Public Interest Registry
registry database. The data in this record is provided by Public Interest Registry
for informational purposes only, and Public Interest Registry does not guarantee its
accuracy. This service is intended only for query-based access. You agree
that you will use this data only for lawful purposes and that, under no
circumstances will you use this data to: (a) allow, enable, or otherwise
support the transmission by e-mail, telephone, or facsimile of mass
unsolicited, commercial advertising or solicitations to entities other than
the data recipient's own existing customers; or (b) enable high volume,
automated, electronic processes that send queries or data to the systems of
Registry Operator or any ICANN-Accredited Registrar, except as reasonably
necessary to register domain names or modify existing registrations. All
rights reserved. Public Interest Registry reserves the right to modify these terms at any
time. By submitting this query, you agree to abide by this policy.
Domain ID:D2289308-LROR
Domain Name:SLASHDOT.ORG
Created On:05-Oct-1997 04:00:00 UTC
Last Updated On:23-Jun-2008 20:00:11 UTC
Expiration Date:04-Oct-2008 04:00:00 UTC
Sponsoring Registrar:Tucows Inc. (R11-LROR)
Status:OK
Registrant ID:tuIIldggGKu3HogX
Registrant Name:DNS Administration
Registrant Organization:SourceForge, Inc.
Registrant Street1:650 Castro St.
Registrant Street2:Suite 450
Registrant Street3:
Registrant City:Mountain View
Registrant State/Province:CA
Registrant Postal Code:94041
Registrant Country:US
Registrant Phone:+1.6506942100
Registrant Phone Ext.:
Registrant FAX:
Registrant FAX Ext.:
Registrant Email:dns-admin@corp.sourceforge.com
Admin ID:tupyrGGXKEFJLdE5
Admin Name:DNS Administration
Admin Organization:SourceForge, Inc.
Admin Street1:650 Castro St.
Admin Street2:Suite 450
Admin Street3:
Admin City:Mountain View
Admin State/Province:CA
Admin Postal Code:94041
Admin Country:US
Admin Phone:+1.6506942100
Admin Phone Ext.:
Admin FAX:
Admin FAX Ext.:
Admin Email:dns-admin@corp.sourceforge.com
Tech ID:tuLQk02WUyJi47SS
Tech Name:DNS Technical
Tech Organization:SourceForge, Inc.
Tech Street1:650 Castro St.
Tech Street2:Suite 450
Tech Street3:
Tech City:Mountain View
Tech State/Province:CA
Tech Postal Code:94041
Tech Country:US
Tech Phone:+1.6506942100
Tech Phone Ext.:
Tech FAX:
Tech FAX Ext.:
Tech Email:dns-tech@corp.sourceforge.com
Name Server:NS-1.CH3.SOURCEFORGE.COM
Name Server:NS-2.CH3.SOURCEFORGE.COM
Name Server:NS-3.CORP.SOURCEFORGE.COM
Name Server:
Name Server:
Name Server:
Name Server:
Name Server:
Name Server:
Name Server:
Name Server:
Name Server:
Name Server:
================================================
FILE: test/samples/whois/squatter.net
================================================
Whois Server Version 2.0
Domain names in the .com and .net domains can now be registered
with many different competing registrars. Go to http://www.internic.net
for detailed information.
Domain Name: SQUATTER.NET
Registrar: DOMAINDISCOVER
Whois Server: whois.domaindiscover.com
Referral URL: http://www.domaindiscover.com
Name Server: NS1.SBRACK.COM
Name Server: NS2.SBRACK.COM
Status: clientTransferProhibited
Updated Date: 07-nov-2007
Creation Date: 06-nov-1999
Expiration Date: 06-nov-2008
>>> Last update of whois database: Thu, 26 Jun 2008 21:40:25 EDT <<<
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
TERMS OF USE: You are not authorized to access or query our Whois
database through the use of electronic processes that are high-volume and
automated except as reasonably necessary to register domain names or
modify existing registrations; the Data in VeriSign Global Registry
Services' ("VeriSign") Whois database is provided by VeriSign for
information purposes only, and to assist persons in obtaining information
about or related to a domain name registration record. VeriSign does not
guarantee its accuracy. By submitting a Whois query, you agree to abide
by the following terms of use: You agree that you may use this Data only
for lawful purposes and that under no circumstances will you use this Data
to: (1) allow, enable, or otherwise support the transmission of mass
unsolicited, commercial advertising or solicitations via e-mail, telephone,
or facsimile; or (2) enable high volume, automated, electronic processes
that apply to VeriSign (or its computer systems). The compilation,
repackaging, dissemination or other use of this Data is expressly
prohibited without the prior written consent of VeriSign. You agree not to
use electronic processes that are automated and high-volume to access or
query the Whois database except as reasonably necessary to register
domain names or modify existing registrations. VeriSign reserves the right
to restrict your access to the Whois database in its sole discretion to ensure
operational stability. VeriSign may restrict or terminate your access to the
Whois database for failure to abide by these terms of use. VeriSign
reserves the right to modify these terms at any time.
The Registry database contains ONLY .COM, .NET, .EDU domains and
Registrars.
This WHOIS database is provided for information purposes only. We do
not guarantee the accuracy of this data. The following uses of this
system are expressly prohibited: (1) use of this system for unlawful
purposes; (2) use of this system to collect information used in the
mass transmission of unsolicited commercial messages in any medium;
(3) use of high volume, automated, electronic processes against this
database. By submitting this query, you agree to abide by this
policy.
Registrant:
CustomPC
4047 N Bayberry St
Wichita, KS 67226-2418
US
Domain Name: SQUATTER.NET
Administrative Contact:
CustomPC
Derryl Brack
4047 N Bayberry St
Wichita, KS 67226-2418
US
3166402868
dbrack@cpcsales.com
Technical Contact, Zone Contact:
CustomPC
Brack, Derryl
4047 N Bayberry St
Wichita, KS 67226-2418
US
316-683-5010
316-683-5010 [fax]
brack@cpcsales.com
Domain created on 06-Nov-1999
Domain expires on 06-Nov-2008
Last updated on 05-Nov-2007
Domain servers in listed order:
NS1.SBRACK.COM
NS2.SBRACK.COM
Domain registration and hosting powered by DomainDiscover
As low as $9/year, including FREE: responsive toll-free support,
URL/frame/email forwarding, easy management system, and full featured DNS.
================================================
FILE: test/samples/whois/titech.ac.jp
================================================
[ JPRS database provides information on network administration. Its use is ]
[ restricted to network administration purposes. For further information, ]
[ use 'whois -h whois.jprs.jp help'. To suppress Japanese output, add'/e' ]
[ at the end of command, e.g. 'whois -h whois.jprs.jp xxx/e'. ]
Domain Information:
a. [Domain Name] TITECH.AC.JP
g. [Organization] Institute of Science Tokyo
l. [Organization Type] University
m. [Administrative Contact] YK87359JP
n. [Technical Contact] YS79730JP
p. [Name Server] ns.fujisawa.wide.ad.jp
p. [Name Server] titechns2-o.noc.titech.ac.jp
p. [Name Server] titechns2-s.noc.titech.ac.jp
s. [Signing Key]
[State] Connected (2026/03/31)
[Registered Date]
[Connected Date] 2025/05/26
[Last Update] 2025/05/29 10:45:59 (JST)
================================================
FILE: test/samples/whois/urlowl.com
================================================
Domain Name: URLOWL.COM
Registry Domain ID: 1781848049_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.dynadot.com
Registrar URL: http://www.dynadot.com
Updated Date: 2017-03-31T07:36:34Z
Creation Date: 2013-02-21T19:24:57Z
Registry Expiry Date: 2018-02-21T19:24:57Z
Registrar: DYNADOT, LLC
Registrar IANA ID: 472
Registrar Abuse Contact Email: abuse@dynadot.com
Registrar Abuse Contact Phone: +16502620100
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: NS1.SEDOPARKING.COM
Name Server: NS2.SEDOPARKING.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2017-12-11T23:35:30Z <<<
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
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does
gitextract_pxww6m4u/
├── .github/
│ └── workflows/
│ └── python-package.yml
├── .gitignore
├── LICENSE.txt
├── MANIFEST.in
├── README.md
├── requirements.txt
├── setup.py
├── test/
│ ├── __init__.py
│ ├── samples/
│ │ ├── expected/
│ │ │ ├── abc.rs
│ │ │ ├── abc.xyz
│ │ │ ├── about.us
│ │ │ ├── abv.bg
│ │ │ ├── afip.gob.ar
│ │ │ ├── allegro.pl
│ │ │ ├── amazon.co.uk
│ │ │ ├── app.nl
│ │ │ ├── brainly.lat
│ │ │ ├── cbc.ca
│ │ │ ├── cyberciti.biz
│ │ │ ├── davidwalsh.name
│ │ │ ├── digg.com
│ │ │ ├── druid.fi
│ │ │ ├── drupalcamp.by
│ │ │ ├── eurid.eu
│ │ │ ├── google.ai
│ │ │ ├── google.at
│ │ │ ├── google.cl
│ │ │ ├── google.co.cr
│ │ │ ├── google.co.id
│ │ │ ├── google.co.il
│ │ │ ├── google.co.ve
│ │ │ ├── google.com
│ │ │ ├── google.com.br
│ │ │ ├── google.com.pe
│ │ │ ├── google.com.sa
│ │ │ ├── google.com.sg
│ │ │ ├── google.com.tr
│ │ │ ├── google.com.tw
│ │ │ ├── google.com.ua
│ │ │ ├── google.de
│ │ │ ├── google.do
│ │ │ ├── google.fr
│ │ │ ├── google.hn
│ │ │ ├── google.hu
│ │ │ ├── google.ie
│ │ │ ├── google.it
│ │ │ ├── google.kg
│ │ │ ├── google.lu
│ │ │ ├── google.lv
│ │ │ ├── google.mx
│ │ │ ├── google.ro
│ │ │ ├── google.sk
│ │ │ ├── imdb.com
│ │ │ ├── liechtenstein.li
│ │ │ ├── microsoft.com
│ │ │ ├── nic.live
│ │ │ ├── nyan.cat
│ │ │ ├── reddit.com
│ │ │ ├── research.google
│ │ │ ├── sapo.pt
│ │ │ ├── sbc.org.hk
│ │ │ ├── seal.jobs
│ │ │ ├── shazow.net
│ │ │ ├── slashdot.org
│ │ │ ├── squatter.net
│ │ │ ├── titech.ac.jp
│ │ │ ├── translate.goog
│ │ │ ├── urlowl.com
│ │ │ ├── web.de
│ │ │ ├── willhaben.at
│ │ │ ├── www.gov.uk
│ │ │ ├── yahoo.co.jp
│ │ │ ├── yahoo.co.nz
│ │ │ ├── yandex.kz
│ │ │ └── yandex.ru
│ │ └── whois/
│ │ ├── abc.rs
│ │ ├── abc.xyz
│ │ ├── about.us
│ │ ├── abv.bg
│ │ ├── afip.gob.ar
│ │ ├── allegro.pl
│ │ ├── amazon.co.uk
│ │ ├── app.nl
│ │ ├── brainly.lat
│ │ ├── cbc.ca
│ │ ├── cyberciti.biz
│ │ ├── davidwalsh.name
│ │ ├── digg.com
│ │ ├── druid.fi
│ │ ├── drupalcamp.by
│ │ ├── eurid.eu
│ │ ├── google.ai
│ │ ├── google.at
│ │ ├── google.cl
│ │ ├── google.co.cr
│ │ ├── google.co.id
│ │ ├── google.co.il
│ │ ├── google.co.ve
│ │ ├── google.com
│ │ ├── google.com.br
│ │ ├── google.com.pe
│ │ ├── google.com.sa
│ │ ├── google.com.sg
│ │ ├── google.com.tr
│ │ ├── google.com.tw
│ │ ├── google.com.ua
│ │ ├── google.de
│ │ ├── google.do
│ │ ├── google.fr
│ │ ├── google.hn
│ │ ├── google.hu
│ │ ├── google.ie
│ │ ├── google.it
│ │ ├── google.kg
│ │ ├── google.lu
│ │ ├── google.lv
│ │ ├── google.mx
│ │ ├── google.ro
│ │ ├── google.sk
│ │ ├── imdb.com
│ │ ├── liechtenstein.li
│ │ ├── microsoft.com
│ │ ├── nic.live
│ │ ├── nyan.cat
│ │ ├── reddit.com
│ │ ├── sapo.pt
│ │ ├── sbc.org.hk
│ │ ├── seal.jobs
│ │ ├── shazow.net
│ │ ├── slashdot.org
│ │ ├── squatter.net
│ │ ├── titech.ac.jp
│ │ ├── urlowl.com
│ │ ├── web.de
│ │ ├── willhaben.at
│ │ ├── www.gov.uk
│ │ ├── yahoo.co.jp
│ │ ├── yahoo.co.nz
│ │ ├── yandex.kz
│ │ └── yandex.ru
│ ├── test_ipv6.py
│ ├── test_main.py
│ ├── test_nicclient.py
│ ├── test_parser.py
│ └── test_query.py
└── whois/
├── __init__.py
├── exceptions.py
├── parser.py
├── time_zones.py
└── whois.py
SYMBOL INDEX (289 symbols across 10 files)
FILE: setup.py
function read (line 5) | def read(filename):
FILE: test/test_ipv6.py
class TestNICClientIPv6 (line 8) | class TestNICClientIPv6(unittest.TestCase):
method setUp (line 10) | def setUp(self):
method test_connect_prioritizes_ipv6 (line 17) | def test_connect_prioritizes_ipv6(self, mock_socket, mock_getaddrinfo):
method test_connect_keeps_default_order (line 32) | def test_connect_keeps_default_order(self, mock_socket, mock_getaddrin...
FILE: test/test_main.py
class TestExtractDomain (line 8) | class TestExtractDomain(unittest.TestCase):
method test_simple_ascii_domain (line 9) | def test_simple_ascii_domain(self):
method test_ascii_with_schema_path_and_query (line 14) | def test_ascii_with_schema_path_and_query(self):
method test_simple_unicode_domain (line 19) | def test_simple_unicode_domain(self):
method test_unicode_domain_and_tld (line 24) | def test_unicode_domain_and_tld(self):
method test_ipv6 (line 29) | def test_ipv6(self):
method test_ipv4 (line 36) | def test_ipv4(self):
method test_second_level_domain (line 43) | def test_second_level_domain(self):
FILE: test/test_nicclient.py
class TestNICClient (line 8) | class TestNICClient(unittest.TestCase):
method setUp (line 9) | def setUp(self):
method test_choose_server (line 12) | def test_choose_server(self):
FILE: test/test_parser.py
class TestParser (line 22) | class TestParser(unittest.TestCase):
method test_com_expiration (line 23) | def test_com_expiration(self):
method test_cast_date (line 36) | def test_cast_date(self):
method test_unknown_date_format (line 46) | def test_unknown_date_format(self):
method test_com_allsamples (line 50) | def test_com_allsamples(self):
method test_ca_parse (line 119) | def test_ca_parse(self):
method test_ai_parse (line 174) | def test_ai_parse(self):
method test_cn_parse (line 295) | def test_cn_parse(self):
method test_ie_parse (line 338) | def test_ie_parse(self):
method test_nl_expiration (line 429) | def test_nl_expiration(self):
method test_dk_parse (line 442) | def test_dk_parse(self):
method _parse_and_compare (line 503) | def _parse_and_compare(
method test_sk_parse (line 510) | def test_sk_parse(self):
method test_bw_parse (line 579) | def test_bw_parse(self):
method test_cm_parse (line 738) | def test_cm_parse(self):
method test_fr_parse (line 786) | def test_fr_parse(self):
FILE: test/test_query.py
class TestQuery (line 8) | class TestQuery(unittest.TestCase):
method test_simple_ascii_domain (line 9) | def test_simple_ascii_domain(self):
method test_simple_unicode_domain (line 13) | def test_simple_unicode_domain(self):
method test_unicode_domain_and_tld (line 17) | def test_unicode_domain_and_tld(self):
method test_ipv4 (line 21) | def test_ipv4(self):
method test_ipv6 (line 36) | def test_ipv6(self):
FILE: whois/__init__.py
function whois (line 23) | def whois(
function extract_domain (line 88) | def extract_domain(url: str) -> str:
FILE: whois/exceptions.py
class PywhoisError (line 1) | class PywhoisError(Exception):
class WhoisError (line 5) | class WhoisError(PywhoisError):
class UnknownTldError (line 9) | class UnknownTldError(WhoisError):
class WhoisDomainNotFoundError (line 13) | class WhoisDomainNotFoundError(WhoisError):
class FailedParsingWhoisOutputError (line 17) | class FailedParsingWhoisOutputError(WhoisError):
class WhoisQuotaExceededError (line 21) | class WhoisQuotaExceededError(WhoisError):
class WhoisUnknownDateFormatError (line 25) | class WhoisUnknownDateFormatError(WhoisError):
class WhoisCommandFailedError (line 29) | class WhoisCommandFailedError(WhoisError):
FILE: whois/parser.py
function datetime_parse (line 77) | def datetime_parse(s: str) -> Union[datetime, None]:
function cast_date (line 89) | def cast_date(
class WhoisEntry (line 110) | class WhoisEntry(dict):
method __init__ (line 148) | def __init__(self, domain: str, text: str, regex: Optional[dict[str, s...
method parse (line 163) | def parse(self) -> None:
method _preprocess (line 189) | def _preprocess(self, attr: str, value: str) -> Union[str, datetime]:
method __setitem__ (line 201) | def __setitem__(self, name: str, value: Any) -> None:
method __getattr__ (line 204) | def __getattr__(self, name: str) -> Any:
method __str__ (line 207) | def __str__(self) -> str:
method __getstate__ (line 213) | def __getstate__(self) -> dict:
method __setstate__ (line 216) | def __setstate__(self, state: dict) -> None:
method load (line 220) | def load(domain: str, text: str):
class WhoisCl (line 453) | class WhoisCl(WhoisEntry):
method __init__ (line 467) | def __init__(self, domain: str, text: str):
class WhoisSG (line 480) | class WhoisSG(WhoisEntry):
method __init__ (line 495) | def __init__(self, domain: str, text: str):
class WhoisPe (line 517) | class WhoisPe(WhoisEntry):
method __init__ (line 532) | def __init__(self, domain: str, text: str):
class WhoisSpace (line 539) | class WhoisSpace(WhoisEntry):
method __init__ (line 542) | def __init__(self, domain: str, text: str):
class WhoisCom (line 549) | class WhoisCom(WhoisEntry):
method __init__ (line 552) | def __init__(self, domain: str, text: str):
class WhoisNet (line 559) | class WhoisNet(WhoisEntry):
method __init__ (line 562) | def __init__(self, domain: str, text: str):
class WhoisOrg (line 569) | class WhoisOrg(WhoisEntry):
method __init__ (line 585) | def __init__(self, domain: str, text: str):
class WhoisRo (line 594) | class WhoisRo(WhoisEntry):
method __init__ (line 609) | def __init__(self, domain: str, text: str):
class WhoisRu (line 616) | class WhoisRu(WhoisEntry):
method __init__ (line 631) | def __init__(self, domain: str, text: str):
class WhoisNl (line 638) | class WhoisNl(WhoisEntry):
method __init__ (line 662) | def __init__(self, domain: str, text: str):
class WhoisLt (line 683) | class WhoisLt(WhoisEntry):
method __init__ (line 693) | def __init__(self, domain: str, text: str):
class WhoisName (line 712) | class WhoisName(WhoisEntry):
method __init__ (line 732) | def __init__(self, domain: str, text: str):
class WhoisUs (line 739) | class WhoisUs(WhoisEntry):
method __init__ (line 797) | def __init__(self, domain, text):
class WhoisPl (line 804) | class WhoisPl(WhoisEntry):
method __init__ (line 819) | def __init__(self, domain: str, text: str):
class WhoisGroup (line 826) | class WhoisGroup(WhoisEntry):
method __init__ (line 843) | def __init__(self, domain: str, text: str):
class WhoisCa (line 850) | class WhoisCa(WhoisEntry):
method __init__ (line 872) | def __init__(self, domain: str, text: str):
class WhoisMe (line 879) | class WhoisMe(WhoisEntry):
method __init__ (line 938) | def __init__(self, domain: str, text: str):
class WhoisUk (line 945) | class WhoisUk(WhoisEntry):
method __init__ (line 964) | def __init__(self, domain: str, text: str):
class WhoisAfnic (line 971) | class WhoisAfnic(WhoisEntry):
method __init__ (line 998) | def __init__(self, domain: str, text: str):
method _resolve_contacts (line 1005) | def _resolve_contacts(self, text: str) -> None:
method _extract_contact_blocks (line 1023) | def _extract_contact_blocks(text: str) -> dict[str, dict[str, Any]]:
class WhoisFi (line 1059) | class WhoisFi(WhoisEntry):
method __init__ (line 1081) | def __init__(self, domain: str, text: str):
class WhoisJp (line 1088) | class WhoisJp(WhoisEntry):
method __init__ (line 1118) | def __init__(self, domain: str, text: str):
method _preprocess (line 1124) | def _preprocess(self, attr, value):
class WhoisAU (line 1136) | class WhoisAU(WhoisEntry):
method __init__ (line 1151) | def __init__(self, domain: str, text: str):
class WhoisRs (line 1158) | class WhoisRs(WhoisEntry):
method __init__ (line 1178) | def __init__(self, domain: str, text: str):
class WhoisEu (line 1185) | class WhoisEu(WhoisEntry):
method __init__ (line 1208) | def __init__(self, domain, text):
method _preprocess (line 1214) | def _preprocess(self, attr, value):
class WhoisEe (line 1220) | class WhoisEe(WhoisEntry):
method __init__ (line 1243) | def __init__(self, domain: str, text: str):
class WhoisBr (line 1250) | class WhoisBr(WhoisEntry):
method __init__ (line 1275) | def __init__(self, domain: str, text: str):
method _preprocess (line 1281) | def _preprocess(self, attr, value):
class WhoisKr (line 1290) | class WhoisKr(WhoisEntry):
method __init__ (line 1308) | def __init__(self, domain: str, text: str):
class WhoisPt (line 1315) | class WhoisPt(WhoisEntry):
method __init__ (line 1338) | def __init__(self, domain: str, text: str):
class WhoisBg (line 1345) | class WhoisBg(WhoisEntry):
method __init__ (line 1354) | def __init__(self, domain: str, text: str):
class WhoisDe (line 1361) | class WhoisDe(WhoisEntry):
method __init__ (line 1381) | def __init__(self, domain: str, text: str):
class WhoisAt (line 1388) | class WhoisAt(WhoisEntry):
method __init__ (line 1407) | def __init__(self, domain: str, text: str):
class WhoisBe (line 1414) | class WhoisBe(WhoisEntry):
method __init__ (line 1429) | def __init__(self, domain: str, text: str):
class WhoisInfo (line 1436) | class WhoisInfo(WhoisEntry):
method __init__ (line 1459) | def __init__(self, domain, text):
class WhoisRf (line 1466) | class WhoisRf(WhoisRu):
method __init__ (line 1469) | def __init__(self, domain: str, text: str):
class WhoisSu (line 1473) | class WhoisSu(WhoisRu):
method __init__ (line 1476) | def __init__(self, domain: str, text: str):
class WhoisBz (line 1480) | class WhoisBz(WhoisRu):
method __init__ (line 1532) | def __init__(self, domain: str, text: str):
class WhoisCity (line 1539) | class WhoisCity(WhoisRu):
method __init__ (line 1542) | def __init__(self, domain: str, text: str):
class WhoisStudio (line 1546) | class WhoisStudio(WhoisBz):
method __init__ (line 1549) | def __init__(self, domain: str, text: str):
class WhoisStyle (line 1556) | class WhoisStyle(WhoisRu):
method __init__ (line 1559) | def __init__(self, domain: str, text: str):
class WhoisPyc (line 1563) | class WhoisPyc(WhoisRu):
method __init__ (line 1566) | def __init__(self, domain: str, text: str):
class WhoisClub (line 1570) | class WhoisClub(WhoisEntry):
method __init__ (line 1642) | def __init__(self, domain: str, text: str):
class WhoisIo (line 1649) | class WhoisIo(WhoisEntry):
method __init__ (line 1668) | def __init__(self, domain: str, text: str):
class WhoisBiz (line 1675) | class WhoisBiz(WhoisEntry):
method __init__ (line 1723) | def __init__(self, domain: str, text: str):
class WhoisMobi (line 1730) | class WhoisMobi(WhoisEntry):
method __init__ (line 1789) | def __init__(self, domain: str, text: str):
class WhoisKg (line 1796) | class WhoisKg(WhoisEntry):
method __init__ (line 1814) | def __init__(self, domain: str, text: str):
class WhoisChLi (line 1821) | class WhoisChLi(WhoisEntry):
method __init__ (line 1835) | def __init__(self, domain: str, text: str):
class WhoisID (line 1842) | class WhoisID(WhoisEntry):
method __init__ (line 1875) | def __init__(self, domain: str, text: str):
class WhoisSe (line 1882) | class WhoisSe(WhoisEntry):
method __init__ (line 1898) | def __init__(self, domain: str, text: str):
class WhoisJobs (line 1905) | class WhoisJobs(WhoisEntry):
method __init__ (line 1967) | def __init__(self, domain: str, text: str):
class WhoisIt (line 1974) | class WhoisIt(WhoisEntry):
method __init__ (line 1997) | def __init__(self, domain: str, text: str):
class WhoisSa (line 2004) | class WhoisSa(WhoisEntry):
method __init__ (line 2020) | def __init__(self, domain: str, text: str):
class WhoisSK (line 2027) | class WhoisSK(WhoisEntry):
method __init__ (line 2056) | def __init__(self, domain: str, text: str):
class WhoisMx (line 2063) | class WhoisMx(WhoisEntry):
method __init__ (line 2092) | def __init__(self, domain: str, text: str):
class WhoisTw (line 2099) | class WhoisTw(WhoisEntry):
method __init__ (line 2129) | def __init__(self, domain: str, text: str):
class WhoisTr (line 2136) | class WhoisTr(WhoisEntry):
method __init__ (line 2164) | def __init__(self, domain: str, text: str):
class WhoisIs (line 2171) | class WhoisIs(WhoisEntry):
method __init__ (line 2186) | def __init__(self, domain: str, text: str):
class WhoisDk (line 2193) | class WhoisDk(WhoisEntry):
method __init__ (line 2212) | def __init__(self, domain: str, text: str):
method _preprocess (line 2218) | def _preprocess(self, attr, value):
class WhoisAi (line 2228) | class WhoisAi(WhoisEntry):
method __init__ (line 2283) | def __init__(self, domain: str, text: str):
class WhoisIl (line 2290) | class WhoisIl(WhoisEntry):
method __init__ (line 2309) | def __init__(self, domain: str, text: str):
method _preprocess (line 2315) | def _preprocess(self, attr, value):
class WhoisIn (line 2321) | class WhoisIn(WhoisEntry):
method __init__ (line 2341) | def __init__(self, domain: str, text: str):
class WhoisCat (line 2348) | class WhoisCat(WhoisEntry):
method __init__ (line 2362) | def __init__(self, domain: str, text: str):
class WhoisIe (line 2372) | class WhoisIe(WhoisEntry):
method __init__ (line 2387) | def __init__(self, domain: str, text: str):
class WhoisNz (line 2394) | class WhoisNz(WhoisEntry):
method __init__ (line 2414) | def __init__(self, domain: str, text: str):
class WhoisLu (line 2421) | class WhoisLu(WhoisEntry):
method __init__ (line 2449) | def __init__(self, domain: str, text: str):
class WhoisCz (line 2456) | class WhoisCz(WhoisEntry):
method __init__ (line 2472) | def __init__(self, domain: str, text: str):
class WhoisOnline (line 2479) | class WhoisOnline(WhoisEntry):
method __init__ (line 2501) | def __init__(self, domain: str, text: str):
class WhoisHr (line 2508) | class WhoisHr(WhoisEntry):
method __init__ (line 2523) | def __init__(self, domain: str, text: str):
class WhoisHk (line 2530) | class WhoisHk(WhoisEntry):
method __init__ (line 2570) | def __init__(self, domain: str, text: str):
class WhoisUA (line 2580) | class WhoisUA(WhoisEntry):
method __init__ (line 2620) | def __init__(self, domain: str, text: str):
class WhoisUkr (line 2633) | class WhoisUkr(WhoisEntry):
method __init__ (line 2668) | def __init__(self, domain: str, text: str):
method _preprocess (line 2674) | def _preprocess(self, attr, value):
class WhoisPpUa (line 2680) | class WhoisPpUa(WhoisEntry):
method __init__ (line 2716) | def __init__(self, domain: str, text: str):
class WhoisHn (line 2723) | class WhoisHn(WhoisEntry):
method __init__ (line 2783) | def __init__(self, domain: str, text: str):
class WhoisLat (line 2790) | class WhoisLat(WhoisEntry):
method __init__ (line 2841) | def __init__(self, domain: str, text: str):
class WhoisCn (line 2848) | class WhoisCn(WhoisEntry):
method __init__ (line 2863) | def __init__(self, domain: str, text: str):
class WhoisApp (line 2870) | class WhoisApp(WhoisEntry):
method __init__ (line 2895) | def __init__(self, domain: str, text: str):
class WhoisMoney (line 2902) | class WhoisMoney(WhoisEntry):
method __init__ (line 2927) | def __init__(self, domain: str, text: str):
class WhoisAr (line 2934) | class WhoisAr(WhoisEntry):
method __init__ (line 2950) | def __init__(self, domain: str, text: str):
class WhoisBy (line 2957) | class WhoisBy(WhoisEntry):
method __init__ (line 2975) | def __init__(self, domain: str, text: str):
class WhoisCr (line 2982) | class WhoisCr(WhoisEntry):
method __init__ (line 3001) | def __init__(self, domain: str, text: str):
class WhoisVe (line 3008) | class WhoisVe(WhoisEntry):
method __init__ (line 3052) | def __init__(self, domain: str, text: str):
class WhoisDo (line 3059) | class WhoisDo(WhoisEntry):
method __init__ (line 3117) | def __init__(self, domain: str, text: str):
class WhoisAe (line 3124) | class WhoisAe(WhoisEntry):
method __init__ (line 3134) | def __init__(self, domain: str, text: str):
class WhoisSi (line 3141) | class WhoisSi(WhoisEntry):
method __init__ (line 3153) | def __init__(self, domain: str, text: str):
class WhoisNo (line 3160) | class WhoisNo(WhoisEntry):
method __init__ (line 3169) | def __init__(self, domain: str, text: str):
class WhoisKZ (line 3176) | class WhoisKZ(WhoisEntry):
method __init__ (line 3191) | def __init__(self, domain: str, text: str):
class WhoisIR (line 3198) | class WhoisIR(WhoisEntry):
method __init__ (line 3211) | def __init__(self, domain: str, text: str):
class WhoisLife (line 3218) | class WhoisLife(WhoisEntry):
method __init__ (line 3231) | def __init__(self, domain: str, text: str):
class WhoisZhongGuo (line 3238) | class WhoisZhongGuo(WhoisEntry):
method __init__ (line 3251) | def __init__(self, domain: str, text: str):
class WhoisWebsite (line 3258) | class WhoisWebsite(WhoisEntry):
method __init__ (line 3261) | def __init__(self, domain: str, text: str):
class WhoisML (line 3268) | class WhoisML(WhoisEntry):
method __init__ (line 3280) | def __init__(self, domain: str, text: str):
method _preprocess (line 3289) | def _preprocess(self, attr, value):
class WhoisOoo (line 3295) | class WhoisOoo(WhoisEntry):
method __init__ (line 3298) | def __init__(self, domain: str, text: str):
class WhoisMarket (line 3305) | class WhoisMarket(WhoisEntry):
method __init__ (line 3308) | def __init__(self, domain: str, text: str):
class WhoisZa (line 3315) | class WhoisZa(WhoisEntry):
method __init__ (line 3382) | def __init__(self, domain: str, text: str):
class WhoisGg (line 3389) | class WhoisGg(WhoisEntry):
method __init__ (line 3398) | def __init__(self, domain: str, text: str):
class WhoisBw (line 3405) | class WhoisBw(WhoisEntry):
method __init__ (line 3445) | def __init__(self, domain: str, text: str):
class WhoisTN (line 3452) | class WhoisTN(WhoisEntry):
method __init__ (line 3495) | def __init__(self, domain: str, text: str):
class WhoisSite (line 3502) | class WhoisSite(WhoisEntry):
method __init__ (line 3525) | def __init__(self, domain: str, text: str):
class WhoisDesign (line 3532) | class WhoisDesign(WhoisEntry):
method __init__ (line 3556) | def __init__(self, domain: str, text: str):
class WhoisEdu (line 3563) | class WhoisEdu(WhoisEntry):
method __init__ (line 3573) | def __init__(self, domain: str, text: str):
class WhoisLv (line 3580) | class WhoisLv(WhoisEntry):
method __init__ (line 3595) | def __init__(self, domain: str, text: str):
class WhoisGa (line 3602) | class WhoisGa(WhoisEntry):
method __init__ (line 3618) | def __init__(self, domain: str, text: str):
class WhoisCo (line 3625) | class WhoisCo(WhoisEntry):
method __init__ (line 3628) | def __init__(self, domain, text):
class WhoisCm (line 3635) | class WhoisCm(WhoisEntry):
method __init__ (line 3650) | def __init__(self, domain: str, text: str):
class WhoisHu (line 3657) | class WhoisHu(WhoisEntry):
method __init__ (line 3665) | def __init__(self, domain: str, text: str):
class WhoisXyz (line 3672) | class WhoisXyz(WhoisEntry):
method __init__ (line 3692) | def __init__(self, domain: str, text: str):
FILE: whois/whois.py
class NICClient (line 41) | class NICClient:
method __init__ (line 126) | def __init__(self, prefer_ipv6: bool = False):
method findwhois_server (line 131) | def findwhois_server(buf: str, hostname: str, query: str) -> Optional[...
method get_socks_socket (line 154) | def get_socks_socket():
method _connect (line 181) | def _connect(self, hostname: str, timeout: int) -> socket.socket:
method findwhois_iana (line 215) | def findwhois_iana(self, tld: str, timeout: int = 10) -> Optional[str]:
method whois (line 231) | def whois(
method choose_server (line 297) | def choose_server(self, domain: str, timeout: int = 10) -> Optional[str]:
method whois_lookup (line 454) | def whois_lookup(
function parse_command_line (line 497) | def parse_command_line(argv: list[str]) -> tuple[optparse.Values, list[s...
Condensed preview — 150 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (455K chars).
[
{
"path": ".github/workflows/python-package.yml",
"chars": 1389,
"preview": "# This workflow will install Python dependencies, run tests and lint with a variety of Python versions\n# For more inform"
},
{
"path": ".gitignore",
"chars": 6,
"preview": "*.pyc\n"
},
{
"path": "LICENSE.txt",
"chars": 1023,
"preview": "Permission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentati"
},
{
"path": "MANIFEST.in",
"chars": 72,
"preview": "include whois/data/public_suffix_list.dat\ninclude LICENSE.txt README.md\n"
},
{
"path": "README.md",
"chars": 2076,
"preview": "# Goal\n\n- Create a simple importable Python module which will produce parsed\n WHOIS data for a given domain.\n- Able to "
},
{
"path": "requirements.txt",
"chars": 29,
"preview": "python-dateutil==2.9.0.post0\n"
},
{
"path": "setup.py",
"chars": 1102,
"preview": "import os\nimport setuptools\n\n\ndef read(filename):\n return open(os.path.join(os.path.dirname(__file__), filename)).rea"
},
{
"path": "test/__init__.py",
"chars": 0,
"preview": ""
},
{
"path": "test/samples/expected/abc.rs",
"chars": 320,
"preview": "{\"domain_name\": \"abc.rs\", \"expiration_date\": \"2026-03-26 16:18:03+00:00\", \"updated_date\": \"2025-02-11 08:24:15+00:00\", \""
},
{
"path": "test/samples/expected/abc.xyz",
"chars": 758,
"preview": "{\"domain_name\": \"ABC.XYZ\", \"registry_domain_id\": \"D2192285-CNIC\", \"whois_server\": \"D2192285-CNIC\", \"registrar_url\": null"
},
{
"path": "test/samples/expected/about.us",
"chars": 545,
"preview": "{\"domain_name\": \"about.us\", \"expiration_date\": \"2018-04-17 23:59:59+00:00\", \"updated_date\": \"2017-06-02 01:30:53+00:00\","
},
{
"path": "test/samples/expected/abv.bg",
"chars": 161,
"preview": "{\"domain_name\": \"abv.bg\", \"expiration_date\": null, \"updated_date\": null, \"registrar\": null, \"registrar_url\": null, \"crea"
},
{
"path": "test/samples/expected/afip.gob.ar",
"chars": 276,
"preview": "{\"domain_name\": \"afip.gob.ar\", \"expiration_date\": \"2019-05-26 00:00:00+00:00\", \"updated_date\": [\"2018-05-19 12:18:44.329"
},
{
"path": "test/samples/expected/allegro.pl",
"chars": 283,
"preview": "{\"domain_name\": \"allegro.pl\", \"expiration_date\": \"2018-10-26 15:00:00+00:00\", \"updated_date\": [\"2017-10-17 07:01:25+00:0"
},
{
"path": "test/samples/expected/amazon.co.uk",
"chars": 329,
"preview": "{\"domain_name\": \"amazon.co.uk\", \"expiration_date\": \"2020-12-05 00:00:00+00:00\", \"updated_date\": \"2013-10-23 00:00:00+00:"
},
{
"path": "test/samples/expected/app.nl",
"chars": 778,
"preview": "{ \n \"domain_name\": \"app.nl\",\n \"expiration_date\": null,\n \"updated_date\": \"2025-09-12 00:00:00+00:00\",\n "
},
{
"path": "test/samples/expected/brainly.lat",
"chars": 301,
"preview": "{\"domain_name\": \"brainly.lat\", \"expiration_date\": \"2019-07-31 15:59:27+00:00\", \"updated_date\": \"2018-07-22 09:01:05+00:0"
},
{
"path": "test/samples/expected/cbc.ca",
"chars": 612,
"preview": "{\"domain_name\": \"cbc.ca\", \"expiration_date\": \"2019-11-24 05:00:00+00:00\", \"updated_date\": \"2018-10-26 02:15:16+00:00\", \""
},
{
"path": "test/samples/expected/cyberciti.biz",
"chars": 558,
"preview": "{\"domain_name\": \"CYBERCITI.BIZ\", \"expiration_date\": \"2024-06-30 23:59:59+00:00\", \"updated_date\": \"2018-07-11 05:55:25+00"
},
{
"path": "test/samples/expected/davidwalsh.name",
"chars": 231,
"preview": "{\"domain_name\": \"DAVIDWALSH.NAME\", \"expiration_date\": null, \"updated_date\": null, \"registrar\": null, \"registrar_url\": nu"
},
{
"path": "test/samples/expected/digg.com",
"chars": 341,
"preview": "{\"domain_name\": \"DIGG.COM\", \"expiration_date\": \"2010-02-20 00:00:00+00:00\", \"updated_date\": \"2007-03-13 00:00:00+00:00\","
},
{
"path": "test/samples/expected/druid.fi",
"chars": 285,
"preview": "{\"domain_name\": \"druid.fi\", \"expiration_date\": \"2022-07-17 00:00:00+00:00\", \"updated_date\": \"2019-03-19 00:00:00+00:00\","
},
{
"path": "test/samples/expected/drupalcamp.by",
"chars": 228,
"preview": "{\"domain_name\": \"drupalcamp.by\", \"expiration_date\": \"2020-07-25 00:00:00+00:00\", \"updated_date\": null, \"registrar\": \"Act"
},
{
"path": "test/samples/expected/eurid.eu",
"chars": 1252,
"preview": "{\n \"domain_name\": \"eurid.eu\",\n \"script\": \"LATIN\",\n \"reseller_org\": null,\n \"reseller_lang\": null,\n \"resell"
},
{
"path": "test/samples/expected/google.ai",
"chars": 453,
"preview": "{\"domain_name\": \"google.ai\", \"expiration_date\": \"2025-09-25 05:37:20+00:00\", \"updated_date\": \"2025-01-23 22:17:03+00:00\""
},
{
"path": "test/samples/expected/google.at",
"chars": 316,
"preview": "{\"domain_name\": \"google.at\", \"expiration_date\": null, \"updated_date\": [\"2011-04-26 17:57:27+00:00\", \"2011-01-11 00:07:31"
},
{
"path": "test/samples/expected/google.cl",
"chars": 239,
"preview": "{\"domain_name\": \"google.cl\", \"expiration_date\": \"2019-11-20 14:48:02+00:00\", \"updated_date\": null, \"registrar\": \"MarkMon"
},
{
"path": "test/samples/expected/google.co.cr",
"chars": 433,
"preview": "{\"domain_name\": \"google.co.cr\", \"expiration_date\": \"2020-04-17 00:00:00+00:00\", \"updated_date\": [\"2017-02-28 06:39:42+00"
},
{
"path": "test/samples/expected/google.co.id",
"chars": 485,
"preview": "{\"domain_name\": \"GOOGLE.CO.ID\", \"expiration_date\": \"2026-09-01 23:59:59+00:00\", \"updated_date\": \"2025-08-05 05:00:20+00:"
},
{
"path": "test/samples/expected/google.co.il",
"chars": 247,
"preview": "{\"domain_name\": \"google.co.il\", \"expiration_date\": \"2026-06-05 00:00:00+00:00\", \"updated_date\": null, \"registrar\": \"Doma"
},
{
"path": "test/samples/expected/google.co.ve",
"chars": 233,
"preview": "{\"domain_name\": \"google.co.ve\", \"expiration_date\": \"2018-03-06 00:00:00+00:00\", \"updated_date\": \"2005-11-17 20:35:01+00:"
},
{
"path": "test/samples/expected/google.com",
"chars": 317,
"preview": "{\"domain_name\": \"GOOGLE.COM\", \"expiration_date\": \"2011-09-14 00:00:00+00:00\", \"updated_date\": \"2006-04-10 00:00:00+00:00"
},
{
"path": "test/samples/expected/google.com.br",
"chars": 357,
"preview": "{\"domain_name\": \"google.com.br\", \"expiration_date\": \"2020-05-18 00:00:00+00:00\", \"updated_date\": [\"2019-04-17 00:00:00+0"
},
{
"path": "test/samples/expected/google.com.pe",
"chars": 250,
"preview": "{\"domain_name\": \"google.com.pe\", \"expiration_date\": null, \"updated_date\": null, \"registrar\": \"MarkMonitor Inc.\", \"regist"
},
{
"path": "test/samples/expected/google.com.sa",
"chars": 207,
"preview": "{\"domain_name\": \"google.com.sa\", \"expiration_date\": null, \"updated_date\": \"2019-02-06 00:00:00+00:00\", \"registrar\": null"
},
{
"path": "test/samples/expected/google.com.sg",
"chars": 457,
"preview": "{\"domain_name\": \"google.com.sg\", \"expiration_date\": \"2025-07-04 16:00:00+00:00\", \"updated_date\": \"2024-06-03 09:54:56+00"
},
{
"path": "test/samples/expected/google.com.tr",
"chars": 207,
"preview": "{\"domain_name\": \"google.com.tr\", \"expiration_date\": \"2019-08-22 00:00:00+00:00\", \"updated_date\": null, \"registrar\": null"
},
{
"path": "test/samples/expected/google.com.tw",
"chars": 247,
"preview": "{\"domain_name\": \"google.com.tw\", \"expiration_date\": \"2019-11-09 00:00:00+00:00\", \"updated_date\": null, \"registrar\": \"Mar"
},
{
"path": "test/samples/expected/google.com.ua",
"chars": 387,
"preview": "{\"domain_name\": \"google.com.ua\", \"expiration_date\": \"2019-12-04 00:00:00+02:00\", \"updated_date\": \"2018-11-02 11:29:08+02"
},
{
"path": "test/samples/expected/google.de",
"chars": 185,
"preview": "{\"domain_name\": \"google.de\", \"expiration_date\": null, \"updated_date\": \"2018-03-12 21:44:25+01:00\", \"registrar\": null, \"r"
},
{
"path": "test/samples/expected/google.do",
"chars": 288,
"preview": "{\"domain_name\": \"google.do\", \"expiration_date\": \"2020-03-08 04:00:00+00:00\", \"updated_date\": \"2019-02-07 17:54:31.560000"
},
{
"path": "test/samples/expected/google.fr",
"chars": 397,
"preview": "{\"domain_name\": \"google.fr\", \"expiration_date\": \"2026-12-30 17:16:48+00:00\", \"updated_date\": \"2025-12-03 10:12:00.351952"
},
{
"path": "test/samples/expected/google.hn",
"chars": 479,
"preview": "{\"domain_name\": \"google.hn\", \"expiration_date\": \"2020-03-07 05:00:00+00:00\", \"updated_date\": \"2019-02-03 10:43:28.837000"
},
{
"path": "test/samples/expected/google.hu",
"chars": 180,
"preview": "{\"domain_name\": \"google.hu\", \"expiration_date\": null, \"updated_date\": null, \"registrar\": null, \"registrar_url\": null, \"c"
},
{
"path": "test/samples/expected/google.ie",
"chars": 429,
"preview": "{\"domain_name\": \"google.ie\", \"expiration_date\": \"2022-03-21 14:13:27+00:00\", \"updated_date\": null, \"registrar\": \"Markmon"
},
{
"path": "test/samples/expected/google.it",
"chars": 257,
"preview": "{\"domain_name\": \"google.it\", \"expiration_date\": \"2019-04-21 00:00:00+00:00\", \"updated_date\": \"2018-05-07 00:54:15+00:00\""
},
{
"path": "test/samples/expected/google.kg",
"chars": 225,
"preview": "{\"domain_name\": \"GOOGLE.KG\", \"expiration_date\": \"2026-03-28 23:59:00+00:00\", \"updated_date\": \"2025-03-05 00:13:49+00:00\""
},
{
"path": "test/samples/expected/google.lu",
"chars": 169,
"preview": "{\"domain_name\": \"google.lu\", \"expiration_date\": null, \"updated_date\": null, \"registrar\": \"Markmonitor\", \"registrar_url\":"
},
{
"path": "test/samples/expected/google.lv",
"chars": 187,
"preview": "{\"domain_name\": \"google.lv\", \"expiration_date\": null, \"updated_date\": \"2024-09-03 17:12:28.647770+00:00\", \"registrar\": n"
},
{
"path": "test/samples/expected/google.mx",
"chars": 235,
"preview": "{\"domain_name\": \"google.mx\", \"expiration_date\": \"2020-05-11 00:00:00+00:00\", \"updated_date\": \"2019-04-12 00:00:00+00:00\""
},
{
"path": "test/samples/expected/google.ro",
"chars": 231,
"preview": "{\"domain_name\": \"google.ro\", \"expiration_date\": \"2019-09-17 00:00:00+00:00\", \"updated_date\": null, \"registrar\": \"MarkMon"
},
{
"path": "test/samples/expected/google.sk",
"chars": 242,
"preview": "{\"domain_name\": \"google.sk\", \"expiration_date\": \"2019-07-24 00:00:00+00:00\", \"updated_date\": \"2018-07-03 00:00:00+00:00\""
},
{
"path": "test/samples/expected/imdb.com",
"chars": 268,
"preview": "{\"domain_name\": \"IMDB.COM\", \"expiration_date\": \"2016-01-04 00:00:00+00:00\", \"updated_date\": \"2008-03-28 00:00:00+00:00\","
},
{
"path": "test/samples/expected/liechtenstein.li",
"chars": 198,
"preview": "{\"domain_name\": \"liechtenstein.li\", \"expiration_date\": null, \"updated_date\": null, \"registrar\": \"switchplus AG\", \"regist"
},
{
"path": "test/samples/expected/microsoft.com",
"chars": 346,
"preview": "{\"domain_name\": \"MICROSOFT.COM\", \"expiration_date\": \"2014-05-03 00:00:00+00:00\", \"updated_date\": \"2006-10-10 00:00:00+00"
},
{
"path": "test/samples/expected/nic.live",
"chars": 368,
"preview": "{\"domain_name\": \"nic.live\", \"expiration_date\": \"2025-04-27 22:04:24+00:00\", \"updated_date\": \"2024-06-11 22:04:34+00:00\","
},
{
"path": "test/samples/expected/nyan.cat",
"chars": 298,
"preview": "{\"domain_name\": \"nyan.cat\", \"expiration_date\": \"2018-04-13 19:52:17.635000+00:00\", \"updated_date\": \"2017-07-07 17:24:23."
},
{
"path": "test/samples/expected/reddit.com",
"chars": 311,
"preview": "{\"domain_name\": \"REDDIT.COM\", \"expiration_date\": \"2009-04-29 00:00:00+00:00\", \"updated_date\": \"2008-06-04 00:00:00+00:00"
},
{
"path": "test/samples/expected/research.google",
"chars": 911,
"preview": "{\"domain_name\": \"research.google\", \"registrar\": \"MarkMonitor Inc.\", \"whois_server\": \"whois.nic.google\", \"referral_url\": "
},
{
"path": "test/samples/expected/sapo.pt",
"chars": 209,
"preview": "{\"domain_name\": \"sapo.pt\", \"expiration_date\": \"2019-11-02 23:59:00+00:00\", \"updated_date\": null, \"registrar\": null, \"reg"
},
{
"path": "test/samples/expected/sbc.org.hk",
"chars": 256,
"preview": "{\"domain_name\": \"SBC.ORG.HK\", \"expiration_date\": \"2020-03-07 00:00:00+00:00\", \"updated_date\": null, \"registrar\": \"Hong K"
},
{
"path": "test/samples/expected/seal.jobs",
"chars": 271,
"preview": "{\"domain_name\": \"SEAL.JOBS\", \"expiration_date\": \"2022-02-25 06:26:32+00:00\", \"updated_date\": \"2018-03-22 13:44:07+00:00\""
},
{
"path": "test/samples/expected/shazow.net",
"chars": 247,
"preview": "{\"domain_name\": \"SHAZOW.NET\", \"expiration_date\": \"2009-09-13 00:00:00+00:00\", \"updated_date\": \"2007-08-08 00:00:00+00:00"
},
{
"path": "test/samples/expected/slashdot.org",
"chars": 203,
"preview": "{\"domain_name\": \"SLASHDOT.ORG\", \"expiration_date\": \"2008-10-04 04:00:00+00:00\", \"updated_date\": null, \"registrar\": \"Tuco"
},
{
"path": "test/samples/expected/squatter.net",
"chars": 263,
"preview": "{\"domain_name\": \"SQUATTER.NET\", \"expiration_date\": \"2008-11-06 00:00:00+00:00\", \"updated_date\": \"2007-11-07 00:00:00+00:"
},
{
"path": "test/samples/expected/titech.ac.jp",
"chars": 202,
"preview": "{\"domain_name\": \"TITECH.AC.JP\", \"expiration_date\": null, \"updated_date\": \"2025-05-29 10:45:59+09:00\", \"registrar\": null,"
},
{
"path": "test/samples/expected/translate.goog",
"chars": 898,
"preview": "{\"domain_name\": \"translate.goog\", \"registrar\": \"MarkMonitor Inc.\", \"whois_server\": \"whois.nic.google\", \"referral_url\": N"
},
{
"path": "test/samples/expected/urlowl.com",
"chars": 326,
"preview": "{\"domain_name\": \"URLOWL.COM\", \"expiration_date\": \"2018-02-21 19:24:57+00:00\", \"updated_date\": \"2017-03-31 07:36:34+00:00"
},
{
"path": "test/samples/expected/web.de",
"chars": 212,
"preview": "{\"domain_name\": \"web.de\", \"expiration_date\": null, \"updated_date\": [\"2016-04-11 11:09:54+02:00\", \"2011-08-10 17:09:10+02"
},
{
"path": "test/samples/expected/willhaben.at",
"chars": 243,
"preview": "{\"domain_name\": \"willhaben.at\", \"expiration_date\": null, \"updated_date\": [\"2014-12-04 14:57:44+00:00\", \"2014-04-22 10:08"
},
{
"path": "test/samples/expected/www.gov.uk",
"chars": 273,
"preview": "{\"domain_name\": \"gov.uk\", \"expiration_date\": null, \"updated_date\": null, \"registrar\": \"No registrar listed. This domain"
},
{
"path": "test/samples/expected/yahoo.co.jp",
"chars": 225,
"preview": "{\"domain_name\": \"YAHOO.CO.JP\", \"expiration_date\": null, \"updated_date\": \"2024-10-01 01:00:44+09:00\", \"registrar\": null, "
},
{
"path": "test/samples/expected/yahoo.co.nz",
"chars": 458,
"preview": "{\"domain_name\": \"yahoo.co.nz\", \"expiration_date\": null, \"updated_date\": \"2025-04-07 09:13:29+00:00\", \"registrar\": \"MarkM"
},
{
"path": "test/samples/expected/yandex.kz",
"chars": 293,
"preview": "{\"domain_name\": \"yandex.kz\", \"expiration_date\": null, \"updated_date\": \"2022-08-04 10:20:10+00:00\", \"registrar\": \"HOSTER."
},
{
"path": "test/samples/expected/yandex.ru",
"chars": 242,
"preview": "{\"domain_name\": \"YANDEX.RU\", \"expiration_date\": \"2018-09-30 21:00:00+00:00\", \"updated_date\": null, \"registrar\": \"RU-CENT"
},
{
"path": "test/samples/whois/abc.rs",
"chars": 1240,
"preview": "% The data in the Whois database are provided by RNIDS\n% for information purposes only and to assist persons in obtainin"
},
{
"path": "test/samples/whois/abc.xyz",
"chars": 2066,
"preview": "[whois.nic.xyz]\nDomain Name: ABC.XYZ\nRegistry Domain ID: D2192285-CNIC\nRegistrar WHOIS Server: whois.markmonitor.com\nReg"
},
{
"path": "test/samples/whois/about.us",
"chars": 3949,
"preview": "Domain Name: about.us\r\nRegistry Domain ID: D651466-US\r\nRegistrar WHOIS Server:\r\nRegistrar URL: www.neustarregistry.biz\r\n"
},
{
"path": "test/samples/whois/abv.bg",
"chars": 990,
"preview": "\r\nDOMAIN NAME: abv.bg\r\nrequested on: see at www.register.bg\r\nprocessed from: see at www.register.bg\r\nactivated on: see a"
},
{
"path": "test/samples/whois/afip.gob.ar",
"chars": 1140,
"preview": "% La información a la que estás accediendo se provee exclusivamente para\n% fines relacionados con operaciones sobre nomb"
},
{
"path": "test/samples/whois/allegro.pl",
"chars": 1221,
"preview": "\r\nDOMAIN NAME: allegro.pl\r\nregistrant type: organization\r\nnameservers: dns1.allegro.pl. [91.19"
},
{
"path": "test/samples/whois/amazon.co.uk",
"chars": 1581,
"preview": "\n Domain name:\n amazon.co.uk\n\n Data validation:\n Nominet was able to match the registrant's name and"
},
{
"path": "test/samples/whois/app.nl",
"chars": 470,
"preview": "Domain name: app.nl\r\nStatus: active\r\n\r\nReseller:\r\n Hoasted\r\n Weesperstraat 61\r\n 3512AB Amsterdam\r\n Netherla"
},
{
"path": "test/samples/whois/brainly.lat",
"chars": 6550,
"preview": "Domain Name: brainly.lat\nRegistry Domain ID: DOMAIN_497-LAT\nRegistrar WHOIS Server:\nRegistrar URL: http://www.instra.com"
},
{
"path": "test/samples/whois/cbc.ca",
"chars": 2705,
"preview": "Domain Name: cbc.ca\nRegistry Domain ID: D345334-CIRA\nRegistrar WHOIS Server: whois.ca.fury.ca\nRegistrar URL: authenticwe"
},
{
"path": "test/samples/whois/cyberciti.biz",
"chars": 3831,
"preview": "Domain Name: CYBERCITI.BIZ\nRegistry Domain ID: D3209108-BIZ\nRegistrar WHOIS Server: whois.godaddy.com\nRegistrar URL: htt"
},
{
"path": "test/samples/whois/davidwalsh.name",
"chars": 1689,
"preview": "\r\nDisclaimer: VeriSign, Inc. makes every effort to maintain the\r\ncompleteness and accuracy of the Whois data, but cannot"
},
{
"path": "test/samples/whois/digg.com",
"chars": 4420,
"preview": "\nWhois Server Version 2.0\n\nDomain names in the .com and .net domains can now be registered\nwith many different competing"
},
{
"path": "test/samples/whois/druid.fi",
"chars": 949,
"preview": "domain.............: druid.fi\nstatus.............: Registered\ncreated............: 18.7.2012 04:04:23\nexpires..........."
},
{
"path": "test/samples/whois/drupalcamp.by",
"chars": 387,
"preview": "Domain Name: drupalcamp.by\nRegistrar: Active Technologies LLC\nPerson: HIDDEN!\nEmail: HIDDEN! Details are available at ht"
},
{
"path": "test/samples/whois/eurid.eu",
"chars": 3256,
"preview": "% The WHOIS service offered by EURid and the access to the records\n% in the EURid WHOIS database are provided for inform"
},
{
"path": "test/samples/whois/google.ai",
"chars": 2006,
"preview": "Domain Name: google.ai\nRegistry Domain ID: 6eddd132ab114b12bd2bd4cf9c492a04-DONUTS\nRegistrar WHOIS Server: whois.markmon"
},
{
"path": "test/samples/whois/google.at",
"chars": 2693,
"preview": "% Copyright (c)2019 by NIC.AT (1)\n%\n% Restricted rights.\n%\n% Except for agreed Internet operational purposes, no pa"
},
{
"path": "test/samples/whois/google.cl",
"chars": 638,
"preview": "%%\n%% This is the NIC Chile Whois server (whois.nic.cl).\n%%\n%% Rights restricted by copyright.\n%% See https://www.nic.cl"
},
{
"path": "test/samples/whois/google.co.cr",
"chars": 3723,
"preview": "% *The information provided by WHOIS is supplied by NIC Costa Rica's database of registered domains. This option has th"
},
{
"path": "test/samples/whois/google.co.id",
"chars": 981,
"preview": "# whois.id\n\nDomain Name: GOOGLE.CO.ID\nRegistry Domain ID: 166626_DOMAIN_ID-ID\nRegistrar WHOIS Server:\nRegistrar URL: www"
},
{
"path": "test/samples/whois/google.co.il",
"chars": 2753,
"preview": "% The data in the WHOIS database of the .il registry is provided\n% by ISOC-IL for information purposes, and to assist pe"
},
{
"path": "test/samples/whois/google.co.ve",
"chars": 1330,
"preview": "Servidor Whois del Centro de Información de Red de Venezuela (NIC.VE)\n\nEste servidor contiene información autoritativa e"
},
{
"path": "test/samples/whois/google.com",
"chars": 10251,
"preview": "\nWhois Server Version 2.0\n\nDomain names in the .com and .net domains can now be registered\nwith many different competing"
},
{
"path": "test/samples/whois/google.com.br",
"chars": 1587,
"preview": "% Copyright (c) Nic.br\n% The use of the data below is only permitted as described in\n% full by the terms of use at htt"
},
{
"path": "test/samples/whois/google.com.pe",
"chars": 1313,
"preview": "Domain Name: google.com.pe\nWHOIS Server: NIC .PE\nSponsoring Registrar: MarkMonitor Inc.\nDomain Status: clientTransferPro"
},
{
"path": "test/samples/whois/google.com.sa",
"chars": 582,
"preview": "% SaudiNIC Whois server.\n% Rights restricted by copyright.\n% http://nic.sa/en/view/whois-cmd-copyright\n\nDomain Name: goo"
},
{
"path": "test/samples/whois/google.com.sg",
"chars": 1033,
"preview": "Domain Name: google.com.sg\nUpdated Date: 2024-06-03T09:54:56Z\nCreation Date: 2002-07-05T09:42:32Z\nRegistry Expiry Date: "
},
{
"path": "test/samples/whois/google.com.tr",
"chars": 1033,
"preview": "** Domain Name: google.com.tr\n\n** Registrant:\n Google LLC\n 1600 Amphitheatre Parkway\n Mountain View\n Out of Turk"
},
{
"path": "test/samples/whois/google.com.tw",
"chars": 862,
"preview": "Domain Name: google.com.tw\n Domain Status: clientUpdateProhibited,clientTransferProhibited,clientDeleteProhibited\n R"
},
{
"path": "test/samples/whois/google.com.ua",
"chars": 2514,
"preview": "% Request from 80.254.2.190\n% This is the Ukrainian Whois query server #F.\n% The Whois is subject to Terms of use\n% See "
},
{
"path": "test/samples/whois/google.de",
"chars": 766,
"preview": "% Restricted rights.\n%\n% Terms and Conditions of Use\n%\n% The above data may only be used within the scope of technical o"
},
{
"path": "test/samples/whois/google.do",
"chars": 3312,
"preview": "Domain Name: google.do\nWHOIS Server: whois.nic.do\nUpdated Date: 2019-02-07T17:54:31.560Z\nCreation Date: 2010-03-08T04:00"
},
{
"path": "test/samples/whois/google.fr",
"chars": 4515,
"preview": "%%\n%% This is the AFNIC Whois server.\n%%\n%% complete date format: YYYY-MM-DDThh:mm:ssZ\n%%\n%% Rights restricted by copyri"
},
{
"path": "test/samples/whois/google.hn",
"chars": 2783,
"preview": "Domain Name: google.hn\nDomain ID: 801220-CoCCA\nWHOIS Server: whois.nic.hn\nUpdated Date: 2019-02-03T10:43:28.837Z\nCreatio"
},
{
"path": "test/samples/whois/google.hu",
"chars": 215,
"preview": "% Whois server 4.0 serving the hu ccTLD\n\n\ndomain: google.hu\nrecord created: 2000-03-03\nTovabbi adatokert ld.:\nht"
},
{
"path": "test/samples/whois/google.ie",
"chars": 959,
"preview": "# whois.weare.ie\n\nDomain Name: google.ie\nRegistry Domain ID: 762999-IEDR\nRegistrar WHOIS Server: whois.weare.ie\nRegistra"
},
{
"path": "test/samples/whois/google.it",
"chars": 1940,
"preview": "*********************************************************************\n* Please note that the following result could be a"
},
{
"path": "test/samples/whois/google.kg",
"chars": 959,
"preview": "% This is the .kg ccTLD Whois server\n% Register your own domain at https://www.cctld.kg\n% Whois web service - https://ww"
},
{
"path": "test/samples/whois/google.lu",
"chars": 1903,
"preview": "% Access to RESTENA DNS-LU WHOIS information is provided to assist persons\n% in determining the content of a domain name"
},
{
"path": "test/samples/whois/google.lv",
"chars": 1423,
"preview": "[Domain]\nDomain: google.lv\nStatus: active\n\n[Holder]\n Type: Legal person\n Name: Google LLC\n Address: 1600 Amphit"
},
{
"path": "test/samples/whois/google.mx",
"chars": 3442,
"preview": "Domain Name: google.mx\n\nCreated On: 2009-05-12\nExpiration Date: 2020-05-11\nLast Updated On: 2019-04-12\n"
},
{
"path": "test/samples/whois/google.ro",
"chars": 1894,
"preview": "% The WHOIS service offered by ROTLD and the access to the records in the ROTLD WHOIS database\n% are provided for inform"
},
{
"path": "test/samples/whois/google.sk",
"chars": 1574,
"preview": "Domain: google.sk\nRegistrant: Google\nAdmin Contact: Google\nTech C"
},
{
"path": "test/samples/whois/imdb.com",
"chars": 5581,
"preview": "\nWhois Server Version 2.0\n\nDomain names in the .com and .net domains can now be registered\nwith many different competing"
},
{
"path": "test/samples/whois/liechtenstein.li",
"chars": 339,
"preview": "\nDomain name:\nliechtenstein.li\n\nHolder of domain name:\nLiechtensteinische Landesverwaltung\nMartin Matt\nHeiligkreuz 8\nLI-"
},
{
"path": "test/samples/whois/microsoft.com",
"chars": 11733,
"preview": "\nWhois Server Version 2.0\n\nDomain names in the .com and .net domains can now be registered\nwith many different competing"
},
{
"path": "test/samples/whois/nic.live",
"chars": 7361,
"preview": "% IANA WHOIS server\n% for more information on IANA, visit http://www.iana.org\n% This query returned 1 object\n\nrefer: "
},
{
"path": "test/samples/whois/nyan.cat",
"chars": 3460,
"preview": "Domain Name: nyan.cat\r\nRegistry Domain ID: 826532-D\r\nRegistrar WHOIS Server: whois.gandi.net\r\nRegistrar URL: https://www"
},
{
"path": "test/samples/whois/reddit.com",
"chars": 5057,
"preview": "\nWhois Server Version 2.0\n\nDomain names in the .com and .net domains can now be registered\nwith many different competing"
},
{
"path": "test/samples/whois/sapo.pt",
"chars": 991,
"preview": "Domain: sapo.pt\r\nDomain Status: Registered\r\nCreation Date: 30/10/2002 00:00:00\r\nExpiration Date: 02/11/2019 23:59:00\r\nOw"
},
{
"path": "test/samples/whois/sbc.org.hk",
"chars": 3639,
"preview": "\n -------------------------------------------------------------------------------\n Whois server by HKIRC\n --------------"
},
{
"path": "test/samples/whois/seal.jobs",
"chars": 5590,
"preview": " Domain Name: SEAL.JOBS\n Registry Domain ID: 128797919_DOMAIN_JOBS-VRSN\n Registrar WHOIS Server: whois.godaddy.com"
},
{
"path": "test/samples/whois/shazow.net",
"chars": 4828,
"preview": "\nWhois Server Version 2.0\n\nDomain names in the .com and .net domains can now be registered\nwith many different competing"
},
{
"path": "test/samples/whois/slashdot.org",
"chars": 2874,
"preview": "NOTICE: Access to .ORG WHOIS information is provided to assist persons in \r\ndetermining the contents of a domain name re"
},
{
"path": "test/samples/whois/squatter.net",
"chars": 4147,
"preview": "\nWhois Server Version 2.0\n\nDomain names in the .com and .net domains can now be registered\nwith many different competing"
},
{
"path": "test/samples/whois/titech.ac.jp",
"chars": 939,
"preview": "[ JPRS database provides information on network administration. Its use is ]\n[ restricted to network administration p"
},
{
"path": "test/samples/whois/urlowl.com",
"chars": 2990,
"preview": "\n\n Domain Name: URLOWL.COM\n Registry Domain ID: 1781848049_DOMAIN_COM-VRSN\n Registrar WHOIS Server: whois.dynadot."
},
{
"path": "test/samples/whois/web.de",
"chars": 2838,
"preview": "% Copyright (c) 2010 by DENIC\r\n% Version: 2.0\r\n%\r\n% Restricted rights.\r\n%\r\n% Terms and Conditions of Use\r\n%\r\n% The data "
},
{
"path": "test/samples/whois/willhaben.at",
"chars": 2211,
"preview": "% Copyright (c)2017 by NIC.AT (1)\r\n%\r\n% Restricted rights.\r\n%\r\n% Except for agreed Internet operational purposes, no"
},
{
"path": "test/samples/whois/www.gov.uk",
"chars": 1450,
"preview": " Domain name:\n gov.uk\n\n Registrant:\n UK Cabinet Office\n\n Registrant type:\n UK Government B"
},
{
"path": "test/samples/whois/yahoo.co.jp",
"chars": 1021,
"preview": "[ JPRS database provides information on network administration. Its use is ]\n[ restricted to network administration p"
},
{
"path": "test/samples/whois/yahoo.co.nz",
"chars": 2299,
"preview": "Domain Name: yahoo.co.nz\nRegistrar URL: https://www.markmonitor.com/\nUpdated Date: 2025-04-07T09:13:29Z\nCreation Date: 1"
},
{
"path": "test/samples/whois/yandex.kz",
"chars": 1513,
"preview": "Whois Server for the KZ top level domain name.\r\nThis server is maintained by KazNIC Organization, a ccTLD manager for Ka"
},
{
"path": "test/samples/whois/yandex.ru",
"chars": 717,
"preview": "% By submitting a query to RIPN's Whois Service\r\n% you agree to abide by the following terms of use:\r\n% http://www.ripn."
},
{
"path": "test/test_ipv6.py",
"chars": 1519,
"preview": "import unittest\nfrom unittest.mock import patch\nimport socket\n\nfrom whois.whois import NICClient\n\n\nclass TestNICClientIP"
},
{
"path": "test/test_main.py",
"chars": 1649,
"preview": "# coding=utf-8\n\nimport unittest\n\nfrom whois import extract_domain\n\n\nclass TestExtractDomain(unittest.TestCase):\n def "
},
{
"path": "test/test_nicclient.py",
"chars": 356,
"preview": "# coding=utf-8\n\nimport unittest\n\nfrom whois.whois import NICClient\n\n\nclass TestNICClient(unittest.TestCase):\n def set"
},
{
"path": "test/test_parser.py",
"chars": 31720,
"preview": "# -*- coding: utf-8 -*-\n\nimport datetime\nimport json\nimport os\nimport unittest\nfrom glob import glob\n\nfrom dateutil.tz i"
},
{
"path": "test/test_query.py",
"chars": 1446,
"preview": "# coding=utf-8\n\nimport unittest\n\nfrom whois import whois\n\n\nclass TestQuery(unittest.TestCase):\n def test_simple_ascii"
},
{
"path": "whois/__init__.py",
"chars": 6643,
"preview": "# -*- coding: utf-8 -*-\n\nimport logging\nimport os\nimport re\nimport socket\nimport subprocess\nimport sys\nfrom typing impor"
},
{
"path": "whois/exceptions.py",
"chars": 434,
"preview": "class PywhoisError(Exception):\n pass\n\n#backwards compatibility\nclass WhoisError(PywhoisError):\n pass\n\n\nclass Unkno"
},
{
"path": "whois/parser.py",
"chars": 157802,
"preview": "# -*- coding: utf-8 -*-\n\n# parser.py - Module for parsing whois response data\n# Copyright (c) 2008 Andrey Petrov\n#\n# Thi"
},
{
"path": "whois/time_zones.py",
"chars": 1275,
"preview": "_tz_string = \"\"\"-12 Y\n-11 X NUT SST\n-10 W CKT HAST HST TAHT TKT\n-9 V AKST GAMT GIT HADT HNY\n-8 U AKDT CIST HAY HNP PST P"
},
{
"path": "whois/whois.py",
"chars": 22697,
"preview": "# -*- coding: utf-8 -*-\n\n\"\"\"\nWhois client for python\n\ntransliteration of:\nhttp://www.opensource.apple.com/source/adv_cmd"
}
]
About this extraction
This page contains the full source code of the richardpenman/whois GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 150 files (411.5 KB), approximately 121.0k tokens, and a symbol index with 289 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.