Improvements to cleaning and normalization

master
Sven Slootweg 11 years ago
parent b6b5e80f7b
commit ad9a2da0e4

@ -153,22 +153,22 @@ def parse_raw_whois(raw_data, normalized=[]):
chunk = match.group(1)
for match in re.findall("[ ]+(.+)\n", chunk):
try:
data["name_servers"].append(match)
data["name_servers"].append(match.strip())
except KeyError, e:
data["name_servers"] = [match]
data["name_servers"] = [match.strip()]
# Nominet also needs some special attention
match = re.search(" Registrar:\n (.+)\n", segment)
if match is not None:
data["registrar"] = [match.group(1)]
data["registrar"] = [match.group(1).strip()]
match = re.search(" Name servers:([\s\S]*?\n)\n", segment)
if match is not None:
chunk = match.group(1)
for match in re.findall(" (.+)\n", chunk):
match = match.split()[0]
try:
data["name_servers"].append(match)
data["name_servers"].append(match.strip())
except KeyError, e:
data["name_servers"] = [match]
data["name_servers"] = [match.strip()]
# Fill all missing values with None
for rule_key, rule_regexes in grammar['_data'].iteritems():
@ -244,11 +244,21 @@ def normalize_data(data, normalized):
else:
contact[key] = [item.lower() for item in contact[key]]
for key in ("name", "street", "city", "state", "country"):
if key in contact and contact[key] is not None and (normalized == True or key in normalized):
for key in ("state", "country", "organization"):
if key in contact and contact[key] is not None and (normalized == True or key in normalized) and contact[key].isupper():
if len(contact[key]) > 2: # Two letter values are usually abbreviations and need to be in uppercase
contact[key] = " ".join(word.capitalize() for word in contact[key].strip(", ").split(" "))
for key in ("name", "street", "city"):
if key in contact and contact[key] is not None and (normalized == True or key in normalized) and (contact[key].islower() or contact[key].isupper()):
if len(contact[key]) > 2: # Two letter values are usually abbreviations and need to be in original case
contact[key] = " ".join(word.capitalize() for word in contact[key].strip(", ").split(" "))
for key in contact.keys():
try:
contact[key] = contact[key].strip(", ")
except AttributeError, e:
pass # Not a string
return data
def parse_dates(dates):
@ -501,6 +511,8 @@ def parse_registrants(data):
for key in obj.keys():
if obj[key] is None or obj[key].strip() == "": # Just chomp all surrounding whitespace
del obj[key]
else:
obj[key] = obj[key].strip()
if "phone_ext" in obj:
if "phone" in obj:
obj["phone"] += "ext. %s" % obj["phone_ext"]

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1 +1 @@
{"status": ["Active"], "updated_date": ["2013-06-01T01:05:07"], "contacts": {"admin": null, "tech": null, "registrant": {"fax": "85222155200", "name": "Alibaba Group Holding Limited", "phone": "85222155100", "street": "George Town\nfourth Floor, One Capital Place\np.o. Box 847", "postalcode": "KY1-1103", "email": "dnsadmin@hk.alibaba-inc.com"}, "billing": null}, "expiration_date": ["2014-05-31T00:00:00", "2014-05-31T00:00:00"], "id": null, "creation_date": ["2001-05-08T00:00:00", "2001-05-08T00:00:00"], "raw": ["[ JPRS database provides information on network administration. Its use is ]\n[ restricted to network administration purposes. For further information, ]\n[ use 'whois -h whois.jprs.jp help'. To suppress Japanese output, add'/e' ]\n[ at the end of command, e.g. 'whois -h whois.jprs.jp xxx/e'. ]\n\nDomain Information:\n[Domain Name] ALIBABA.JP\n\n[Registrant] Alibaba Group Holding Limited\n\n[Name Server] ns1.markmonitor.com\n[Name Server] ns6.markmonitor.com\n[Name Server] ns4.markmonitor.com\n[Name Server] ns3.markmonitor.com\n[Name Server] ns7.markmonitor.com\n[Name Server] ns2.markmonitor.com\n[Name Server] ns5.markmonitor.com\n[Signing Key] \n\n[Created on] 2001/05/08\n[Expires on] 2014/05/31\n[Status] Active\n[Last Updated] 2013/06/01 01:05:07 (JST)\n\nContact Information:\n[Name] Alibaba Group Holding Limited\n[Email] dnsadmin@hk.alibaba-inc.com\n[Web Page] \n[Postal code] KY1-1103\n[Postal Address] George Town\n Fourth Floor, One Capital Place\n P.O. Box 847\n[Phone] 85222155100\n[Fax] 85222155200\n\n\n"], "whois_server": null, "registrar": null, "name_servers": ["ns1.markmonitor.com", "ns6.markmonitor.com", "ns4.markmonitor.com", "ns3.markmonitor.com", "ns7.markmonitor.com", "ns2.markmonitor.com", "ns5.markmonitor.com"], "emails": []}
{"status": ["Active"], "updated_date": ["2013-06-01T01:05:07"], "contacts": {"admin": null, "tech": null, "registrant": {"fax": "85222155200", "name": "Alibaba Group Holding Limited", "phone": "85222155100", "street": "George Town\nFourth Floor, One Capital Place\nP.O. Box 847", "postalcode": "KY1-1103", "email": "dnsadmin@hk.alibaba-inc.com"}, "billing": null}, "expiration_date": ["2014-05-31T00:00:00", "2014-05-31T00:00:00"], "id": null, "creation_date": ["2001-05-08T00:00:00", "2001-05-08T00:00:00"], "raw": ["[ JPRS database provides information on network administration. Its use is ]\n[ restricted to network administration purposes. For further information, ]\n[ use 'whois -h whois.jprs.jp help'. To suppress Japanese output, add'/e' ]\n[ at the end of command, e.g. 'whois -h whois.jprs.jp xxx/e'. ]\n\nDomain Information:\n[Domain Name] ALIBABA.JP\n\n[Registrant] Alibaba Group Holding Limited\n\n[Name Server] ns1.markmonitor.com\n[Name Server] ns6.markmonitor.com\n[Name Server] ns4.markmonitor.com\n[Name Server] ns3.markmonitor.com\n[Name Server] ns7.markmonitor.com\n[Name Server] ns2.markmonitor.com\n[Name Server] ns5.markmonitor.com\n[Signing Key] \n\n[Created on] 2001/05/08\n[Expires on] 2014/05/31\n[Status] Active\n[Last Updated] 2013/06/01 01:05:07 (JST)\n\nContact Information:\n[Name] Alibaba Group Holding Limited\n[Email] dnsadmin@hk.alibaba-inc.com\n[Web Page] \n[Postal code] KY1-1103\n[Postal Address] George Town\n Fourth Floor, One Capital Place\n P.O. Box 847\n[Phone] 85222155100\n[Fax] 85222155200\n\n\n"], "whois_server": null, "registrar": null, "name_servers": ["ns1.markmonitor.com", "ns6.markmonitor.com", "ns4.markmonitor.com", "ns3.markmonitor.com", "ns7.markmonitor.com", "ns2.markmonitor.com", "ns5.markmonitor.com"], "emails": []}

@ -1 +1 @@
{"status": ["Client Transfer Prohibited", "Renewperiod"], "updated_date": ["2013-11-16T12:22:49"], "contacts": {"admin": {"city": "Panama", "handle": "INTErkiewm5586ze", "name": "Domain Administrator", "phone": "+507.65995877", "street": "Attn: Anonnews.org\naptds. 0850-00056", "country": "PA", "postalcode": "Zona 15", "organization": "Fundacion Private Whois", "email": "52300fa7x2yb6oe6@5225b4d0pi3627q9.privatewhois.net"}, "tech": {"city": "Panama", "handle": "INTEl92g5h18b12w", "name": "Domain Administrator", "phone": "+507.65995877", "street": "Attn: Anonnews.org\naptds. 0850-00056", "country": "PA", "postalcode": "Zona 15", "organization": "Fundacion Private Whois", "email": "52300fa6vwq931xf@5225b4d0pi3627q9.privatewhois.net"}, "registrant": {"city": "Panama", "handle": "INTE381xro4k9z0m", "name": "Domain Administrator", "phone": "+507.65995877", "street": "Attn: Anonnews.org\naptds. 0850-00056", "country": "PA", "postalcode": "Zona 15", "organization": "Fundacion Private Whois", "email": "52300fa6c2nzfacc@5225b4d0pi3627q9.privatewhois.net"}, "billing": null}, "expiration_date": ["2014-12-12T20:31:54"], "emails": [], "raw": ["Access to .ORG WHOIS information is provided to assist persons in \ndetermining the contents of a domain name registration record in the \nPublic Interest Registry registry database. The data in this record is provided by \nPublic Interest Registry for informational purposes only, and Public Interest Registry does not \nguarantee its accuracy. This service is intended only for query-based \naccess. You agree that you will use this data only for lawful purposes \nand that, under no circumstances will you use this data to: (a) allow, \nenable, or otherwise support the transmission by e-mail, telephone, or \nfacsimile of mass unsolicited, commercial advertising or solicitations \nto entities other than the data recipient's own existing customers; or \n(b) enable high volume, automated, electronic processes that send \nqueries or data to the systems of Registry Operator, a Registrar, or \nAfilias except as reasonably necessary to register domain names or \nmodify existing registrations. All rights reserved. Public Interest Registry reserves \nthe right to modify these terms at any time. By submitting this query, \nyou agree to abide by this policy. \n\nDomain ID:D160909486-LROR\nDomain Name:ANONNEWS.ORG\nCreated On:12-Dec-2010 20:31:54 UTC\nLast Updated On:16-Nov-2013 12:22:49 UTC\nExpiration Date:12-Dec-2014 20:31:54 UTC\nSponsoring Registrar:Internet.bs Corp. (R1601-LROR)\nStatus:CLIENT TRANSFER PROHIBITED\nStatus:RENEWPERIOD\nRegistrant ID:INTE381xro4k9z0m\nRegistrant Name:Domain Administrator\nRegistrant Organization:Fundacion Private Whois\nRegistrant Street1:Attn: anonnews.org\nRegistrant Street2:Aptds. 0850-00056\nRegistrant Street3:\nRegistrant City:Panama\nRegistrant State/Province:\nRegistrant Postal Code:Zona 15\nRegistrant Country:PA\nRegistrant Phone:+507.65995877\nRegistrant Phone Ext.:\nRegistrant FAX:\nRegistrant FAX Ext.:\nRegistrant Email:52300fa6c2nzfacc@5225b4d0pi3627q9.privatewhois.net\nAdmin ID:INTErkiewm5586ze\nAdmin Name:Domain Administrator\nAdmin Organization:Fundacion Private Whois\nAdmin Street1:Attn: anonnews.org\nAdmin Street2:Aptds. 0850-00056\nAdmin Street3:\nAdmin City:Panama\nAdmin State/Province:\nAdmin Postal Code:Zona 15\nAdmin Country:PA\nAdmin Phone:+507.65995877\nAdmin Phone Ext.:\nAdmin FAX:\nAdmin FAX Ext.:\nAdmin Email:52300fa7x2yb6oe6@5225b4d0pi3627q9.privatewhois.net\nTech ID:INTEl92g5h18b12w\nTech Name:Domain Administrator\nTech Organization:Fundacion Private Whois\nTech Street1:Attn: anonnews.org\nTech Street2:Aptds. 0850-00056\nTech Street3:\nTech City:Panama\nTech State/Province:\nTech Postal Code:Zona 15\nTech Country:PA\nTech Phone:+507.65995877\nTech Phone Ext.:\nTech FAX:\nTech FAX Ext.:\nTech Email:52300fa6vwq931xf@5225b4d0pi3627q9.privatewhois.net\nName Server:LISA.NS.CLOUDFLARE.COM\nName Server:ED.NS.CLOUDFLARE.COM\nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nDNSSEC:Unsigned\n\n\n\n"], "whois_server": null, "registrar": ["Internet.bs Corp. (R1601-LROR)"], "name_servers": ["lisa.ns.cloudflare.com", "ed.ns.cloudflare.com"], "creation_date": ["2010-12-12T20:31:54", "2010-12-12T20:31:54"], "id": ["D160909486-LROR"]}
{"status": ["Client Transfer Prohibited", "Renewperiod"], "updated_date": ["2013-11-16T12:22:49"], "contacts": {"admin": {"city": "Panama", "handle": "INTErkiewm5586ze", "name": "Domain Administrator", "phone": "+507.65995877", "street": "Attn: anonnews.org\nAptds. 0850-00056", "country": "PA", "postalcode": "Zona 15", "organization": "Fundacion Private Whois", "email": "52300fa7x2yb6oe6@5225b4d0pi3627q9.privatewhois.net"}, "tech": {"city": "Panama", "handle": "INTEl92g5h18b12w", "name": "Domain Administrator", "phone": "+507.65995877", "street": "Attn: anonnews.org\nAptds. 0850-00056", "country": "PA", "postalcode": "Zona 15", "organization": "Fundacion Private Whois", "email": "52300fa6vwq931xf@5225b4d0pi3627q9.privatewhois.net"}, "registrant": {"city": "Panama", "handle": "INTE381xro4k9z0m", "name": "Domain Administrator", "phone": "+507.65995877", "street": "Attn: anonnews.org\nAptds. 0850-00056", "country": "PA", "postalcode": "Zona 15", "organization": "Fundacion Private Whois", "email": "52300fa6c2nzfacc@5225b4d0pi3627q9.privatewhois.net"}, "billing": null}, "expiration_date": ["2014-12-12T20:31:54"], "emails": [], "raw": ["Access to .ORG WHOIS information is provided to assist persons in \ndetermining the contents of a domain name registration record in the \nPublic Interest Registry registry database. The data in this record is provided by \nPublic Interest Registry for informational purposes only, and Public Interest Registry does not \nguarantee its accuracy. This service is intended only for query-based \naccess. You agree that you will use this data only for lawful purposes \nand that, under no circumstances will you use this data to: (a) allow, \nenable, or otherwise support the transmission by e-mail, telephone, or \nfacsimile of mass unsolicited, commercial advertising or solicitations \nto entities other than the data recipient's own existing customers; or \n(b) enable high volume, automated, electronic processes that send \nqueries or data to the systems of Registry Operator, a Registrar, or \nAfilias except as reasonably necessary to register domain names or \nmodify existing registrations. All rights reserved. Public Interest Registry reserves \nthe right to modify these terms at any time. By submitting this query, \nyou agree to abide by this policy. \n\nDomain ID:D160909486-LROR\nDomain Name:ANONNEWS.ORG\nCreated On:12-Dec-2010 20:31:54 UTC\nLast Updated On:16-Nov-2013 12:22:49 UTC\nExpiration Date:12-Dec-2014 20:31:54 UTC\nSponsoring Registrar:Internet.bs Corp. (R1601-LROR)\nStatus:CLIENT TRANSFER PROHIBITED\nStatus:RENEWPERIOD\nRegistrant ID:INTE381xro4k9z0m\nRegistrant Name:Domain Administrator\nRegistrant Organization:Fundacion Private Whois\nRegistrant Street1:Attn: anonnews.org\nRegistrant Street2:Aptds. 0850-00056\nRegistrant Street3:\nRegistrant City:Panama\nRegistrant State/Province:\nRegistrant Postal Code:Zona 15\nRegistrant Country:PA\nRegistrant Phone:+507.65995877\nRegistrant Phone Ext.:\nRegistrant FAX:\nRegistrant FAX Ext.:\nRegistrant Email:52300fa6c2nzfacc@5225b4d0pi3627q9.privatewhois.net\nAdmin ID:INTErkiewm5586ze\nAdmin Name:Domain Administrator\nAdmin Organization:Fundacion Private Whois\nAdmin Street1:Attn: anonnews.org\nAdmin Street2:Aptds. 0850-00056\nAdmin Street3:\nAdmin City:Panama\nAdmin State/Province:\nAdmin Postal Code:Zona 15\nAdmin Country:PA\nAdmin Phone:+507.65995877\nAdmin Phone Ext.:\nAdmin FAX:\nAdmin FAX Ext.:\nAdmin Email:52300fa7x2yb6oe6@5225b4d0pi3627q9.privatewhois.net\nTech ID:INTEl92g5h18b12w\nTech Name:Domain Administrator\nTech Organization:Fundacion Private Whois\nTech Street1:Attn: anonnews.org\nTech Street2:Aptds. 0850-00056\nTech Street3:\nTech City:Panama\nTech State/Province:\nTech Postal Code:Zona 15\nTech Country:PA\nTech Phone:+507.65995877\nTech Phone Ext.:\nTech FAX:\nTech FAX Ext.:\nTech Email:52300fa6vwq931xf@5225b4d0pi3627q9.privatewhois.net\nName Server:LISA.NS.CLOUDFLARE.COM\nName Server:ED.NS.CLOUDFLARE.COM\nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nDNSSEC:Unsigned\n\n\n\n"], "whois_server": null, "registrar": ["Internet.bs Corp. (R1601-LROR)"], "name_servers": ["lisa.ns.cloudflare.com", "ed.ns.cloudflare.com"], "creation_date": ["2010-12-12T20:31:54", "2010-12-12T20:31:54"], "id": ["D160909486-LROR"]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1 +1 @@
{"updated_date": ["2011-10-24T14:51:40", "2013-08-09T15:17:35"], "status": null, "contacts": {"admin": {"city": "Graz", "fax": "+43316827500777", "handle": "KG8294627-NICAT", "name": "Edis Gmbh", "country": "Austria", "phone": "+43316827500300", "street": "Hauptplatz 3", "postalcode": "8010", "organization": "Kleewein Gerhard", "email": "domreg@edis.at", "changedate": "2013-08-09T15:17:35"}, "tech": {"city": "Graz", "fax": "+43316827500777", "handle": "KG8294627-NICAT", "name": "Edis Gmbh", "country": "Austria", "phone": "+43316827500300", "street": "Hauptplatz 3", "postalcode": "8010", "organization": "Kleewein Gerhard", "email": "domreg@edis.at", "changedate": "2013-08-09T15:17:35"}, "registrant": {"city": "Graz", "fax": "+43316827500777", "handle": "KG8294626-NICAT", "name": "Edis Gmbh", "country": "Austria", "phone": "+43316827500300", "street": "Widmannstettergasse 3", "postalcode": "8053", "organization": "Kleewein Gerhard", "email": "support@edis.at", "changedate": "2011-10-24T14:51:40"}, "billing": null}, "expiration_date": null, "id": null, "raw": ["% Copyright (c)2013 by NIC.AT (1) \n%\n% Restricted rights.\n%\n% Except for agreed Internet operational purposes, no part of this\n% information may be reproduced, stored in a retrieval system, or\n% transmitted, in any form or by any means, electronic, mechanical,\n% recording, or otherwise, without prior permission of NIC.AT on behalf\n% of itself and/or the copyright holders. Any use of this material to\n% target advertising or similar activities is explicitly forbidden and\n% can be prosecuted.\n%\n% It is furthermore strictly forbidden to use the Whois-Database in such\n% a way that jeopardizes or could jeopardize the stability of the\n% technical systems of NIC.AT under any circumstances. In particular,\n% this includes any misuse of the Whois-Database and any use of the\n% Whois-Database which disturbs its operation.\n%\n% Should the user violate these points, NIC.AT reserves the right to\n% deactivate the Whois-Database entirely or partly for the user.\n% Moreover, the user shall be held liable for any and all damage\n% arising from a violation of these points.\n\ndomain: edis.at\nregistrant: KG8294626-NICAT\nadmin-c: KG8294627-NICAT\ntech-c: KG8294627-NICAT\nnserver: ns1.edis.at\nremarks: 91.227.204.227\nnserver: ns2.edis.at\nremarks: 91.227.205.227\nnserver: ns5.edis.at\nremarks: 46.17.57.5\nnserver: ns6.edis.at\nremarks: 178.209.42.105\nchanged: 20111024 14:51:40\nsource: AT-DOM\n\npersonname: EDIS GmbH\norganization: Kleewein Gerhard\nstreet address: Widmannstettergasse 3\npostal code: 8053\ncity: Graz\ncountry: Austria\nphone: +43316827500300\nfax-no: +43316827500777\ne-mail: support@edis.at\nnic-hdl: KG8294626-NICAT\nchanged: 20111024 14:51:40\nsource: AT-DOM\n\npersonname: EDIS GmbH\norganization: Kleewein Gerhard\nstreet address: Hauptplatz 3\npostal code: 8010\ncity: Graz\ncountry: Austria\nphone: +43316827500300\nfax-no: +43316827500777\ne-mail: domreg@edis.at\nnic-hdl: KG8294627-NICAT\nchanged: 20130809 15:17:35\nsource: AT-DOM\n\n\n"], "whois_server": null, "registrar": null, "name_servers": ["ns1.edis.at", "ns2.edis.at", "ns5.edis.at", "ns6.edis.at"], "creation_date": null, "emails": []}
{"updated_date": ["2011-10-24T14:51:40", "2013-08-09T15:17:35"], "status": null, "contacts": {"admin": {"city": "Graz", "fax": "+43316827500777", "handle": "KG8294627-NICAT", "name": "EDIS GmbH", "country": "Austria", "phone": "+43316827500300", "street": "Hauptplatz 3", "postalcode": "8010", "organization": "Kleewein Gerhard", "email": "domreg@edis.at", "changedate": "2013-08-09T15:17:35"}, "tech": {"city": "Graz", "fax": "+43316827500777", "handle": "KG8294627-NICAT", "name": "EDIS GmbH", "country": "Austria", "phone": "+43316827500300", "street": "Hauptplatz 3", "postalcode": "8010", "organization": "Kleewein Gerhard", "email": "domreg@edis.at", "changedate": "2013-08-09T15:17:35"}, "registrant": {"city": "Graz", "fax": "+43316827500777", "handle": "KG8294626-NICAT", "name": "EDIS GmbH", "country": "Austria", "phone": "+43316827500300", "street": "Widmannstettergasse 3", "postalcode": "8053", "organization": "Kleewein Gerhard", "email": "support@edis.at", "changedate": "2011-10-24T14:51:40"}, "billing": null}, "expiration_date": null, "id": null, "raw": ["% Copyright (c)2013 by NIC.AT (1) \n%\n% Restricted rights.\n%\n% Except for agreed Internet operational purposes, no part of this\n% information may be reproduced, stored in a retrieval system, or\n% transmitted, in any form or by any means, electronic, mechanical,\n% recording, or otherwise, without prior permission of NIC.AT on behalf\n% of itself and/or the copyright holders. Any use of this material to\n% target advertising or similar activities is explicitly forbidden and\n% can be prosecuted.\n%\n% It is furthermore strictly forbidden to use the Whois-Database in such\n% a way that jeopardizes or could jeopardize the stability of the\n% technical systems of NIC.AT under any circumstances. In particular,\n% this includes any misuse of the Whois-Database and any use of the\n% Whois-Database which disturbs its operation.\n%\n% Should the user violate these points, NIC.AT reserves the right to\n% deactivate the Whois-Database entirely or partly for the user.\n% Moreover, the user shall be held liable for any and all damage\n% arising from a violation of these points.\n\ndomain: edis.at\nregistrant: KG8294626-NICAT\nadmin-c: KG8294627-NICAT\ntech-c: KG8294627-NICAT\nnserver: ns1.edis.at\nremarks: 91.227.204.227\nnserver: ns2.edis.at\nremarks: 91.227.205.227\nnserver: ns5.edis.at\nremarks: 46.17.57.5\nnserver: ns6.edis.at\nremarks: 178.209.42.105\nchanged: 20111024 14:51:40\nsource: AT-DOM\n\npersonname: EDIS GmbH\norganization: Kleewein Gerhard\nstreet address: Widmannstettergasse 3\npostal code: 8053\ncity: Graz\ncountry: Austria\nphone: +43316827500300\nfax-no: +43316827500777\ne-mail: support@edis.at\nnic-hdl: KG8294626-NICAT\nchanged: 20111024 14:51:40\nsource: AT-DOM\n\npersonname: EDIS GmbH\norganization: Kleewein Gerhard\nstreet address: Hauptplatz 3\npostal code: 8010\ncity: Graz\ncountry: Austria\nphone: +43316827500300\nfax-no: +43316827500777\ne-mail: domreg@edis.at\nnic-hdl: KG8294627-NICAT\nchanged: 20130809 15:17:35\nsource: AT-DOM\n\n\n"], "whois_server": null, "registrar": null, "name_servers": ["ns1.edis.at", "ns2.edis.at", "ns5.edis.at", "ns6.edis.at"], "creation_date": null, "emails": []}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1 +1 @@
{"status": ["Registered, Delegated, Verified"], "updated_date": ["2013-11-20T08:41:39"], "contacts": {"admin": null, "tech": null, "registrant": {"organization": "JSC 'RU-CENTER'"}, "billing": null}, "expiration_date": ["2013-12-01T00:00:00"], "emails": null, "creation_date": ["1997-11-28T00:00:00"], "raw": ["% By submitting a query to RIPN's Whois Service\n% you agree to abide by the following terms of use:\n% http://www.ripn.net/about/servpol.html#3.2 (in Russian) \n% http://www.ripn.net/about/en/servpol.html#3.2 (in English).\n\ndomain: NIC.RU\nnserver: ns4-cloud.nic.ru. 195.253.65.2, 2a01:5b0:5::2\nnserver: ns5.nic.ru. 31.177.67.100, 2a02:2090:e800:9000:31:177:67:100\nnserver: ns6.nic.ru. 31.177.74.100, 2a02:2090:ec00:9040:31:177:74:100\nnserver: ns7.nic.ru. 31.177.71.100, 2a02:2090:ec00:9000:31:177:71:100\nnserver: ns8-cloud.nic.ru. 195.253.64.10, 2a01:5b0:4::a\nstate: REGISTERED, DELEGATED, VERIFIED\norg: JSC 'RU-CENTER'\nregistrar: RU-CENTER-REG-RIPN\nadmin-contact: https://www.nic.ru/whois\ncreated: 1997.11.28\npaid-till: 2013.12.01\nfree-date: 2014.01.01\nsource: TCI\n\nLast updated on 2013.11.20 08:41:39 MSK\n\n"], "whois_server": null, "registrar": ["Ru-center-reg-ripn"], "name_servers": ["ns4-cloud.nic.ru", "ns5.nic.ru", "ns6.nic.ru", "ns7.nic.ru", "ns8-cloud.nic.ru"], "id": null}
{"status": ["Registered, Delegated, Verified"], "updated_date": ["2013-11-20T08:41:39"], "contacts": {"admin": null, "tech": null, "registrant": {"organization": "Jsc 'ru-center'"}, "billing": null}, "expiration_date": ["2013-12-01T00:00:00"], "emails": null, "creation_date": ["1997-11-28T00:00:00"], "raw": ["% By submitting a query to RIPN's Whois Service\n% you agree to abide by the following terms of use:\n% http://www.ripn.net/about/servpol.html#3.2 (in Russian) \n% http://www.ripn.net/about/en/servpol.html#3.2 (in English).\n\ndomain: NIC.RU\nnserver: ns4-cloud.nic.ru. 195.253.65.2, 2a01:5b0:5::2\nnserver: ns5.nic.ru. 31.177.67.100, 2a02:2090:e800:9000:31:177:67:100\nnserver: ns6.nic.ru. 31.177.74.100, 2a02:2090:ec00:9040:31:177:74:100\nnserver: ns7.nic.ru. 31.177.71.100, 2a02:2090:ec00:9000:31:177:71:100\nnserver: ns8-cloud.nic.ru. 195.253.64.10, 2a01:5b0:4::a\nstate: REGISTERED, DELEGATED, VERIFIED\norg: JSC 'RU-CENTER'\nregistrar: RU-CENTER-REG-RIPN\nadmin-contact: https://www.nic.ru/whois\ncreated: 1997.11.28\npaid-till: 2013.12.01\nfree-date: 2014.01.01\nsource: TCI\n\nLast updated on 2013.11.20 08:41:39 MSK\n\n"], "whois_server": null, "registrar": ["Ru-center-reg-ripn"], "name_servers": ["ns4-cloud.nic.ru", "ns5.nic.ru", "ns6.nic.ru", "ns7.nic.ru", "ns8-cloud.nic.ru"], "id": null}

@ -1 +1 @@
{"updated_date": ["2013-02-06T00:00:00"], "status": null, "contacts": {"admin": null, "tech": null, "registrant": {"city": "Oxford", "name": "Nominet Uk", "state": "Oxon", "street": "Minerva House\nedmund Halley Road\noxford Science Park", "country": "United Kingdom", "postalcode": "OX4 4DQ"}, "billing": null}, "expiration_date": null, "emails": null, "creation_date": null, "raw": ["\n Domain name:\n nominet.org.uk\n\n Registrant:\n Nominet UK\n\n Registrant type:\n UK Limited Company, (Company number: 3203859)\n\n Registrant's address:\n Minerva House\n Edmund Halley Road\n Oxford Science Park\n Oxford\n Oxon\n OX4 4DQ\n United Kingdom\n\n Registrar:\n No registrar listed. This domain is registered directly with Nominet.\n\n Relevant dates:\n Registered on: before Aug-1996\n Last updated: 06-Feb-2013\n\n Registration status:\n No registration status listed.\n\n Name servers:\n nom-ns1.nominet.org.uk 213.248.199.16\n nom-ns2.nominet.org.uk 195.66.240.250 2a01:40:1001:37::2\n nom-ns3.nominet.org.uk 213.219.13.194\n\n DNSSEC:\n Signed\n\n WHOIS lookup made at 14:56:34 23-Nov-2013\n\n-- \nThis WHOIS information is provided for free by Nominet UK the central registry\nfor .uk domain names. This information and the .uk WHOIS are:\n\n Copyright Nominet UK 1996 - 2013.\n\nYou may not access the .uk WHOIS or use any data from it except as permitted\nby the terms of use available in full at http://www.nominet.org.uk/whoisterms, which\nincludes restrictions on: (A) use of the data for advertising, or its\nrepackaging, recompilation, redistribution or reuse (B) obscuring, removing\nor hiding any or all of this notice and (C) exceeding query rate or volume\nlimits. The data is provided on an 'as-is' basis and may lag behind the\nregister. Access may be withdrawn or restricted at any time. \n\n"], "whois_server": null, "registrar": ["No registrar listed. This domain is registered directly with Nominet."], "name_servers": ["nom-ns1.nominet.org.uk", "nom-ns2.nominet.org.uk", "nom-ns3.nominet.org.uk"], "id": null}
{"updated_date": ["2013-02-06T00:00:00"], "status": null, "contacts": {"admin": null, "tech": null, "registrant": {"city": "Oxford", "name": "Nominet UK", "state": "Oxon", "street": "Minerva House\nEdmund Halley Road\nOxford Science Park", "country": "United Kingdom", "postalcode": "OX4 4DQ"}, "billing": null}, "expiration_date": null, "emails": null, "creation_date": null, "raw": ["\n Domain name:\n nominet.org.uk\n\n Registrant:\n Nominet UK\n\n Registrant type:\n UK Limited Company, (Company number: 3203859)\n\n Registrant's address:\n Minerva House\n Edmund Halley Road\n Oxford Science Park\n Oxford\n Oxon\n OX4 4DQ\n United Kingdom\n\n Registrar:\n No registrar listed. This domain is registered directly with Nominet.\n\n Relevant dates:\n Registered on: before Aug-1996\n Last updated: 06-Feb-2013\n\n Registration status:\n No registration status listed.\n\n Name servers:\n nom-ns1.nominet.org.uk 213.248.199.16\n nom-ns2.nominet.org.uk 195.66.240.250 2a01:40:1001:37::2\n nom-ns3.nominet.org.uk 213.219.13.194\n\n DNSSEC:\n Signed\n\n WHOIS lookup made at 14:56:34 23-Nov-2013\n\n-- \nThis WHOIS information is provided for free by Nominet UK the central registry\nfor .uk domain names. This information and the .uk WHOIS are:\n\n Copyright Nominet UK 1996 - 2013.\n\nYou may not access the .uk WHOIS or use any data from it except as permitted\nby the terms of use available in full at http://www.nominet.org.uk/whoisterms, which\nincludes restrictions on: (A) use of the data for advertising, or its\nrepackaging, recompilation, redistribution or reuse (B) obscuring, removing\nor hiding any or all of this notice and (C) exceeding query rate or volume\nlimits. The data is provided on an 'as-is' basis and may lag behind the\nregister. Access may be withdrawn or restricted at any time. \n\n"], "whois_server": null, "registrar": ["No registrar listed. This domain is registered directly with Nominet."], "name_servers": ["nom-ns1.nominet.org.uk", "nom-ns2.nominet.org.uk", "nom-ns3.nominet.org.uk"], "id": null}

@ -1 +1 @@
{"status": ["Active", "ok"], "updated_date": ["2006-10-11T00:00:00", "2013-10-28T00:00:00", "2009-04-03T00:00:00"], "contacts": {"admin": {"fax": "+33 3 20 20 09 58", "handle": "OK62-FRNIC", "phone": "+33 3 20 20 09 57", "street": "Sarl Ovh\n140, Quai Du Sartel", "postalcode": "59100", "city": "Roubaix", "name": "Octave Klaba", "country": "FR", "type": "PERSON", "changedate": "2009-04-03T00:00:00"}, "tech": {"handle": "OVH5-FRNIC", "phone": "+33 8 99 70 17 61", "street": "Ovh\n140, Quai Du Sartel", "postalcode": "59100", "city": "Roubaix", "name": "Ovh Net", "country": "FR", "type": "ROLE", "email": "tech@ovh.net", "changedate": "2006-10-11T00:00:00"}, "registrant": {"fax": "+33 3 20 20 09 58", "handle": "SO255-FRNIC", "phone": "+33 8 99 70 17 61", "street": "140, Quai Du Sartel", "postalcode": "59100", "city": "Roubaix", "name": "Ovh Sas", "country": "FR", "type": "ORGANIZATION", "email": "oles@ovh.net", "changedate": "2013-10-28T00:00:00"}, "billing": null}, "expiration_date": null, "id": null, "creation_date": ["1999-11-12T00:00:00", "1999-10-21T00:00:00"], "raw": ["%%\n%% This is the AFNIC Whois server.\n%%\n%% complete date format : DD/MM/YYYY\n%% short date format : DD/MM\n%% version : FRNIC-2.5\n%%\n%% Rights restricted by copyright.\n%% See http://www.afnic.fr/afnic/web/mentions-legales-whois_en\n%%\n%% Use '-h' option to obtain more information about this service.\n%%\n%% [77.162.55.23 REQUEST] >> -V Md5.0 ovh.fr\n%%\n%% RL Net [##########] - RL IP [#########.]\n%%\n\ndomain: ovh.fr\nstatus: ACTIVE\nhold: NO\nholder-c: SO255-FRNIC\nadmin-c: OK62-FRNIC\ntech-c: OVH5-FRNIC\nzone-c: NFC1-FRNIC\nnsl-id: NSL16790-FRNIC\nregistrar: OVH\nanniversary: 12/11\ncreated: 12/11/1999\nlast-update: 03/04/2009\nsource: FRNIC\n\nns-list: NSL16790-FRNIC\nnserver: dns.ovh.net\nnserver: dns10.ovh.net\nnserver: ns.ovh.net\nnserver: ns10.ovh.net\nsource: FRNIC\n\nregistrar: OVH\ntype: Isp Option 1\naddress: 2 Rue Kellermann\naddress: ROUBAIX\ncountry: FR\nphone: +33 8 99 70 17 61\nfax-no: +33 3 20 20 09 58\ne-mail: support@ovh.net\nwebsite: http://www.ovh.com\nanonymous: NO\nregistered: 21/10/1999\nsource: FRNIC\n\nnic-hdl: OVH5-FRNIC\ntype: ROLE\ncontact: OVH NET\naddress: OVH\naddress: 140, quai du Sartel\naddress: 59100 Roubaix\ncountry: FR\nphone: +33 8 99 70 17 61\ne-mail: tech@ovh.net\ntrouble: Information: http://www.ovh.fr\ntrouble: Questions: mailto:tech@ovh.net\ntrouble: Spam: mailto:abuse@ovh.net\nadmin-c: OK217-FRNIC\ntech-c: OK217-FRNIC\nnotify: tech@ovh.net\nregistrar: OVH\nchanged: 11/10/2006 tech@ovh.net\nanonymous: NO\nobsoleted: NO\nsource: FRNIC\n\nnic-hdl: SO255-FRNIC\ntype: ORGANIZATION\ncontact: OVH SAS\naddress: 140, quai du sartel\naddress: 59100 Roubaix\ncountry: FR\nphone: +33 8 99 70 17 61\nfax-no: +33 3 20 20 09 58\ne-mail: oles@ovh.net\nregistrar: OVH\nchanged: 28/10/2013 nic@nic.fr\nanonymous: NO\nobsoleted: NO\neligstatus: ok\neligdate: 01/09/2011 12:03:35\nsource: FRNIC\n\nnic-hdl: OK62-FRNIC\ntype: PERSON\ncontact: Octave Klaba\naddress: Sarl Ovh\naddress: 140, quai du Sartel\naddress: 59100 Roubaix\ncountry: FR\nphone: +33 3 20 20 09 57\nfax-no: +33 3 20 20 09 58\nregistrar: OVH\nchanged: 03/04/2009 nic@nic.fr\nanonymous: NO\nobsoleted: NO\nsource: FRNIC\n"], "whois_server": null, "registrar": ["OVH"], "name_servers": ["dns.ovh.net", "dns10.ovh.net", "ns.ovh.net", "ns10.ovh.net"], "emails": ["support@ovh.net", "abuse@ovh.net", "nic@nic.fr"]}
{"status": ["Active", "ok"], "updated_date": ["2006-10-11T00:00:00", "2013-10-28T00:00:00", "2009-04-03T00:00:00"], "contacts": {"admin": {"fax": "+33 3 20 20 09 58", "handle": "OK62-FRNIC", "phone": "+33 3 20 20 09 57", "street": "Sarl Ovh\n140, quai du Sartel", "postalcode": "59100", "city": "Roubaix", "name": "Octave Klaba", "country": "FR", "type": "PERSON", "changedate": "2009-04-03T00:00:00"}, "tech": {"handle": "OVH5-FRNIC", "phone": "+33 8 99 70 17 61", "street": "OVH\n140, quai du Sartel", "postalcode": "59100", "city": "Roubaix", "name": "Ovh Net", "country": "FR", "type": "ROLE", "email": "tech@ovh.net", "changedate": "2006-10-11T00:00:00"}, "registrant": {"fax": "+33 3 20 20 09 58", "handle": "SO255-FRNIC", "phone": "+33 8 99 70 17 61", "street": "140, Quai Du Sartel", "postalcode": "59100", "city": "Roubaix", "name": "Ovh Sas", "country": "FR", "type": "ORGANIZATION", "email": "oles@ovh.net", "changedate": "2013-10-28T00:00:00"}, "billing": null}, "expiration_date": null, "id": null, "creation_date": ["1999-11-12T00:00:00", "1999-10-21T00:00:00"], "raw": ["%%\n%% This is the AFNIC Whois server.\n%%\n%% complete date format : DD/MM/YYYY\n%% short date format : DD/MM\n%% version : FRNIC-2.5\n%%\n%% Rights restricted by copyright.\n%% See http://www.afnic.fr/afnic/web/mentions-legales-whois_en\n%%\n%% Use '-h' option to obtain more information about this service.\n%%\n%% [77.162.55.23 REQUEST] >> -V Md5.0 ovh.fr\n%%\n%% RL Net [##########] - RL IP [#########.]\n%%\n\ndomain: ovh.fr\nstatus: ACTIVE\nhold: NO\nholder-c: SO255-FRNIC\nadmin-c: OK62-FRNIC\ntech-c: OVH5-FRNIC\nzone-c: NFC1-FRNIC\nnsl-id: NSL16790-FRNIC\nregistrar: OVH\nanniversary: 12/11\ncreated: 12/11/1999\nlast-update: 03/04/2009\nsource: FRNIC\n\nns-list: NSL16790-FRNIC\nnserver: dns.ovh.net\nnserver: dns10.ovh.net\nnserver: ns.ovh.net\nnserver: ns10.ovh.net\nsource: FRNIC\n\nregistrar: OVH\ntype: Isp Option 1\naddress: 2 Rue Kellermann\naddress: ROUBAIX\ncountry: FR\nphone: +33 8 99 70 17 61\nfax-no: +33 3 20 20 09 58\ne-mail: support@ovh.net\nwebsite: http://www.ovh.com\nanonymous: NO\nregistered: 21/10/1999\nsource: FRNIC\n\nnic-hdl: OVH5-FRNIC\ntype: ROLE\ncontact: OVH NET\naddress: OVH\naddress: 140, quai du Sartel\naddress: 59100 Roubaix\ncountry: FR\nphone: +33 8 99 70 17 61\ne-mail: tech@ovh.net\ntrouble: Information: http://www.ovh.fr\ntrouble: Questions: mailto:tech@ovh.net\ntrouble: Spam: mailto:abuse@ovh.net\nadmin-c: OK217-FRNIC\ntech-c: OK217-FRNIC\nnotify: tech@ovh.net\nregistrar: OVH\nchanged: 11/10/2006 tech@ovh.net\nanonymous: NO\nobsoleted: NO\nsource: FRNIC\n\nnic-hdl: SO255-FRNIC\ntype: ORGANIZATION\ncontact: OVH SAS\naddress: 140, quai du sartel\naddress: 59100 Roubaix\ncountry: FR\nphone: +33 8 99 70 17 61\nfax-no: +33 3 20 20 09 58\ne-mail: oles@ovh.net\nregistrar: OVH\nchanged: 28/10/2013 nic@nic.fr\nanonymous: NO\nobsoleted: NO\neligstatus: ok\neligdate: 01/09/2011 12:03:35\nsource: FRNIC\n\nnic-hdl: OK62-FRNIC\ntype: PERSON\ncontact: Octave Klaba\naddress: Sarl Ovh\naddress: 140, quai du Sartel\naddress: 59100 Roubaix\ncountry: FR\nphone: +33 3 20 20 09 57\nfax-no: +33 3 20 20 09 58\nregistrar: OVH\nchanged: 03/04/2009 nic@nic.fr\nanonymous: NO\nobsoleted: NO\nsource: FRNIC\n"], "whois_server": null, "registrar": ["OVH"], "name_servers": ["dns.ovh.net", "dns10.ovh.net", "ns.ovh.net", "ns10.ovh.net"], "emails": ["support@ovh.net", "abuse@ovh.net", "nic@nic.fr"]}

@ -1 +1 @@
{"status": ["Active", "ok"], "updated_date": ["2009-08-31T00:00:00", "2006-03-03T00:00:00"], "contacts": {"admin": {"handle": "ANO00-FRNIC", "name": "Ano Nymous", "type": "PERSON", "changedate": "2009-08-31T00:00:00"}, "tech": {"handle": "GR283-FRNIC", "street": "Gandi\n15, Place De La Nation", "postalcode": "75011", "city": "Paris", "name": "Gandi Role", "country": "FR", "type": "ROLE", "email": "noc@gandi.net", "changedate": "2006-03-03T00:00:00"}, "registrant": {"handle": "ANO00-FRNIC", "name": "Ano Nymous", "type": "PERSON", "changedate": "2009-08-31T00:00:00"}, "billing": null}, "expiration_date": null, "id": null, "creation_date": ["2009-04-04T00:00:00", "2004-03-09T00:00:00"], "raw": ["%%\n%% This is the AFNIC Whois server.\n%%\n%% complete date format : DD/MM/YYYY\n%% short date format : DD/MM\n%% version : FRNIC-2.5\n%%\n%% Rights restricted by copyright.\n%% See http://www.afnic.fr/afnic/web/mentions-legales-whois_en\n%%\n%% Use '-h' option to obtain more information about this service.\n%%\n%% [77.162.55.23 REQUEST] >> singularity.fr\n%%\n%% RL Net [##########] - RL IP [#########.]\n%%\n\ndomain: singularity.fr\nstatus: ACTIVE\nhold: NO\nholder-c: ANO00-FRNIC\nadmin-c: ANO00-FRNIC\ntech-c: GR283-FRNIC\nzone-c: NFC1-FRNIC\nnsl-id: NSL29702-FRNIC\nregistrar: GANDI\nanniversary: 01/09\ncreated: 04/04/2009\nlast-update: 01/09/2009\nsource: FRNIC\n\nns-list: NSL29702-FRNIC\nnserver: ns-sec.toile-libre.org\nnserver: ns-pri.toile-libre.org\nsource: FRNIC\n\nregistrar: GANDI\ntype: Isp Option 1\naddress: 63-65 boulevard Massena\naddress: PARIS\ncountry: FR\nphone: +33 1 70 37 76 61\nfax-no: +33 1 43 73 18 51\ne-mail: support-fr@support.gandi.net\nwebsite: http://www.gandi.net\nanonymous: NO\nregistered: 09/03/2004\nsource: FRNIC\n\nnic-hdl: ANO00-FRNIC\ntype: PERSON\ncontact: Ano Nymous\nremarks: -------------- WARNING --------------\nremarks: While the registrar knows him/her,\nremarks: this person chose to restrict access\nremarks: to his/her personal data. So PLEASE,\nremarks: don't send emails to Ano Nymous. This\nremarks: address is bogus and there is no hope\nremarks: of a reply.\nremarks: -------------- WARNING --------------\nregistrar: GANDI\nchanged: 31/08/2009 anonymous@nowhere.xx.fr\nanonymous: YES\nobsoleted: NO\neligstatus: ok\nsource: FRNIC\n\nnic-hdl: GR283-FRNIC\ntype: ROLE\ncontact: GANDI ROLE\naddress: Gandi\naddress: 15, place de la Nation\naddress: 75011 Paris\ncountry: FR\ne-mail: noc@gandi.net\ntrouble: -------------------------------------------------\ntrouble: GANDI is an ICANN accredited registrar\ntrouble: for more information:\ntrouble: Web: http://www.gandi.net\ntrouble: -------------------------------------------------\ntrouble: - network troubles: noc@gandi.net\ntrouble: - SPAM: abuse@gandi.net\ntrouble: -------------------------------------------------\nadmin-c: NL346-FRNIC\ntech-c: NL346-FRNIC\ntech-c: TUF1-FRNIC\nnotify: noc@gandi.net\nregistrar: GANDI\nchanged: 03/03/2006 noc@gandi.net\nanonymous: NO\nobsoleted: NO\nsource: FRNIC\n\n\n"], "whois_server": null, "registrar": ["Gandi"], "name_servers": ["ns-sec.toile-libre.org", "ns-pri.toile-libre.org"], "emails": ["support-fr@support.gandi.net", "anonymous@nowhere.xx.fr", "abuse@gandi.net"]}
{"status": ["Active", "ok"], "updated_date": ["2009-08-31T00:00:00", "2006-03-03T00:00:00"], "contacts": {"admin": {"handle": "ANO00-FRNIC", "name": "Ano Nymous", "type": "PERSON", "changedate": "2009-08-31T00:00:00"}, "tech": {"handle": "GR283-FRNIC", "street": "Gandi\n15, place de la Nation", "postalcode": "75011", "city": "Paris", "name": "Gandi Role", "country": "FR", "type": "ROLE", "email": "noc@gandi.net", "changedate": "2006-03-03T00:00:00"}, "registrant": {"handle": "ANO00-FRNIC", "name": "Ano Nymous", "type": "PERSON", "changedate": "2009-08-31T00:00:00"}, "billing": null}, "expiration_date": null, "id": null, "creation_date": ["2009-04-04T00:00:00", "2004-03-09T00:00:00"], "raw": ["%%\n%% This is the AFNIC Whois server.\n%%\n%% complete date format : DD/MM/YYYY\n%% short date format : DD/MM\n%% version : FRNIC-2.5\n%%\n%% Rights restricted by copyright.\n%% See http://www.afnic.fr/afnic/web/mentions-legales-whois_en\n%%\n%% Use '-h' option to obtain more information about this service.\n%%\n%% [77.162.55.23 REQUEST] >> singularity.fr\n%%\n%% RL Net [##########] - RL IP [#########.]\n%%\n\ndomain: singularity.fr\nstatus: ACTIVE\nhold: NO\nholder-c: ANO00-FRNIC\nadmin-c: ANO00-FRNIC\ntech-c: GR283-FRNIC\nzone-c: NFC1-FRNIC\nnsl-id: NSL29702-FRNIC\nregistrar: GANDI\nanniversary: 01/09\ncreated: 04/04/2009\nlast-update: 01/09/2009\nsource: FRNIC\n\nns-list: NSL29702-FRNIC\nnserver: ns-sec.toile-libre.org\nnserver: ns-pri.toile-libre.org\nsource: FRNIC\n\nregistrar: GANDI\ntype: Isp Option 1\naddress: 63-65 boulevard Massena\naddress: PARIS\ncountry: FR\nphone: +33 1 70 37 76 61\nfax-no: +33 1 43 73 18 51\ne-mail: support-fr@support.gandi.net\nwebsite: http://www.gandi.net\nanonymous: NO\nregistered: 09/03/2004\nsource: FRNIC\n\nnic-hdl: ANO00-FRNIC\ntype: PERSON\ncontact: Ano Nymous\nremarks: -------------- WARNING --------------\nremarks: While the registrar knows him/her,\nremarks: this person chose to restrict access\nremarks: to his/her personal data. So PLEASE,\nremarks: don't send emails to Ano Nymous. This\nremarks: address is bogus and there is no hope\nremarks: of a reply.\nremarks: -------------- WARNING --------------\nregistrar: GANDI\nchanged: 31/08/2009 anonymous@nowhere.xx.fr\nanonymous: YES\nobsoleted: NO\neligstatus: ok\nsource: FRNIC\n\nnic-hdl: GR283-FRNIC\ntype: ROLE\ncontact: GANDI ROLE\naddress: Gandi\naddress: 15, place de la Nation\naddress: 75011 Paris\ncountry: FR\ne-mail: noc@gandi.net\ntrouble: -------------------------------------------------\ntrouble: GANDI is an ICANN accredited registrar\ntrouble: for more information:\ntrouble: Web: http://www.gandi.net\ntrouble: -------------------------------------------------\ntrouble: - network troubles: noc@gandi.net\ntrouble: - SPAM: abuse@gandi.net\ntrouble: -------------------------------------------------\nadmin-c: NL346-FRNIC\ntech-c: NL346-FRNIC\ntech-c: TUF1-FRNIC\nnotify: noc@gandi.net\nregistrar: GANDI\nchanged: 03/03/2006 noc@gandi.net\nanonymous: NO\nobsoleted: NO\nsource: FRNIC\n\n\n"], "whois_server": null, "registrar": ["Gandi"], "name_servers": ["ns-sec.toile-libre.org", "ns-pri.toile-libre.org"], "emails": ["support-fr@support.gandi.net", "anonymous@nowhere.xx.fr", "abuse@gandi.net"]}

@ -1 +1 @@
{"status": null, "updated_date": null, "contacts": {"admin": null, "tech": {"postalcode": "CH-3050", "city": "Bern", "street": "Ostermundigenstrasse 99 6", "name": "Swisscom It Services Ag\nandreas Disteli", "country": "Switzerland"}, "registrant": {"postalcode": "CH-3050", "city": "Bern", "street": "Alte Tiefenaustrasse 6", "name": "Swisscom Ag\nkarin Hug\ndomain Registration", "country": "Switzerland"}, "billing": null}, "expiration_date": null, "emails": null, "raw": ["whois: This information is subject to an Acceptable Use Policy.\nSee http://www.nic.ch/terms/aup.html\n\n\nDomain name:\nswisscom.ch\n\nHolder of domain name:\nSwisscom AG\nKarin Hug\nDomain Registration\nalte Tiefenaustrasse 6\nCH-3050 Bern\nSwitzerland\nContractual Language: English\n\nTechnical contact:\nSwisscom IT Services AG\nAndreas Disteli\nOstermundigenstrasse 99 6\nCH-3050 Bern\nSwitzerland\n\nDNSSEC:N\n\nName servers:\ndns1.swisscom.com\ndns2.swisscom.com\ndns3.swisscom.com\ndns6.swisscom.ch\t[193.222.76.52]\ndns6.swisscom.ch\t[2a02:a90:ffff:ffff::c:1]\ndns7.swisscom.ch\t[193.222.76.53]\ndns7.swisscom.ch\t[2a02:a90:ffff:ffff::c:3]\n\n"], "whois_server": null, "registrar": null, "name_servers": ["dns1.swisscom.com", "dns2.swisscom.com", "dns3.swisscom.com", "dns6.swisscom.ch", "dns7.swisscom.ch"], "creation_date": null, "id": null}
{"status": null, "updated_date": null, "contacts": {"admin": null, "tech": {"postalcode": "CH-3050", "city": "Bern", "street": "Ostermundigenstrasse 99 6", "name": "Swisscom IT Services AG\nAndreas Disteli", "country": "Switzerland"}, "registrant": {"postalcode": "CH-3050", "city": "Bern", "street": "alte Tiefenaustrasse 6", "name": "Swisscom AG\nKarin Hug\nDomain Registration", "country": "Switzerland"}, "billing": null}, "expiration_date": null, "emails": null, "raw": ["whois: This information is subject to an Acceptable Use Policy.\nSee http://www.nic.ch/terms/aup.html\n\n\nDomain name:\nswisscom.ch\n\nHolder of domain name:\nSwisscom AG\nKarin Hug\nDomain Registration\nalte Tiefenaustrasse 6\nCH-3050 Bern\nSwitzerland\nContractual Language: English\n\nTechnical contact:\nSwisscom IT Services AG\nAndreas Disteli\nOstermundigenstrasse 99 6\nCH-3050 Bern\nSwitzerland\n\nDNSSEC:N\n\nName servers:\ndns1.swisscom.com\ndns2.swisscom.com\ndns3.swisscom.com\ndns6.swisscom.ch\t[193.222.76.52]\ndns6.swisscom.ch\t[2a02:a90:ffff:ffff::c:1]\ndns7.swisscom.ch\t[193.222.76.53]\ndns7.swisscom.ch\t[2a02:a90:ffff:ffff::c:3]\n\n"], "whois_server": null, "registrar": null, "name_servers": ["dns1.swisscom.com", "dns2.swisscom.com", "dns3.swisscom.com", "dns6.swisscom.ch", "dns7.swisscom.ch"], "creation_date": null, "id": null}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save