diff --git a/pythonwhois/parse.py b/pythonwhois/parse.py index 953e697..32fd537 100644 --- a/pythonwhois/parse.py +++ b/pythonwhois/parse.py @@ -238,15 +238,12 @@ def normalize_data(data, normalized): else: data[key] = [item.lower() for item in data[key]] - for key in ("registrar", "status"): + for key, threshold in (("registrar", 4), ("status", 3)): if key in data and data[key] is not None and (normalized == True or key in normalized): - if isinstance(data[key], basestring) and data[key].isupper(): - if len(data[key] > 3): # Don't change abbreviations.. - # This won't do newlines correctly... Fix that! (known issue with eg. donuts.co, swisscom.ch) - data[key] = " ".join(word.capitalize() for word in data[key].split(" ")) + if isinstance(data[key], basestring): + data[key] = normalize_name(data[key], abbreviation_threshold=threshold, length_threshold=1) else: - # This might mess up the order? Also seems like there may be another bug here... - data[key] = [" ".join(word.capitalize() for word in item.split(" ")) for item in data[key] if item.isupper() and len(item) > 3] + [item for item in data[key] if not item.isupper() or len(item) <= 3] + data[key] = [normalize_name(item, abbreviation_threshold=threshold, length_threshold=1) for item in data[key]] for contact_type, contact in data['contacts'].iteritems(): if contact is not None: @@ -272,7 +269,7 @@ def normalize_data(data, normalized): pass # Not a string return data -def normalize_name(value, abbreviation_threshold=4, length_threshold=8): +def normalize_name(value, abbreviation_threshold=4, length_threshold=8, lowercase_domains=True): normalized_lines = [] for line in value.split("\n"): line = line.strip(",") # Get rid of useless comma's @@ -284,6 +281,8 @@ def normalize_name(value, abbreviation_threshold=4, length_threshold=8): # First word if len(words[0]) >= abbreviation_threshold and "." not in words[0]: normalized_words.append(words[0].capitalize()) + elif lowercase_domains and "." in words[0] and not words[0].endswith(".") and not words[0].startswith("."): + normalized_words.append(words[0].lower()) else: # Probably an abbreviation or domain, leave it alone normalized_words.append(words[0]) @@ -292,6 +291,8 @@ def normalize_name(value, abbreviation_threshold=4, length_threshold=8): for word in words[1:-1]: if len(word) >= abbreviation_threshold and "." not in word: normalized_words.append(word.capitalize()) + elif lowercase_domains and "." in word and not word.endswith(".") and not word.startswith("."): + normalized_words.append(word.lower()) else: # Probably an abbreviation or domain, leave it alone normalized_words.append(word) @@ -299,6 +300,8 @@ def normalize_name(value, abbreviation_threshold=4, length_threshold=8): # Last word if len(words[-1]) >= abbreviation_threshold and "." not in words[-1]: normalized_words.append(words[-1].capitalize()) + elif lowercase_domains and "." in words[-1] and not words[-1].endswith(".") and not words[-1].startswith("."): + normalized_words.append(words[-1].lower()) else: # Probably an abbreviation or domain, leave it alone normalized_words.append(words[-1]) @@ -405,7 +408,7 @@ def parse_registrants(data): "Registrant ID:(?P.+)\nRegistrant Name:(?P.*)\n(?:Registrant Organization:(?P.*)\n)?Registrant Street1:(?P.*)\n(?:Registrant Street2:(?P.*)\n)?(?:Registrant Street3:(?P.*)\n)?Registrant City:(?P.*)\nRegistrant State/Province:(?P.*)\nRegistrant Postal Code:(?P.*)\nRegistrant Country:(?P.*)\nRegistrant Phone:(?P.*)\n(?:Registrant Phone Ext.:(?P.*)\n)?(?:Registrant FAX:(?P.*)\n)?(?:Registrant FAX Ext.:(?P.*)\n)?Registrant Email:(?P.*)", # Public Interest Registry (.org), nic.pw "Registrant ID:\s*(?P.+)\nRegistrant Name:\s*(?P.+)\nRegistrant Organization:\s*(?P.*)\nRegistrant Address1:\s*(?P.+)\nRegistrant Address2:\s*(?P.*)\nRegistrant City:\s*(?P.+)\nRegistrant State/Province:\s*(?P.+)\nRegistrant Postal Code:\s*(?P.+)\nRegistrant Country:\s*(?P.+)\nRegistrant Country Code:\s*(?P.+)\nRegistrant Phone Number:\s*(?P.+)\nRegistrant Email:\s*(?P.+)\n", # .CO Internet "Registrant Contact: (?P.+)\nRegistrant Organization: (?P.+)\nRegistrant Name: (?P.+)\nRegistrant Street: (?P.+)\nRegistrant City: (?P.+)\nRegistrant Postal Code: (?P.+)\nRegistrant State: (?P.+)\nRegistrant Country: (?P.+)\nRegistrant Phone: (?P.*)\nRegistrant Phone Ext: (?P.*)\nRegistrant Fax: (?P.*)\nRegistrant Fax Ext: (?P.*)\nRegistrant Email: (?P.*)\n", # Key-Systems GmbH - "(?:Registrant ID:[ ]*(?P.*)\n)?Registrant Name:[ ]*(?P.*)\nRegistrant Organization:[ ]*(?P.*)\nRegistrant Street:[ ]*(?P.+)\n(?:Registrant Street:[ ]*(?P.+)\n)?Registrant City:[ ]*(?P.+)\nRegistrant State\/Province:[ ]*(?P.+)\nRegistrant Postal Code:[ ]*(?P.+)\nRegistrant Country:[ ]*(?P.+)\n(?:Registrant Phone:[ ]*(?P.*)\n)?(?:Registrant Phone Ext:[ ]*(?P.*)\n)?(?:Registrant Fax:[ ]*(?P.*)\n)?(?:Registrant Fax Ext:[ ]*(?P.*)\n)?(?:Registrant Email:[ ]*(?P.+)\n)?", # WildWestDomains, GoDaddy, Namecheap/eNom, Ascio, Musedoma (.museum) + "(?:Registrant ID:[ ]*(?P.*)\n)?Registrant Name:[ ]*(?P.*)\n(?:Registrant Organization:[ ]*(?P.*)\n)?Registrant Street:[ ]*(?P.+)\n(?:Registrant Street:[ ]*(?P.+)\n)?Registrant City:[ ]*(?P.+)\nRegistrant State\/Province:[ ]*(?P.+)\nRegistrant Postal Code:[ ]*(?P.+)\nRegistrant Country:[ ]*(?P.+)\n(?:Registrant Phone:[ ]*(?P.*)\n)?(?:Registrant Phone Ext:[ ]*(?P.*)\n)?(?:Registrant Fax:[ ]*(?P.*)\n)?(?:Registrant Fax Ext:[ ]*(?P.*)\n)?(?:Registrant Email:[ ]*(?P.+)\n)?", # WildWestDomains, GoDaddy, Namecheap/eNom, Ascio, Musedoma (.museum) "Registrant\n(?: (?P.+)\n)? (?P.+)\n Email:(?P.+)\n (?P.+)\n(?: (?P.+)\n)? (?P.+) (?P.+)\n (?P.+)\n Tel: (?P.+)\n\n", # internet.bs " Registrant Contact Details:[ ]*\n (?P.*)\n (?P.*)[ ]{2,}\((?P.*)\)\n (?P.*)\n(?: (?P.*)\n)?(?: (?P.*)\n)? (?P.*)\n (?P.*),(?P.*)\n (?P.*)\n Tel. (?P.*)", # Whois.com "owner-id:[ ]*(?P.*)\n(?:owner-organization:[ ]*(?P.*)\n)?owner-name:[ ]*(?P.*)\nowner-street:[ ]*(?P.*)\nowner-city:[ ]*(?P.*)\nowner-zip:[ ]*(?P.*)\nowner-country:[ ]*(?P.*)\n(?:owner-phone:[ ]*(?P.*)\n)?(?:owner-fax:[ ]*(?P.*)\n)?owner-email:[ ]*(?P.*)", # InterNetworX @@ -429,7 +432,7 @@ def parse_registrants(data): "Tech ID:(?P.+)\nTech Name:(?P.*)\n(:?Tech Organization:(?P.*)\n)?Tech Street1:(?P.*)\n(?:Tech Street2:(?P.*)\n)?(?:Tech Street3:(?P.*)\n)?Tech City:(?P.*)\nTech State/Province:(?P.*)\nTech Postal Code:(?P.*)\nTech Country:(?P.*)\nTech Phone:(?P.*)\n(?:Tech Phone Ext.:(?P.*)\n)?(?:Tech FAX:(?P.*)\n)?(?:Tech FAX Ext.:(?P.*)\n)?Tech Email:(?P.*)", # Public Interest Registry (.org), nic.pw "Technical Contact ID:\s*(?P.+)\nTechnical Contact Name:\s*(?P.+)\nTechnical Contact Organization:\s*(?P.*)\nTechnical Contact Address1:\s*(?P.+)\nTechnical Contact Address2:\s*(?P.*)\nTechnical Contact City:\s*(?P.+)\nTechnical Contact State/Province:\s*(?P.+)\nTechnical Contact Postal Code:\s*(?P.+)\nTechnical Contact Country:\s*(?P.+)\nTechnical Contact Country Code:\s*(?P.+)\nTechnical Contact Phone Number:\s*(?P.+)\nTechnical Contact Email:\s*(?P.+)\n", # .CO Internet "Tech Contact: (?P.+)\nTech Organization: (?P.+)\nTech Name: (?P.+)\nTech Street: (?P.+)\nTech City: (?P.+)\nTech Postal Code: (?P.+)\nTech State: (?P.+)\nTech Country: (?P.+)\nTech Phone: (?P.*)\nTech Phone Ext: (?P.*)\nTech Fax: (?P.*)\nTech Fax Ext: (?P.*)\nTech Email: (?P.*)\n", # Key-Systems GmbH - "(?:Tech ID:[ ]*(?P.*)\n)?Tech[ ]*Name:[ ]*(?P.*)\nTech[ ]*Organization:[ ]*(?P.*)\nTech[ ]*Street:[ ]*(?P.+)\n(?:Tech[ ]*Street:[ ]*(?P.+)\n)?Tech[ ]*City:[ ]*(?P.+)\nTech[ ]*State\/Province:[ ]*(?P.+)\nTech[ ]*Postal[ ]*Code:[ ]*(?P.+)\nTech[ ]*Country:[ ]*(?P.+)\n(?:Tech[ ]*Phone:[ ]*(?P.*)\n)?(?:Tech[ ]*Phone[ ]*Ext:[ ]*(?P.*)\n)?(?:Tech[ ]*Fax:[ ]*(?P.*)\n)?(?:Tech[ ]*Fax[ ]*Ext:\s*?(?P.*)\n)?(?:Tech[ ]*Email:[ ]*(?P.+)\n)?", # WildWestDomains, GoDaddy, Namecheap/eNom, Ascio, Musedoma (.museum) + "(?:Tech ID:[ ]*(?P.*)\n)?Tech[ ]*Name:[ ]*(?P.*)\n(?:Tech[ ]*Organization:[ ]*(?P.*)\n)?Tech[ ]*Street:[ ]*(?P.+)\n(?:Tech[ ]*Street:[ ]*(?P.+)\n)?Tech[ ]*City:[ ]*(?P.+)\nTech[ ]*State\/Province:[ ]*(?P.+)\nTech[ ]*Postal[ ]*Code:[ ]*(?P.+)\nTech[ ]*Country:[ ]*(?P.+)\n(?:Tech[ ]*Phone:[ ]*(?P.*)\n)?(?:Tech[ ]*Phone[ ]*Ext:[ ]*(?P.*)\n)?(?:Tech[ ]*Fax:[ ]*(?P.*)\n)?(?:Tech[ ]*Fax[ ]*Ext:\s*?(?P.*)\n)?(?:Tech[ ]*Email:[ ]*(?P.+)\n)?", # WildWestDomains, GoDaddy, Namecheap/eNom, Ascio, Musedoma (.museum) "Technical Contact\n(?: (?P.+)\n)? (?P.+)\n Email:(?P.+)\n (?P.+)\n(?: (?P.+)\n)? (?P.+) (?P.+)\n (?P.+)\n Tel: (?P.+)\n\n", # internet.bs " Technical Contact Details:[ ]*\n (?P.*)\n (?P.*)[ ]{2,}\((?P.*)\)\n (?P.*)\n(?: (?P.*)\n)?(?: (?P.*)\n)? (?P.*)\n (?P.*),(?P.*)\n (?P.*)\n Tel. (?P.*)", # Whois.com "tech-id:[ ]*(?P.*)\n(?:tech-organization:[ ]*(?P.*)\n)?tech-name:[ ]*(?P.*)\ntech-street:[ ]*(?P.*)\ntech-city:[ ]*(?P.*)\ntech-zip:[ ]*(?P.*)\ntech-country:[ ]*(?P.*)\n(?:tech-phone:[ ]*(?P.*)\n)?(?:tech-fax:[ ]*(?P.*)\n)?tech-email:[ ]*(?P.*)", # InterNetworX @@ -445,7 +448,7 @@ def parse_registrants(data): "Admin ID:(?P.+)\nAdmin Name:(?P.*)\n(?:Admin Organization:(?P.*)\n)?Admin Street1:(?P.*)\n(?:Admin Street2:(?P.*)\n)?(?:Admin Street3:(?P.*)\n)?Admin City:(?P.*)\nAdmin State/Province:(?P.*)\nAdmin Postal Code:(?P.*)\nAdmin Country:(?P.*)\nAdmin Phone:(?P.*)\n(?:Admin Phone Ext.:(?P.*)\n)?(?:Admin FAX:(?P.*)\n)?(?:Admin FAX Ext.:(?P.*)\n)?Admin Email:(?P.*)", # Public Interest Registry (.org), nic.pw "Administrative Contact ID:\s*(?P.+)\nAdministrative Contact Name:\s*(?P.+)\nAdministrative Contact Organization:\s*(?P.*)\nAdministrative Contact Address1:\s*(?P.+)\nAdministrative Contact Address2:\s*(?P.*)\nAdministrative Contact City:\s*(?P.+)\nAdministrative Contact State/Province:\s*(?P.+)\nAdministrative Contact Postal Code:\s*(?P.+)\nAdministrative Contact Country:\s*(?P.+)\nAdministrative Contact Country Code:\s*(?P.+)\nAdministrative Contact Phone Number:\s*(?P.+)\nAdministrative Contact Email:\s*(?P.+)\n", # .CO Internet "Admin Contact: (?P.+)\nAdmin Organization: (?P.+)\nAdmin Name: (?P.+)\nAdmin Street: (?P.+)\nAdmin City: (?P.+)\nAdmin State: (?P.+)\nAdmin Postal Code: (?P.+)\nAdmin Country: (?P.+)\nAdmin Phone: (?P.*)\nAdmin Phone Ext: (?P.*)\nAdmin Fax: (?P.*)\nAdmin Fax Ext: (?P.*)\nAdmin Email: (?P.*)\n", # Key-Systems GmbH - "(?:Admin ID:[ ]*(?P.*)\n)?Admin[ ]*Name:[ ]*(?P.*)\nAdmin[ ]*Organization:[ ]*(?P.*)\nAdmin[ ]*Street:[ ]*(?P.+)\n(?:Admin[ ]*Street:[ ]*(?P.+)\n)?Admin[ ]*City:[ ]*(?P.+)\nAdmin[ ]*State\/Province:[ ]*(?P.+)\nAdmin[ ]*Postal[ ]*Code:[ ]*(?P.+)\nAdmin[ ]*Country:[ ]*(?P.+)\n(?:Admin[ ]*Phone:[ ]*(?P.*)\n)?(?:Admin[ ]*Phone[ ]*Ext:[ ]*(?P.*)\n)?(?:Admin[ ]*Fax:[ ]*(?P.*)\n)?(?:Admin[ ]*Fax[ ]*Ext:\s*?(?P.*)\n)?(?:Admin[ ]*Email:[ ]*(?P.+)\n)?", # WildWestDomains, GoDaddy, Namecheap/eNom, Ascio, Musedoma (.museum) + "(?:Admin ID:[ ]*(?P.*)\n)?Admin[ ]*Name:[ ]*(?P.*)\n(?:Admin[ ]*Organization:[ ]*(?P.*)\n)?Admin[ ]*Street:[ ]*(?P.+)\n(?:Admin[ ]*Street:[ ]*(?P.+)\n)?Admin[ ]*City:[ ]*(?P.+)\nAdmin[ ]*State\/Province:[ ]*(?P.+)\nAdmin[ ]*Postal[ ]*Code:[ ]*(?P.+)\nAdmin[ ]*Country:[ ]*(?P.+)\n(?:Admin[ ]*Phone:[ ]*(?P.*)\n)?(?:Admin[ ]*Phone[ ]*Ext:[ ]*(?P.*)\n)?(?:Admin[ ]*Fax:[ ]*(?P.*)\n)?(?:Admin[ ]*Fax[ ]*Ext:\s*?(?P.*)\n)?(?:Admin[ ]*Email:[ ]*(?P.+)\n)?", # WildWestDomains, GoDaddy, Namecheap/eNom, Ascio, Musedoma (.museum) "Administrative Contact\n(?: (?P.+)\n)? (?P.+)\n Email:(?P.+)\n (?P.+)\n(?: (?P.+)\n)? (?P.+) (?P.+)\n (?P.+)\n Tel: (?P.+)\n\n", # internet.bs " Administrative Contact Details:[ ]*\n (?P.*)\n (?P.*)[ ]{2,}\((?P.*)\)\n (?P.*)\n(?: (?P.*)\n)?(?: (?P.*)\n)? (?P.*)\n (?P.*),(?P.*)\n (?P.*)\n Tel. (?P.*)", # Whois.com "admin-id:[ ]*(?P.*)\n(?:admin-organization:[ ]*(?P.*)\n)?admin-name:[ ]*(?P.*)\nadmin-street:[ ]*(?P.*)\nadmin-city:[ ]*(?P.*)\nadmin-zip:[ ]*(?P.*)\nadmin-country:[ ]*(?P.*)\n(?:admin-phone:[ ]*(?P.*)\n)?(?:admin-fax:[ ]*(?P.*)\n)?admin-email:[ ]*(?P.*)", # InterNetworX diff --git a/test/data/foxiepa.ws b/test/data/foxiepa.ws new file mode 100644 index 0000000..0318cae --- /dev/null +++ b/test/data/foxiepa.ws @@ -0,0 +1,78 @@ +Domain Name: FOXIEPA.WS +Registrar WHOIS Server: whois.dynadot.com +Registrar URL: http://www.dynadot.com +Updated Date: 1970-01-01T00:00:00.0Z +Creation Date: 2013-01-02T23:46:37.0Z +Registrar Registration Expiration Date: 2014-01-02T23:46:37.0Z +Registrar: DYNADOT LLC +Registrar IANA ID: 472 +Registrar Abuse Contact Email: abuse@dynadot.com +Registrar Abuse Contact Phone: +1.6502620100 +Domain Status: clientTransferProhibited +Registrant Name: Joshua Theze +Registrant Street: 4637 Carmel Vista Lane +Registrant City: Charlotte +Registrant State/Province: North Carolina +Registrant Postal Code: 28226 +Registrant Country: US +Registrant Phone: +1.7049570414 +Registrant Email: joshua.theze@gmail.com +Admin Name: Joshua Theze +Admin Street: 4637 Carmel Vista Lane +Admin City: Charlotte +Admin State/Province: North Carolina +Admin Postal Code: 28226 +Admin Country: US +Admin Phone: +1.7049570414 +Admin Email: joshua.theze@gmail.com +Tech Name: Joshua Theze +Tech Street: 4637 Carmel Vista Lane +Tech City: Charlotte +Tech State/Province: North Carolina +Tech Postal Code: 28226 +Tech Country: US +Tech Phone: +1.7049570414 +Tech Email: joshua.theze@gmail.com +Name Server: ns1.hopcount.nl +Name Server: ns2.hopcount.nl +Name Server: ns3.hopcount.nl +DNSSEC: notApplicable +URL of the ICANN WHOIS Data Problem Reporting System: http://wdprs.internic.net/ +>>> Last update of WHOIS database: 2013-11-24 08:56:59 -0800 <<< + + +-- + + +Welcome to the .WS Whois Server + +Use of this service for any purpose other +than determining the availability of a domain +in the .WS TLD to be registered is strictly +prohibited. + + Domain Name: FOXIEPA.WS + + Registrant Name: Use registrar whois listed below + Registrant Email: Use registrar whois listed below + + Administrative Contact Email: Use registrar whois listed below + Administrative Contact Telephone: Use registrar whois listed below + + Registrar Name: Dynadot + Registrar Email: info@dynadot.com + Registrar Telephone: (650) 585-1961 + Registrar Whois: whois.dynadot.com + + Domain Created: 2013-01-02 + Domain Last Updated: 2013-01-02 + Domain Currently Expires: 2014-01-02 + + Current Nameservers: + + ns1.hopcount.nl + ns2.hopcount.nl + ns3.hopcount.nl + + + diff --git a/test/target_default/foxiepa.ws b/test/target_default/foxiepa.ws new file mode 100644 index 0000000..805aa91 --- /dev/null +++ b/test/target_default/foxiepa.ws @@ -0,0 +1 @@ +{"status": ["clientTransferProhibited"], "updated_date": ["1970-01-01T00:00:00"], "contacts": {"admin": {"city": "Charlotte", "name": "Joshua Theze", "state": "North Carolina", "phone": "+1.7049570414", "street": "4637 Carmel Vista Lane", "country": "US", "postalcode": "28226", "email": "joshua.theze@gmail.com"}, "tech": {"city": "Charlotte", "name": "Joshua Theze", "state": "North Carolina", "phone": "+1.7049570414", "street": "4637 Carmel Vista Lane", "country": "US", "postalcode": "28226", "email": "joshua.theze@gmail.com"}, "registrant": {"city": "Charlotte", "name": "Joshua Theze", "state": "North Carolina", "phone": "+1.7049570414", "street": "4637 Carmel Vista Lane", "country": "US", "postalcode": "28226", "email": "joshua.theze@gmail.com"}, "billing": null}, "nameservers": ["ns1.hopcount.nl", "ns2.hopcount.nl", "ns3.hopcount.nl"], "expiration_date": ["2014-01-02T23:46:37"], "creation_date": ["2013-01-02T23:46:37"], "raw": ["Domain Name: FOXIEPA.WS\nRegistrar WHOIS Server: whois.dynadot.com\nRegistrar URL: http://www.dynadot.com\nUpdated Date: 1970-01-01T00:00:00.0Z\nCreation Date: 2013-01-02T23:46:37.0Z\nRegistrar Registration Expiration Date: 2014-01-02T23:46:37.0Z\nRegistrar: DYNADOT LLC\nRegistrar IANA ID: 472\nRegistrar Abuse Contact Email: abuse@dynadot.com\nRegistrar Abuse Contact Phone: +1.6502620100\nDomain Status: clientTransferProhibited\nRegistrant Name: Joshua Theze\nRegistrant Street: 4637 Carmel Vista Lane\nRegistrant City: Charlotte\nRegistrant State/Province: North Carolina\nRegistrant Postal Code: 28226\nRegistrant Country: US\nRegistrant Phone: +1.7049570414\nRegistrant Email: joshua.theze@gmail.com\nAdmin Name: Joshua Theze\nAdmin Street: 4637 Carmel Vista Lane\nAdmin City: Charlotte\nAdmin State/Province: North Carolina\nAdmin Postal Code: 28226\nAdmin Country: US\nAdmin Phone: +1.7049570414\nAdmin Email: joshua.theze@gmail.com\nTech Name: Joshua Theze\nTech Street: 4637 Carmel Vista Lane\nTech City: Charlotte\nTech State/Province: North Carolina\nTech Postal Code: 28226\nTech Country: US\nTech Phone: +1.7049570414\nTech Email: joshua.theze@gmail.com\nName Server: ns1.hopcount.nl\nName Server: ns2.hopcount.nl\nName Server: ns3.hopcount.nl\nDNSSEC: notApplicable\nURL of the ICANN WHOIS Data Problem Reporting System: http://wdprs.internic.net/\n>>> Last update of WHOIS database: 2013-11-24 08:56:59 -0800 <<<\n\n", "\n\nWelcome to the .WS Whois Server\n\nUse of this service for any purpose other\nthan determining the availability of a domain\nin the .WS TLD to be registered is strictly\nprohibited.\n\n Domain Name: FOXIEPA.WS\n\n Registrant Name: Use registrar whois listed below\n Registrant Email: Use registrar whois listed below\n\n Administrative Contact Email: Use registrar whois listed below\n Administrative Contact Telephone: Use registrar whois listed below\n\n Registrar Name: Dynadot\n Registrar Email: info@dynadot.com\n Registrar Telephone: (650) 585-1961\n Registrar Whois: whois.dynadot.com\n\n Domain Created: 2013-01-02\n Domain Last Updated: 2013-01-02\n Domain Currently Expires: 2014-01-02\n\n Current Nameservers:\n\n ns1.hopcount.nl\n ns2.hopcount.nl\n ns3.hopcount.nl\n\n\n\n"], "whois_server": ["whois.dynadot.com"], "registrar": ["DYNADOT LLC"], "emails": ["abuse@dynadot.com"]} \ No newline at end of file diff --git a/test/target_normalized/anonne.ws b/test/target_normalized/anonne.ws index b3f304a..1f025f8 100644 --- a/test/target_normalized/anonne.ws +++ b/test/target_normalized/anonne.ws @@ -1 +1 @@ -{"updated_date": ["2013-04-06T00:00:00"], "contacts": {"admin": {"city": "Dordrecht", "fax": "+1.5555555555", "name": "Sven Slootweg", "state": "Zuid-holland", "phone": "+31.626519955", "street": "Wijnstraat 211", "country": "NL", "postalcode": "3311BV", "email": "jamsoftgamedev@gmail.com"}, "tech": {"city": "Dordrecht", "fax": "+1.5555555555", "name": "Sven Slootweg", "state": "Zuid-holland", "phone": "+31.626519955", "street": "Wijnstraat 211", "country": "NL", "postalcode": "3311BV", "email": "jamsoftgamedev@gmail.com"}, "registrant": {"city": "Dordrecht", "name": "Sven Slootweg", "state": "Zuid-holland", "street": "Wijnstraat 211", "country": "NL", "postalcode": "3311BV"}, "billing": null}, "nameservers": ["ns1.he.net", "ns2.he.net", "ns3.he.net", "ns4.he.net", "ns5.he.net"], "expiration_date": ["2014-04-07T19:40:22"], "creation_date": ["2012-04-07T12:40:00"], "raw": ["\n\nDomain Name: ANONNE.WS\nCreation Date: 2012-04-07 12:40:00Z\nRegistrar Registration Expiration Date: 2014-04-07 19:40:22Z\nRegistrar: ENOM, INC.\nReseller: NAMECHEAP.COM\nRegistrant Name: SVEN SLOOTWEG\nRegistrant Organization: \nRegistrant Street: WIJNSTRAAT 211\nRegistrant City: DORDRECHT\nRegistrant State/Province: ZUID-HOLLAND\nRegistrant Postal Code: 3311BV\nRegistrant Country: NL\nAdmin Name: SVEN SLOOTWEG\nAdmin Organization: \nAdmin Street: WIJNSTRAAT 211\nAdmin City: DORDRECHT\nAdmin State/Province: ZUID-HOLLAND\nAdmin Postal Code: 3311BV\nAdmin Country: NL\nAdmin Phone: +31.626519955\nAdmin Phone Ext: \nAdmin Fax: +1.5555555555\nAdmin Fax Ext:\nAdmin Email: JAMSOFTGAMEDEV@GMAIL.COM\nTech Name: SVEN SLOOTWEG\nTech Organization: \nTech Street: WIJNSTRAAT 211\nTech City: DORDRECHT\nTech State/Province: ZUID-HOLLAND\nTech Postal Code: 3311BV\nTech Country: NL\nTech Phone: +31.626519955\nTech Phone Ext: \nTech Fax: +1.5555555555\nTech Fax Ext: \nTech Email: JAMSOFTGAMEDEV@GMAIL.COM\nName Server: NS1.HE.NET\nName Server: NS2.HE.NET\nName Server: NS3.HE.NET\nName Server: NS4.HE.NET\nName Server: NS5.HE.NET\n\nThe data in this whois database is provided to you for information\npurposes only, that is, to assist you in obtaining information about or\nrelated to a domain name registration record. We make this information\navailable \"as is,\" and do not guarantee its accuracy. By submitting a\nwhois query, you agree that you will use this data only for lawful\npurposes and that, under no circumstances will you use this data to: (1)\nenable high volume, automated, electronic processes that stress or load\nthis whois database system providing you this information; or (2) allow,\nenable, or otherwise support the transmission of mass unsolicited,\ncommercial advertising or solicitations via direct mail, electronic\nmail, or by telephone. The compilation, repackaging, dissemination or\nother use of this data is expressly prohibited without prior written\nconsent from us. \n\nWe reserve the right to modify these terms at any time. By submitting \nthis query, you agree to abide by these terms.\nVersion 6.3 4/3/2002\n", "\n\nWelcome to the .WS Whois Server\n\nUse of this service for any purpose other\nthan determining the availability of a domain\nin the .WS TLD to be registered is strictly\nprohibited.\n\n Domain Name: ANONNE.WS\n\n Registrant Name: Use registrar whois listed below\n Registrant Email: Use registrar whois listed below\n\n Administrative Contact Email: Use registrar whois listed below\n Administrative Contact Telephone: Use registrar whois listed below\n\n Registrar Name: eNom\n Registrar Email: info@enom.com\n Registrar Telephone: 425-974-4500\n Registrar Whois: whois.enom.com\n\n Domain Created: 2012-04-07\n Domain Last Updated: 2013-04-06\n Domain Currently Expires: 2014-04-07\n\n Current Nameservers:\n\n ns1.he.net\n ns2.he.net\n ns3.he.net\n ns4.he.net\n ns5.he.net\n\n\n\n"], "whois_server": ["whois.enom.com"], "registrar": ["Enom, Inc."]} \ No newline at end of file +{"updated_date": ["2013-04-06T00:00:00"], "contacts": {"admin": {"city": "Dordrecht", "fax": "+1.5555555555", "name": "Sven Slootweg", "state": "Zuid-holland", "phone": "+31.626519955", "street": "Wijnstraat 211", "country": "NL", "postalcode": "3311BV", "email": "jamsoftgamedev@gmail.com"}, "tech": {"city": "Dordrecht", "fax": "+1.5555555555", "name": "Sven Slootweg", "state": "Zuid-holland", "phone": "+31.626519955", "street": "Wijnstraat 211", "country": "NL", "postalcode": "3311BV", "email": "jamsoftgamedev@gmail.com"}, "registrant": {"city": "Dordrecht", "name": "Sven Slootweg", "state": "Zuid-holland", "street": "Wijnstraat 211", "country": "NL", "postalcode": "3311BV"}, "billing": null}, "nameservers": ["ns1.he.net", "ns2.he.net", "ns3.he.net", "ns4.he.net", "ns5.he.net"], "expiration_date": ["2014-04-07T19:40:22"], "creation_date": ["2012-04-07T12:40:00"], "raw": ["\n\nDomain Name: ANONNE.WS\nCreation Date: 2012-04-07 12:40:00Z\nRegistrar Registration Expiration Date: 2014-04-07 19:40:22Z\nRegistrar: ENOM, INC.\nReseller: NAMECHEAP.COM\nRegistrant Name: SVEN SLOOTWEG\nRegistrant Organization: \nRegistrant Street: WIJNSTRAAT 211\nRegistrant City: DORDRECHT\nRegistrant State/Province: ZUID-HOLLAND\nRegistrant Postal Code: 3311BV\nRegistrant Country: NL\nAdmin Name: SVEN SLOOTWEG\nAdmin Organization: \nAdmin Street: WIJNSTRAAT 211\nAdmin City: DORDRECHT\nAdmin State/Province: ZUID-HOLLAND\nAdmin Postal Code: 3311BV\nAdmin Country: NL\nAdmin Phone: +31.626519955\nAdmin Phone Ext: \nAdmin Fax: +1.5555555555\nAdmin Fax Ext:\nAdmin Email: JAMSOFTGAMEDEV@GMAIL.COM\nTech Name: SVEN SLOOTWEG\nTech Organization: \nTech Street: WIJNSTRAAT 211\nTech City: DORDRECHT\nTech State/Province: ZUID-HOLLAND\nTech Postal Code: 3311BV\nTech Country: NL\nTech Phone: +31.626519955\nTech Phone Ext: \nTech Fax: +1.5555555555\nTech Fax Ext: \nTech Email: JAMSOFTGAMEDEV@GMAIL.COM\nName Server: NS1.HE.NET\nName Server: NS2.HE.NET\nName Server: NS3.HE.NET\nName Server: NS4.HE.NET\nName Server: NS5.HE.NET\n\nThe data in this whois database is provided to you for information\npurposes only, that is, to assist you in obtaining information about or\nrelated to a domain name registration record. We make this information\navailable \"as is,\" and do not guarantee its accuracy. By submitting a\nwhois query, you agree that you will use this data only for lawful\npurposes and that, under no circumstances will you use this data to: (1)\nenable high volume, automated, electronic processes that stress or load\nthis whois database system providing you this information; or (2) allow,\nenable, or otherwise support the transmission of mass unsolicited,\ncommercial advertising or solicitations via direct mail, electronic\nmail, or by telephone. The compilation, repackaging, dissemination or\nother use of this data is expressly prohibited without prior written\nconsent from us. \n\nWe reserve the right to modify these terms at any time. By submitting \nthis query, you agree to abide by these terms.\nVersion 6.3 4/3/2002\n", "\n\nWelcome to the .WS Whois Server\n\nUse of this service for any purpose other\nthan determining the availability of a domain\nin the .WS TLD to be registered is strictly\nprohibited.\n\n Domain Name: ANONNE.WS\n\n Registrant Name: Use registrar whois listed below\n Registrant Email: Use registrar whois listed below\n\n Administrative Contact Email: Use registrar whois listed below\n Administrative Contact Telephone: Use registrar whois listed below\n\n Registrar Name: eNom\n Registrar Email: info@enom.com\n Registrar Telephone: 425-974-4500\n Registrar Whois: whois.enom.com\n\n Domain Created: 2012-04-07\n Domain Last Updated: 2013-04-06\n Domain Currently Expires: 2014-04-07\n\n Current Nameservers:\n\n ns1.he.net\n ns2.he.net\n ns3.he.net\n ns4.he.net\n ns5.he.net\n\n\n\n"], "whois_server": ["whois.enom.com"], "registrar": ["Enom, INC."]} \ No newline at end of file diff --git a/test/target_normalized/aol.com b/test/target_normalized/aol.com index e807252..06a1103 100644 --- a/test/target_normalized/aol.com +++ b/test/target_normalized/aol.com @@ -1 +1 @@ -{"status": ["clientTransferProhibited", "serverDeleteProhibited", "serverTransferProhibited", "serverUpdateProhibited"], "updated_date": ["2013-09-24T00:00:00", "2013-11-23T14:39:22"], "contacts": {"admin": {"city": "Dulles", "name": "Domain Admin", "phone": "+1.7032654670", "state": "VA", "street": "AOL Inc.\n22000 AOL Way", "country": "United States", "postalcode": "20166", "email": "domain-adm@corp.aol.com"}, "tech": {"city": "Dulles", "name": "Domain Admin", "phone": "+1.7032654670", "state": "VA", "street": "AOL Inc.\n22000 AOL Way", "country": "United States", "postalcode": "20166", "email": "domain-adm@corp.aol.com"}, "registrant": {"city": "Dulles", "name": "AOL Inc.", "state": "VA", "street": "22000 AOL Way", "country": "United States", "postalcode": "20166"}, "billing": null}, "nameservers": ["dns-02.ns.aol.com", "dns-01.ns.aol.com", "dns-07.ns.aol.com", "dns-06.ns.aol.com"], "expiration_date": ["2014-11-23T00:00:00"], "creation_date": ["1995-06-22T00:00:00"], "raw": ["\nDomain Name.......... aol.com\n Creation Date........ 1995-06-22\n Registration Date.... 2009-10-03\n Expiry Date.......... 2014-11-24\n Organisation Name.... AOL Inc.\n Organisation Address. 22000 AOL Way\n Organisation Address. \n Organisation Address. \n Organisation Address. Dulles\n Organisation Address. 20166\n Organisation Address. VA\n Organisation Address. UNITED STATES\n\nAdmin Name........... Domain Admin\n Admin Address........ AOL Inc.\n Admin Address........ 22000 AOL Way\n Admin Address........ \n Admin Address. Dulles\n Admin Address........ 20166\n Admin Address........ VA\n Admin Address........ UNITED STATES\n Admin Email.......... domain-adm@corp.aol.com\n Admin Phone.......... +1.7032654670\n Admin Fax............ \n\nTech Name............ Domain Admin\n Tech Address......... AOL Inc.\n Tech Address......... 22000 AOL Way\n Tech Address......... \n Tech Address......... Dulles\n Tech Address......... 20166\n Tech Address......... VA\n Tech Address......... UNITED STATES\n Tech Email........... domain-adm@corp.aol.com\n Tech Phone........... +1.7032654670\n Tech Fax............. \n Name Server.......... DNS-02.NS.AOL.COM\n Name Server.......... DNS-01.NS.AOL.COM\n Name Server.......... DNS-07.NS.AOL.COM\n Name Server.......... DNS-06.NS.AOL.COM\n\n\n", "\nWhois Server Version 2.0\n\nDomain names in the .com and .net domains can now be registered\nwith many different competing registrars. Go to http://www.internic.net\nfor detailed information.\n\n Server Name: AOL.COM.ZZZZZ.GET.LAID.AT.WWW.SWINGINGCOMMUNITY.COM\n IP Address: 69.41.185.197\n Registrar: TUCOWS DOMAINS INC.\n Whois Server: whois.tucows.com\n Referral URL: http://domainhelp.opensrs.net\n\n Server Name: AOL.COM.MORE.INFO.AT.WWW.BEYONDWHOIS.COM\n IP Address: 203.36.226.2\n Registrar: INSTRA CORPORATION PTY, LTD.\n Whois Server: whois.instra.net\n Referral URL: http://www.instra.com\n\n Server Name: AOL.COM.IS.N0T.AS.1337.AS.GULLI.COM\n IP Address: 80.190.192.24\n Registrar: CORE INTERNET COUNCIL OF REGISTRARS\n Whois Server: whois.corenic.net\n Referral URL: http://www.corenic.net\n\n Server Name: AOL.COM.IS.0WNED.BY.SUB7.NET\n IP Address: 216.78.25.45\n Registrar: TUCOWS DOMAINS INC.\n Whois Server: whois.tucows.com\n Referral URL: http://domainhelp.opensrs.net\n\n Server Name: AOL.COM.BR\n Registrar: ENOM, INC.\n Whois Server: whois.enom.com\n Referral URL: http://www.enom.com\n\n Server Name: AOL.COM.AINT.GOT.AS.MUCH.FREE.PORN.AS.SECZ.COM\n IP Address: 209.187.114.133\n Registrar: TUCOWS DOMAINS INC.\n Whois Server: whois.tucows.com\n Referral URL: http://domainhelp.opensrs.net\n\n Domain Name: AOL.COM\n Registrar: MELBOURNE IT, LTD. D/B/A INTERNET NAMES WORLDWIDE\n Whois Server: whois.melbourneit.com\n Referral URL: http://www.melbourneit.com\n Name Server: DNS-01.NS.AOL.COM\n Name Server: DNS-02.NS.AOL.COM\n Name Server: DNS-06.NS.AOL.COM\n Name Server: DNS-07.NS.AOL.COM\n Status: clientTransferProhibited\n Status: serverDeleteProhibited\n Status: serverTransferProhibited\n Status: serverUpdateProhibited\n Updated Date: 24-sep-2013\n Creation Date: 22-jun-1995\n Expiration Date: 23-nov-2014\n\n>>> Last update of whois database: Sat, 23 Nov 2013 14:39:22 UTC <<<\n\nNOTICE: The expiration date displayed in this record is the date the \nregistrar's sponsorship of the domain name registration in the registry is \ncurrently set to expire. This date does not necessarily reflect the expiration \ndate of the domain name registrant's agreement with the sponsoring \nregistrar. Users may consult the sponsoring registrar's Whois database to \nview the registrar's reported date of expiration for this registration.\n\nTERMS OF USE: You are not authorized to access or query our Whois \ndatabase through the use of electronic processes that are high-volume and \nautomated except as reasonably necessary to register domain names or \nmodify existing registrations; the Data in VeriSign Global Registry \nServices' (\"VeriSign\") Whois database is provided by VeriSign for \ninformation purposes only, and to assist persons in obtaining information \nabout or related to a domain name registration record. VeriSign does not \nguarantee its accuracy. By submitting a Whois query, you agree to abide \nby the following terms of use: You agree that you may use this Data only \nfor lawful purposes and that under no circumstances will you use this Data \nto: (1) allow, enable, or otherwise support the transmission of mass \nunsolicited, commercial advertising or solicitations via e-mail, telephone, \nor facsimile; or (2) enable high volume, automated, electronic processes \nthat apply to VeriSign (or its computer systems). The compilation, \nrepackaging, dissemination or other use of this Data is expressly \nprohibited without the prior written consent of VeriSign. You agree not to \nuse electronic processes that are automated and high-volume to access or \nquery the Whois database except as reasonably necessary to register \ndomain names or modify existing registrations. VeriSign reserves the right \nto restrict your access to the Whois database in its sole discretion to ensure \noperational stability. VeriSign may restrict or terminate your access to the \nWhois database for failure to abide by these terms of use. VeriSign \nreserves the right to modify these terms at any time. \n\nThe Registry database contains ONLY .COM, .NET, .EDU domains and\nRegistrars.\n"], "whois_server": ["whois.tucows.com", "whois.instra.net", "whois.corenic.net", "whois.tucows.com", "whois.enom.com", "whois.tucows.com", "whois.melbourneit.com"], "registrar": ["Tucows Domains Inc.", "Instra Corporation Pty, Ltd.", "Core Internet Council Of Registrars", "Enom, Inc.", "Melbourne It, Ltd. D/b/a Internet Names Worldwide"]} \ No newline at end of file +{"status": ["clientTransferProhibited", "serverDeleteProhibited", "serverTransferProhibited", "serverUpdateProhibited"], "updated_date": ["2013-09-24T00:00:00", "2013-11-23T14:39:22"], "contacts": {"admin": {"city": "Dulles", "name": "Domain Admin", "phone": "+1.7032654670", "state": "VA", "street": "AOL Inc.\n22000 AOL Way", "country": "United States", "postalcode": "20166", "email": "domain-adm@corp.aol.com"}, "tech": {"city": "Dulles", "name": "Domain Admin", "phone": "+1.7032654670", "state": "VA", "street": "AOL Inc.\n22000 AOL Way", "country": "United States", "postalcode": "20166", "email": "domain-adm@corp.aol.com"}, "registrant": {"city": "Dulles", "name": "AOL Inc.", "state": "VA", "street": "22000 AOL Way", "country": "United States", "postalcode": "20166"}, "billing": null}, "nameservers": ["dns-02.ns.aol.com", "dns-01.ns.aol.com", "dns-07.ns.aol.com", "dns-06.ns.aol.com"], "expiration_date": ["2014-11-23T00:00:00"], "creation_date": ["1995-06-22T00:00:00"], "raw": ["\nDomain Name.......... aol.com\n Creation Date........ 1995-06-22\n Registration Date.... 2009-10-03\n Expiry Date.......... 2014-11-24\n Organisation Name.... AOL Inc.\n Organisation Address. 22000 AOL Way\n Organisation Address. \n Organisation Address. \n Organisation Address. Dulles\n Organisation Address. 20166\n Organisation Address. VA\n Organisation Address. UNITED STATES\n\nAdmin Name........... Domain Admin\n Admin Address........ AOL Inc.\n Admin Address........ 22000 AOL Way\n Admin Address........ \n Admin Address. Dulles\n Admin Address........ 20166\n Admin Address........ VA\n Admin Address........ UNITED STATES\n Admin Email.......... domain-adm@corp.aol.com\n Admin Phone.......... +1.7032654670\n Admin Fax............ \n\nTech Name............ Domain Admin\n Tech Address......... AOL Inc.\n Tech Address......... 22000 AOL Way\n Tech Address......... \n Tech Address......... Dulles\n Tech Address......... 20166\n Tech Address......... VA\n Tech Address......... UNITED STATES\n Tech Email........... domain-adm@corp.aol.com\n Tech Phone........... +1.7032654670\n Tech Fax............. \n Name Server.......... DNS-02.NS.AOL.COM\n Name Server.......... DNS-01.NS.AOL.COM\n Name Server.......... DNS-07.NS.AOL.COM\n Name Server.......... DNS-06.NS.AOL.COM\n\n\n", "\nWhois Server Version 2.0\n\nDomain names in the .com and .net domains can now be registered\nwith many different competing registrars. Go to http://www.internic.net\nfor detailed information.\n\n Server Name: AOL.COM.ZZZZZ.GET.LAID.AT.WWW.SWINGINGCOMMUNITY.COM\n IP Address: 69.41.185.197\n Registrar: TUCOWS DOMAINS INC.\n Whois Server: whois.tucows.com\n Referral URL: http://domainhelp.opensrs.net\n\n Server Name: AOL.COM.MORE.INFO.AT.WWW.BEYONDWHOIS.COM\n IP Address: 203.36.226.2\n Registrar: INSTRA CORPORATION PTY, LTD.\n Whois Server: whois.instra.net\n Referral URL: http://www.instra.com\n\n Server Name: AOL.COM.IS.N0T.AS.1337.AS.GULLI.COM\n IP Address: 80.190.192.24\n Registrar: CORE INTERNET COUNCIL OF REGISTRARS\n Whois Server: whois.corenic.net\n Referral URL: http://www.corenic.net\n\n Server Name: AOL.COM.IS.0WNED.BY.SUB7.NET\n IP Address: 216.78.25.45\n Registrar: TUCOWS DOMAINS INC.\n Whois Server: whois.tucows.com\n Referral URL: http://domainhelp.opensrs.net\n\n Server Name: AOL.COM.BR\n Registrar: ENOM, INC.\n Whois Server: whois.enom.com\n Referral URL: http://www.enom.com\n\n Server Name: AOL.COM.AINT.GOT.AS.MUCH.FREE.PORN.AS.SECZ.COM\n IP Address: 209.187.114.133\n Registrar: TUCOWS DOMAINS INC.\n Whois Server: whois.tucows.com\n Referral URL: http://domainhelp.opensrs.net\n\n Domain Name: AOL.COM\n Registrar: MELBOURNE IT, LTD. D/B/A INTERNET NAMES WORLDWIDE\n Whois Server: whois.melbourneit.com\n Referral URL: http://www.melbourneit.com\n Name Server: DNS-01.NS.AOL.COM\n Name Server: DNS-02.NS.AOL.COM\n Name Server: DNS-06.NS.AOL.COM\n Name Server: DNS-07.NS.AOL.COM\n Status: clientTransferProhibited\n Status: serverDeleteProhibited\n Status: serverTransferProhibited\n Status: serverUpdateProhibited\n Updated Date: 24-sep-2013\n Creation Date: 22-jun-1995\n Expiration Date: 23-nov-2014\n\n>>> Last update of whois database: Sat, 23 Nov 2013 14:39:22 UTC <<<\n\nNOTICE: The expiration date displayed in this record is the date the \nregistrar's sponsorship of the domain name registration in the registry is \ncurrently set to expire. This date does not necessarily reflect the expiration \ndate of the domain name registrant's agreement with the sponsoring \nregistrar. Users may consult the sponsoring registrar's Whois database to \nview the registrar's reported date of expiration for this registration.\n\nTERMS OF USE: You are not authorized to access or query our Whois \ndatabase through the use of electronic processes that are high-volume and \nautomated except as reasonably necessary to register domain names or \nmodify existing registrations; the Data in VeriSign Global Registry \nServices' (\"VeriSign\") Whois database is provided by VeriSign for \ninformation purposes only, and to assist persons in obtaining information \nabout or related to a domain name registration record. VeriSign does not \nguarantee its accuracy. By submitting a Whois query, you agree to abide \nby the following terms of use: You agree that you may use this Data only \nfor lawful purposes and that under no circumstances will you use this Data \nto: (1) allow, enable, or otherwise support the transmission of mass \nunsolicited, commercial advertising or solicitations via e-mail, telephone, \nor facsimile; or (2) enable high volume, automated, electronic processes \nthat apply to VeriSign (or its computer systems). The compilation, \nrepackaging, dissemination or other use of this Data is expressly \nprohibited without the prior written consent of VeriSign. You agree not to \nuse electronic processes that are automated and high-volume to access or \nquery the Whois database except as reasonably necessary to register \ndomain names or modify existing registrations. VeriSign reserves the right \nto restrict your access to the Whois database in its sole discretion to ensure \noperational stability. VeriSign may restrict or terminate your access to the \nWhois database for failure to abide by these terms of use. VeriSign \nreserves the right to modify these terms at any time. \n\nThe Registry database contains ONLY .COM, .NET, .EDU domains and\nRegistrars.\n"], "whois_server": ["whois.tucows.com", "whois.instra.net", "whois.corenic.net", "whois.tucows.com", "whois.enom.com", "whois.tucows.com", "whois.melbourneit.com"], "registrar": ["Tucows Domains INC.", "Instra Corporation Pty, LTD.", "Core Internet Council OF Registrars", "Enom, INC.", "Melbourne IT, LTD. D/b/a Internet Names Worldwide"]} \ No newline at end of file diff --git a/test/target_normalized/daemonrage.net b/test/target_normalized/daemonrage.net index e25c842..1c14f31 100644 --- a/test/target_normalized/daemonrage.net +++ b/test/target_normalized/daemonrage.net @@ -1 +1 @@ -{"status": ["clientTransferProhibited"], "updated_date": ["2013-10-18T00:00:00", "2013-11-21T04:08:18"], "contacts": {"admin": {"city": "Lincoln", "name": "Paul Webster", "state": "Lincolnshire", "phone": "01522718954", "street": "Worldformee\n257 Monks Road", "country": "GB", "postalcode": "LN25JX", "email": "paul.g.webster@googlemail.com"}, "tech": {"city": "Lincoln", "name": "Paul Webster", "state": "Lincolnshire", "phone": "01522718954", "street": "Worldformee\n257 Monks Road", "country": "GB", "postalcode": "LN25JX", "email": "paul.g.webster@googlemail.com"}, "registrant": {"city": "Lincoln", "state": "Lincolnshire", "street": "257 Monks Road", "country": "GB", "postalcode": "LN25JX", "organization": "Worldformee"}, "billing": null}, "nameservers": ["ns1.he.net", "ns2.he.net", "ns3.he.net", "ns4.he.net", "ns5.he.net"], "expiration_date": ["2014-10-02T21:37:48"], "creation_date": ["2009-10-02T21:37:00"], "raw": ["\nDomain Name: DAEMONRAGE.NET\nCreation Date: 2009-10-02 21:37:00Z\nRegistrar Registration Expiration Date: 2014-10-02 21:37:48Z\nRegistrar: ENOM, INC.\nReseller: NAMECHEAP.COM\nRegistrant Name: \nRegistrant Organization: WORLDFORMEE\nRegistrant Street: 257 MONKS ROAD\nRegistrant City: LINCOLN\nRegistrant State/Province: LINCOLNSHIRE\nRegistrant Postal Code: LN25JX\nRegistrant Country: GB\nAdmin Name: PAUL WEBSTER\nAdmin Organization: \nAdmin Street: WORLDFORMEE\nAdmin Street: 257 MONKS ROAD\nAdmin City: LINCOLN\nAdmin State/Province: LINCOLNSHIRE\nAdmin Postal Code: LN25JX\nAdmin Country: GB\nAdmin Phone: 01522718954\nAdmin Phone Ext: \nAdmin Fax: \nAdmin Fax Ext:\nAdmin Email: PAUL.G.WEBSTER@GOOGLEMAIL.COM\nTech Name: PAUL WEBSTER\nTech Organization: \nTech Street: WORLDFORMEE\nTech Street: 257 MONKS ROAD\nTech City: LINCOLN\nTech State/Province: LINCOLNSHIRE\nTech Postal Code: LN25JX\nTech Country: GB\nTech Phone: 01522718954\nTech Phone Ext: \nTech Fax: \nTech Fax Ext: \nTech Email: PAUL.G.WEBSTER@GOOGLEMAIL.COM\nName Server: NS1.HE.NET\nName Server: NS2.HE.NET\nName Server: NS3.HE.NET\nName Server: NS4.HE.NET\nName Server: NS5.HE.NET\n\nThe data in this whois database is provided to you for information\npurposes only, that is, to assist you in obtaining information about or\nrelated to a domain name registration record. We make this information\navailable \"as is,\" and do not guarantee its accuracy. By submitting a\nwhois query, you agree that you will use this data only for lawful\npurposes and that, under no circumstances will you use this data to: (1)\nenable high volume, automated, electronic processes that stress or load\nthis whois database system providing you this information; or (2) allow,\nenable, or otherwise support the transmission of mass unsolicited,\ncommercial advertising or solicitations via direct mail, electronic\nmail, or by telephone. The compilation, repackaging, dissemination or\nother use of this data is expressly prohibited without prior written\nconsent from us. \n\nWe reserve the right to modify these terms at any time. By submitting \nthis query, you agree to abide by these terms.\nVersion 6.3 4/3/2002\n", "\nWhois Server Version 2.0\n\nDomain names in the .com and .net domains can now be registered\nwith many different competing registrars. Go to http://www.internic.net\nfor detailed information.\n\n Domain Name: DAEMONRAGE.NET\n Registrar: ENOM, INC.\n Whois Server: whois.enom.com\n Referral URL: http://www.enom.com\n Name Server: NS1.HE.NET\n Name Server: NS2.HE.NET\n Name Server: NS3.HE.NET\n Name Server: NS4.HE.NET\n Name Server: NS5.HE.NET\n Status: clientTransferProhibited\n Updated Date: 18-oct-2013\n Creation Date: 02-oct-2009\n Expiration Date: 02-oct-2014\n\n>>> Last update of whois database: Thu, 21 Nov 2013 04:08:18 UTC <<<\n\nNOTICE: The expiration date displayed in this record is the date the \nregistrar's sponsorship of the domain name registration in the registry is \ncurrently set to expire. This date does not necessarily reflect the expiration \ndate of the domain name registrant's agreement with the sponsoring \nregistrar. Users may consult the sponsoring registrar's Whois database to \nview the registrar's reported date of expiration for this registration.\n\nTERMS OF USE: You are not authorized to access or query our Whois \ndatabase through the use of electronic processes that are high-volume and \nautomated except as reasonably necessary to register domain names or \nmodify existing registrations; the Data in VeriSign Global Registry \nServices' (\"VeriSign\") Whois database is provided by VeriSign for \ninformation purposes only, and to assist persons in obtaining information \nabout or related to a domain name registration record. VeriSign does not \nguarantee its accuracy. By submitting a Whois query, you agree to abide \nby the following terms of use: You agree that you may use this Data only \nfor lawful purposes and that under no circumstances will you use this Data \nto: (1) allow, enable, or otherwise support the transmission of mass \nunsolicited, commercial advertising or solicitations via e-mail, telephone, \nor facsimile; or (2) enable high volume, automated, electronic processes \nthat apply to VeriSign (or its computer systems). The compilation, \nrepackaging, dissemination or other use of this Data is expressly \nprohibited without the prior written consent of VeriSign. You agree not to \nuse electronic processes that are automated and high-volume to access or \nquery the Whois database except as reasonably necessary to register \ndomain names or modify existing registrations. VeriSign reserves the right \nto restrict your access to the Whois database in its sole discretion to ensure \noperational stability. VeriSign may restrict or terminate your access to the \nWhois database for failure to abide by these terms of use. VeriSign \nreserves the right to modify these terms at any time. \n\nThe Registry database contains ONLY .COM, .NET, .EDU domains and\nRegistrars.\n"], "whois_server": ["whois.enom.com"], "registrar": ["Enom, Inc."]} \ No newline at end of file +{"status": ["clientTransferProhibited"], "updated_date": ["2013-10-18T00:00:00", "2013-11-21T04:08:18"], "contacts": {"admin": {"city": "Lincoln", "name": "Paul Webster", "state": "Lincolnshire", "phone": "01522718954", "street": "Worldformee\n257 Monks Road", "country": "GB", "postalcode": "LN25JX", "email": "paul.g.webster@googlemail.com"}, "tech": {"city": "Lincoln", "name": "Paul Webster", "state": "Lincolnshire", "phone": "01522718954", "street": "Worldformee\n257 Monks Road", "country": "GB", "postalcode": "LN25JX", "email": "paul.g.webster@googlemail.com"}, "registrant": {"city": "Lincoln", "state": "Lincolnshire", "street": "257 Monks Road", "country": "GB", "postalcode": "LN25JX", "organization": "Worldformee"}, "billing": null}, "nameservers": ["ns1.he.net", "ns2.he.net", "ns3.he.net", "ns4.he.net", "ns5.he.net"], "expiration_date": ["2014-10-02T21:37:48"], "creation_date": ["2009-10-02T21:37:00"], "raw": ["\nDomain Name: DAEMONRAGE.NET\nCreation Date: 2009-10-02 21:37:00Z\nRegistrar Registration Expiration Date: 2014-10-02 21:37:48Z\nRegistrar: ENOM, INC.\nReseller: NAMECHEAP.COM\nRegistrant Name: \nRegistrant Organization: WORLDFORMEE\nRegistrant Street: 257 MONKS ROAD\nRegistrant City: LINCOLN\nRegistrant State/Province: LINCOLNSHIRE\nRegistrant Postal Code: LN25JX\nRegistrant Country: GB\nAdmin Name: PAUL WEBSTER\nAdmin Organization: \nAdmin Street: WORLDFORMEE\nAdmin Street: 257 MONKS ROAD\nAdmin City: LINCOLN\nAdmin State/Province: LINCOLNSHIRE\nAdmin Postal Code: LN25JX\nAdmin Country: GB\nAdmin Phone: 01522718954\nAdmin Phone Ext: \nAdmin Fax: \nAdmin Fax Ext:\nAdmin Email: PAUL.G.WEBSTER@GOOGLEMAIL.COM\nTech Name: PAUL WEBSTER\nTech Organization: \nTech Street: WORLDFORMEE\nTech Street: 257 MONKS ROAD\nTech City: LINCOLN\nTech State/Province: LINCOLNSHIRE\nTech Postal Code: LN25JX\nTech Country: GB\nTech Phone: 01522718954\nTech Phone Ext: \nTech Fax: \nTech Fax Ext: \nTech Email: PAUL.G.WEBSTER@GOOGLEMAIL.COM\nName Server: NS1.HE.NET\nName Server: NS2.HE.NET\nName Server: NS3.HE.NET\nName Server: NS4.HE.NET\nName Server: NS5.HE.NET\n\nThe data in this whois database is provided to you for information\npurposes only, that is, to assist you in obtaining information about or\nrelated to a domain name registration record. We make this information\navailable \"as is,\" and do not guarantee its accuracy. By submitting a\nwhois query, you agree that you will use this data only for lawful\npurposes and that, under no circumstances will you use this data to: (1)\nenable high volume, automated, electronic processes that stress or load\nthis whois database system providing you this information; or (2) allow,\nenable, or otherwise support the transmission of mass unsolicited,\ncommercial advertising or solicitations via direct mail, electronic\nmail, or by telephone. The compilation, repackaging, dissemination or\nother use of this data is expressly prohibited without prior written\nconsent from us. \n\nWe reserve the right to modify these terms at any time. By submitting \nthis query, you agree to abide by these terms.\nVersion 6.3 4/3/2002\n", "\nWhois Server Version 2.0\n\nDomain names in the .com and .net domains can now be registered\nwith many different competing registrars. Go to http://www.internic.net\nfor detailed information.\n\n Domain Name: DAEMONRAGE.NET\n Registrar: ENOM, INC.\n Whois Server: whois.enom.com\n Referral URL: http://www.enom.com\n Name Server: NS1.HE.NET\n Name Server: NS2.HE.NET\n Name Server: NS3.HE.NET\n Name Server: NS4.HE.NET\n Name Server: NS5.HE.NET\n Status: clientTransferProhibited\n Updated Date: 18-oct-2013\n Creation Date: 02-oct-2009\n Expiration Date: 02-oct-2014\n\n>>> Last update of whois database: Thu, 21 Nov 2013 04:08:18 UTC <<<\n\nNOTICE: The expiration date displayed in this record is the date the \nregistrar's sponsorship of the domain name registration in the registry is \ncurrently set to expire. This date does not necessarily reflect the expiration \ndate of the domain name registrant's agreement with the sponsoring \nregistrar. Users may consult the sponsoring registrar's Whois database to \nview the registrar's reported date of expiration for this registration.\n\nTERMS OF USE: You are not authorized to access or query our Whois \ndatabase through the use of electronic processes that are high-volume and \nautomated except as reasonably necessary to register domain names or \nmodify existing registrations; the Data in VeriSign Global Registry \nServices' (\"VeriSign\") Whois database is provided by VeriSign for \ninformation purposes only, and to assist persons in obtaining information \nabout or related to a domain name registration record. VeriSign does not \nguarantee its accuracy. By submitting a Whois query, you agree to abide \nby the following terms of use: You agree that you may use this Data only \nfor lawful purposes and that under no circumstances will you use this Data \nto: (1) allow, enable, or otherwise support the transmission of mass \nunsolicited, commercial advertising or solicitations via e-mail, telephone, \nor facsimile; or (2) enable high volume, automated, electronic processes \nthat apply to VeriSign (or its computer systems). The compilation, \nrepackaging, dissemination or other use of this Data is expressly \nprohibited without the prior written consent of VeriSign. You agree not to \nuse electronic processes that are automated and high-volume to access or \nquery the Whois database except as reasonably necessary to register \ndomain names or modify existing registrations. VeriSign reserves the right \nto restrict your access to the Whois database in its sole discretion to ensure \noperational stability. VeriSign may restrict or terminate your access to the \nWhois database for failure to abide by these terms of use. VeriSign \nreserves the right to modify these terms at any time. \n\nThe Registry database contains ONLY .COM, .NET, .EDU domains and\nRegistrars.\n"], "whois_server": ["whois.enom.com"], "registrar": ["Enom, INC."]} \ No newline at end of file diff --git a/test/target_normalized/dns4pro.com b/test/target_normalized/dns4pro.com index 22c1c30..28f8952 100644 --- a/test/target_normalized/dns4pro.com +++ b/test/target_normalized/dns4pro.com @@ -1 +1 @@ -{"status": ["clientTransferProhibited"], "updated_date": ["2013-08-12T00:00:00", "2013-11-21T08:54:31"], "contacts": {"admin": {"city": "M\u00fcnchen", "handle": "107329", "name": "Florian Moschner", "country": "DE", "phone": "+49.1781415353", "street": "Walter-Flex-Str. 4", "postalcode": "80637", "email": "florian@moschner.biz"}, "tech": {"city": "Berlin", "fax": "+49 30 66400138", "handle": "1", "name": "Hostmaster Of The Day", "country": "DE", "phone": "+49 30 66400137", "street": "Tempelhofer Damm 140", "postalcode": "12099", "organization": "InterNetworX Ltd. & Co. KG", "email": "hostmaster@inwx.de"}, "registrant": {"city": "M\u00fcnchen", "handle": "107329", "name": "Florian Moschner", "country": "DE", "phone": "+49.1781415353", "street": "Walter-Flex-Str. 4", "postalcode": "80637", "email": "florian@moschner.biz"}, "billing": {"city": "Berlin", "fax": "+49 30 66400138", "handle": "1", "name": "Hostmaster Of The Day", "country": "DE", "phone": "+49 30 66400137", "street": "Tempelhofer Damm 140", "postalcode": "12099", "organization": "InterNetworX Ltd. & Co. KG", "email": "hostmaster@inwx.de"}}, "nameservers": ["ns1.as199438.net", "ns2.as199438.net"], "expiration_date": ["2015-04-06T00:00:00"], "creation_date": ["2013-08-12T00:00:00"], "raw": ["; This data is provided by InterNetworX Ltd. & Co. KG\n; for information purposes, and to assist persons obtaining information\n; about or related to domain name registration records.\n; InterNetworX Ltd. & Co. KG does not guarantee its accuracy.\n; By submitting a WHOIS query, you agree that you will use this data\n; only for lawful purposes and that, under no circumstances, you will\n; use this data to\n; 1) allow, enable, or otherwise support the transmission of mass\n; unsolicited, commercial advertising or solicitations via E-mail\n; (spam); or\n; 2) enable high volume, automated, electronic processes that apply\n; to this WHOIS server.\n; These terms may be changed without prior notice.\n; By submitting this query, you agree to abide by this policy.\n\nISP: InterNetworX Ltd. & Co. KG\nURL: www.inwx.de\n\ndomain: dns4pro.com\n\ncreated-date: 2013-08-12\nupdated-date: 2013-08-12\nexpiration-date: 2015-04-06\n\nowner-id: 107329\nowner-name: Florian Moschner\nowner-street: Walter-Flex-Str. 4\nowner-city: M\u00fcnchen\nowner-zip: 80637\nowner-country: DE\nowner-phone: +49.1781415353\nowner-email: florian@moschner.biz\n\nadmin-id: 107329\nadmin-name: Florian Moschner\nadmin-street: Walter-Flex-Str. 4\nadmin-city: M\u00fcnchen\nadmin-zip: 80637\nadmin-country: DE\nadmin-phone: +49.1781415353\nadmin-email: florian@moschner.biz\n\ntech-id: 1\ntech-organization: InterNetworX Ltd. & Co. KG\ntech-name: Hostmaster Of The Day\ntech-street: Tempelhofer Damm 140\ntech-city: Berlin\ntech-zip: 12099\ntech-country: DE\ntech-phone: +49 30 66400137\ntech-fax: +49 30 66400138\ntech-email: hostmaster@inwx.de\n\nbilling-id: 1\nbilling-organization: InterNetworX Ltd. & Co. KG\nbilling-name: Hostmaster Of The Day\nbilling-street: Tempelhofer Damm 140\nbilling-city: Berlin\nbilling-zip: 12099\nbilling-country: DE\nbilling-phone: +49 30 66400137\nbilling-fax: +49 30 66400138\nbilling-email: hostmaster@inwx.de\n\nnameserver: ns1.as199438.net\nnameserver: ns2.as199438.net\n\n; Please register your domains at\n; www.inwx.de\n", "\nWhois Server Version 2.0\n\nDomain names in the .com and .net domains can now be registered\nwith many different competing registrars. Go to http://www.internic.net\nfor detailed information.\n\n Domain Name: DNS4PRO.COM\n Registrar: INTERNETWORX LTD. & CO. KG\n Whois Server: whois.domrobot.com\n Referral URL: http://www.domrobot.com\n Name Server: NS1.AS199438.NET\n Name Server: NS2.AS199438.NET\n Status: clientTransferProhibited\n Updated Date: 12-aug-2013\n Creation Date: 06-apr-2013\n Expiration Date: 06-apr-2015\n\n>>> Last update of whois database: Thu, 21 Nov 2013 08:54:31 UTC <<<\n\nNOTICE: The expiration date displayed in this record is the date the \nregistrar's sponsorship of the domain name registration in the registry is \ncurrently set to expire. This date does not necessarily reflect the expiration \ndate of the domain name registrant's agreement with the sponsoring \nregistrar. Users may consult the sponsoring registrar's Whois database to \nview the registrar's reported date of expiration for this registration.\n\nTERMS OF USE: You are not authorized to access or query our Whois \ndatabase through the use of electronic processes that are high-volume and \nautomated except as reasonably necessary to register domain names or \nmodify existing registrations; the Data in VeriSign Global Registry \nServices' (\"VeriSign\") Whois database is provided by VeriSign for \ninformation purposes only, and to assist persons in obtaining information \nabout or related to a domain name registration record. VeriSign does not \nguarantee its accuracy. By submitting a Whois query, you agree to abide \nby the following terms of use: You agree that you may use this Data only \nfor lawful purposes and that under no circumstances will you use this Data \nto: (1) allow, enable, or otherwise support the transmission of mass \nunsolicited, commercial advertising or solicitations via e-mail, telephone, \nor facsimile; or (2) enable high volume, automated, electronic processes \nthat apply to VeriSign (or its computer systems). The compilation, \nrepackaging, dissemination or other use of this Data is expressly \nprohibited without the prior written consent of VeriSign. You agree not to \nuse electronic processes that are automated and high-volume to access or \nquery the Whois database except as reasonably necessary to register \ndomain names or modify existing registrations. VeriSign reserves the right \nto restrict your access to the Whois database in its sole discretion to ensure \noperational stability. VeriSign may restrict or terminate your access to the \nWhois database for failure to abide by these terms of use. VeriSign \nreserves the right to modify these terms at any time. \n\nThe Registry database contains ONLY .COM, .NET, .EDU domains and\nRegistrars.\n"], "whois_server": ["whois.domrobot.com"], "registrar": ["Internetworx Ltd. & Co. Kg"]} \ No newline at end of file +{"status": ["clientTransferProhibited"], "updated_date": ["2013-08-12T00:00:00", "2013-11-21T08:54:31"], "contacts": {"admin": {"city": "M\u00fcnchen", "handle": "107329", "name": "Florian Moschner", "country": "DE", "phone": "+49.1781415353", "street": "Walter-Flex-Str. 4", "postalcode": "80637", "email": "florian@moschner.biz"}, "tech": {"city": "Berlin", "fax": "+49 30 66400138", "handle": "1", "name": "Hostmaster Of The Day", "country": "DE", "phone": "+49 30 66400137", "street": "Tempelhofer Damm 140", "postalcode": "12099", "organization": "InterNetworX Ltd. & Co. KG", "email": "hostmaster@inwx.de"}, "registrant": {"city": "M\u00fcnchen", "handle": "107329", "name": "Florian Moschner", "country": "DE", "phone": "+49.1781415353", "street": "Walter-Flex-Str. 4", "postalcode": "80637", "email": "florian@moschner.biz"}, "billing": {"city": "Berlin", "fax": "+49 30 66400138", "handle": "1", "name": "Hostmaster Of The Day", "country": "DE", "phone": "+49 30 66400137", "street": "Tempelhofer Damm 140", "postalcode": "12099", "organization": "InterNetworX Ltd. & Co. KG", "email": "hostmaster@inwx.de"}}, "nameservers": ["ns1.as199438.net", "ns2.as199438.net"], "expiration_date": ["2015-04-06T00:00:00"], "creation_date": ["2013-08-12T00:00:00"], "raw": ["; This data is provided by InterNetworX Ltd. & Co. KG\n; for information purposes, and to assist persons obtaining information\n; about or related to domain name registration records.\n; InterNetworX Ltd. & Co. KG does not guarantee its accuracy.\n; By submitting a WHOIS query, you agree that you will use this data\n; only for lawful purposes and that, under no circumstances, you will\n; use this data to\n; 1) allow, enable, or otherwise support the transmission of mass\n; unsolicited, commercial advertising or solicitations via E-mail\n; (spam); or\n; 2) enable high volume, automated, electronic processes that apply\n; to this WHOIS server.\n; These terms may be changed without prior notice.\n; By submitting this query, you agree to abide by this policy.\n\nISP: InterNetworX Ltd. & Co. KG\nURL: www.inwx.de\n\ndomain: dns4pro.com\n\ncreated-date: 2013-08-12\nupdated-date: 2013-08-12\nexpiration-date: 2015-04-06\n\nowner-id: 107329\nowner-name: Florian Moschner\nowner-street: Walter-Flex-Str. 4\nowner-city: M\u00fcnchen\nowner-zip: 80637\nowner-country: DE\nowner-phone: +49.1781415353\nowner-email: florian@moschner.biz\n\nadmin-id: 107329\nadmin-name: Florian Moschner\nadmin-street: Walter-Flex-Str. 4\nadmin-city: M\u00fcnchen\nadmin-zip: 80637\nadmin-country: DE\nadmin-phone: +49.1781415353\nadmin-email: florian@moschner.biz\n\ntech-id: 1\ntech-organization: InterNetworX Ltd. & Co. KG\ntech-name: Hostmaster Of The Day\ntech-street: Tempelhofer Damm 140\ntech-city: Berlin\ntech-zip: 12099\ntech-country: DE\ntech-phone: +49 30 66400137\ntech-fax: +49 30 66400138\ntech-email: hostmaster@inwx.de\n\nbilling-id: 1\nbilling-organization: InterNetworX Ltd. & Co. KG\nbilling-name: Hostmaster Of The Day\nbilling-street: Tempelhofer Damm 140\nbilling-city: Berlin\nbilling-zip: 12099\nbilling-country: DE\nbilling-phone: +49 30 66400137\nbilling-fax: +49 30 66400138\nbilling-email: hostmaster@inwx.de\n\nnameserver: ns1.as199438.net\nnameserver: ns2.as199438.net\n\n; Please register your domains at\n; www.inwx.de\n", "\nWhois Server Version 2.0\n\nDomain names in the .com and .net domains can now be registered\nwith many different competing registrars. Go to http://www.internic.net\nfor detailed information.\n\n Domain Name: DNS4PRO.COM\n Registrar: INTERNETWORX LTD. & CO. KG\n Whois Server: whois.domrobot.com\n Referral URL: http://www.domrobot.com\n Name Server: NS1.AS199438.NET\n Name Server: NS2.AS199438.NET\n Status: clientTransferProhibited\n Updated Date: 12-aug-2013\n Creation Date: 06-apr-2013\n Expiration Date: 06-apr-2015\n\n>>> Last update of whois database: Thu, 21 Nov 2013 08:54:31 UTC <<<\n\nNOTICE: The expiration date displayed in this record is the date the \nregistrar's sponsorship of the domain name registration in the registry is \ncurrently set to expire. This date does not necessarily reflect the expiration \ndate of the domain name registrant's agreement with the sponsoring \nregistrar. Users may consult the sponsoring registrar's Whois database to \nview the registrar's reported date of expiration for this registration.\n\nTERMS OF USE: You are not authorized to access or query our Whois \ndatabase through the use of electronic processes that are high-volume and \nautomated except as reasonably necessary to register domain names or \nmodify existing registrations; the Data in VeriSign Global Registry \nServices' (\"VeriSign\") Whois database is provided by VeriSign for \ninformation purposes only, and to assist persons in obtaining information \nabout or related to a domain name registration record. VeriSign does not \nguarantee its accuracy. By submitting a Whois query, you agree to abide \nby the following terms of use: You agree that you may use this Data only \nfor lawful purposes and that under no circumstances will you use this Data \nto: (1) allow, enable, or otherwise support the transmission of mass \nunsolicited, commercial advertising or solicitations via e-mail, telephone, \nor facsimile; or (2) enable high volume, automated, electronic processes \nthat apply to VeriSign (or its computer systems). The compilation, \nrepackaging, dissemination or other use of this Data is expressly \nprohibited without the prior written consent of VeriSign. You agree not to \nuse electronic processes that are automated and high-volume to access or \nquery the Whois database except as reasonably necessary to register \ndomain names or modify existing registrations. VeriSign reserves the right \nto restrict your access to the Whois database in its sole discretion to ensure \noperational stability. VeriSign may restrict or terminate your access to the \nWhois database for failure to abide by these terms of use. VeriSign \nreserves the right to modify these terms at any time. \n\nThe Registry database contains ONLY .COM, .NET, .EDU domains and\nRegistrars.\n"], "whois_server": ["whois.domrobot.com"], "registrar": ["Internetworx LTD. & CO. KG"]} \ No newline at end of file diff --git a/test/target_normalized/donuts.co b/test/target_normalized/donuts.co index 16f9a8e..99c8436 100644 --- a/test/target_normalized/donuts.co +++ b/test/target_normalized/donuts.co @@ -1 +1 @@ -{"status": ["clientDeleteProhibited", "clientRenewProhibited", "clientTransferProhibited", "clientUpdateProhibited"], "updated_date": ["2013-08-08T21:52:32", "2013-11-20T04:14:46"], "contacts": {"admin": {"city": "Bellevue", "handle": "CR86259720", "name": "Chris Cowherd", "phone": "+1.4252966802", "state": "Washington", "street": "10500 Ne 8th St\nSte 350", "country_code": "US", "country": "United States", "postalcode": "98004", "organization": "Donuts Inc.", "email": "it@donuts.co"}, "tech": {"city": "Bellevue", "handle": "CR86259718", "name": "Chris Cowherd", "phone": "+1.4252966802", "state": "Washington", "street": "10500 Ne 8th St\nSte 350", "country_code": "US", "country": "United States", "postalcode": "98004", "organization": "Donuts Inc.", "email": "it@donuts.co"}, "registrant": {"city": "Bellevue", "handle": "CR86259716", "name": "Chris Cowherd", "phone": "+1.4252966802", "state": "Washington", "street": "10500 Ne 8th St\nSte 350", "country_code": "US", "country": "United States", "postalcode": "98004", "organization": "Donuts Inc.", "email": "it@donuts.co"}, "billing": {"city": "Bellevue", "handle": "CR86259722", "name": "Chris Cowherd", "phone": "+1.4252966802", "state": "Washington", "street": "10500 Ne 8th St\nSte 350", "country_code": "US", "country": "United States", "postalcode": "98004", "organization": "Donuts Inc.", "email": "it@donuts.co"}}, "nameservers": ["ns1.dreamhost.com", "ns2.dreamhost.com", "ns3.dreamhost.com"], "expiration_date": ["2014-07-19T23:59:59"], "raw": ["Domain Name: DONUTS.CO\nDomain ID: D1142814-CO\nSponsoring Registrar: GODADDY.COM, INC.\nSponsoring Registrar IANA ID: 146\nRegistrar URL (registration services): www.godaddy.com\nDomain Status: clientDeleteProhibited\nDomain Status: clientRenewProhibited\nDomain Status: clientTransferProhibited\nDomain Status: clientUpdateProhibited\nRegistrant ID: CR86259716\nRegistrant Name: Chris Cowherd\nRegistrant Organization: Donuts Inc.\nRegistrant Address1: 10500 Ne 8th St\nRegistrant Address2: Ste 350\nRegistrant City: Bellevue\nRegistrant State/Province: Washington\nRegistrant Postal Code: 98004\nRegistrant Country: United States\nRegistrant Country Code: US\nRegistrant Phone Number: +1.4252966802\nRegistrant Email: it@donuts.co\nAdministrative Contact ID: CR86259720\nAdministrative Contact Name: Chris Cowherd\nAdministrative Contact Organization: Donuts Inc.\nAdministrative Contact Address1: 10500 Ne 8th St\nAdministrative Contact Address2: Ste 350\nAdministrative Contact City: Bellevue\nAdministrative Contact State/Province: Washington\nAdministrative Contact Postal Code: 98004\nAdministrative Contact Country: United States\nAdministrative Contact Country Code: US\nAdministrative Contact Phone Number: +1.4252966802\nAdministrative Contact Email: it@donuts.co\nBilling Contact ID: CR86259722\nBilling Contact Name: Chris Cowherd\nBilling Contact Organization: Donuts Inc.\nBilling Contact Address1: 10500 Ne 8th St\nBilling Contact Address2: Ste 350\nBilling Contact City: Bellevue\nBilling Contact State/Province: Washington\nBilling Contact Postal Code: 98004\nBilling Contact Country: United States\nBilling Contact Country Code: US\nBilling Contact Phone Number: +1.4252966802\nBilling Contact Email: it@donuts.co\nTechnical Contact ID: CR86259718\nTechnical Contact Name: Chris Cowherd\nTechnical Contact Organization: Donuts Inc.\nTechnical Contact Address1: 10500 Ne 8th St\nTechnical Contact Address2: Ste 350\nTechnical Contact City: Bellevue\nTechnical Contact State/Province: Washington\nTechnical Contact Postal Code: 98004\nTechnical Contact Country: United States\nTechnical Contact Country Code: US\nTechnical Contact Phone Number: +1.4252966802\nTechnical Contact Email: it@donuts.co\nName Server: NS1.DREAMHOST.COM\nName Server: NS2.DREAMHOST.COM\nName Server: NS3.DREAMHOST.COM\nCreated by Registrar: INTERNETX GMBH\nLast Updated by Registrar: GODADDY.COM, INC.\nLast Transferred Date: Sun Jan 30 16:35:56 GMT 2011\nDomain Registration Date: Tue Jul 20 18:01:35 GMT 2010\nDomain Expiration Date: Sat Jul 19 23:59:59 GMT 2014\nDomain Last Updated Date: Thu Aug 08 21:52:32 GMT 2013\n\n>>>> Whois database was last updated on: Wed Nov 20 04:14:46 GMT 2013 <<<<\n.CO Internet, S.A.S., the Administrator for .CO, has collected this\ninformation for the WHOIS database through Accredited Registrars. \nThis information is provided to you for informational purposes only \nand is designed to assist persons in determining contents of a domain \nname registration record in the .CO Internet registry database. .CO \nInternet makes this information available to you \"as is\" and does not \nguarantee its accuracy.\n \nBy submitting a WHOIS query, you agree that you will use this data \nonly for lawful purposes and that, under no circumstances will you \nuse this data: (1) to allow, enable, or otherwise support the transmission \nof mass unsolicited, commercial advertising or solicitations via direct \nmail, electronic mail, or by telephone; (2) in contravention of any \napplicable data and privacy protection laws; or (3) to enable high volume, \nautomated, electronic processes that apply to the registry (or its systems). \nCompilation, repackaging, dissemination, or other use of the WHOIS \ndatabase in its entirety, or of a substantial portion thereof, is not allowed \nwithout .CO Internet's prior written permission. .CO Internet reserves the \nright to modify or change these conditions at any time without prior or \nsubsequent notification of any kind. By executing this query, in any manner \nwhatsoever, you agree to abide by these terms. In some limited cases, \ndomains that might appear as available in whois might not actually be \navailable as they could be already registered and the whois not yet updated \nand/or they could be part of the Restricted list. In this cases, performing a \ncheck through your Registrar's (EPP check) will give you the actual status \nof the domain. Additionally, domains currently or previously used as \nextensions in 3rd level domains will not be available for registration in the \n2nd level. For example, org.co,mil.co,edu.co,com.co,net.co,nom.co,arts.co,\nfirm.co,info.co,int.co,web.co,rec.co,co.co. \n \nNOTE: FAILURE TO LOCATE A RECORD IN THE WHOIS DATABASE IS NOT \nINDICATIVE OF THE AVAILABILITY OF A DOMAIN NAME. \n \nAll domain names are subject to certain additional domain name registration \nrules. For details, please visit our site at www.cointernet.co .\n\n"], "registrar": ["Godaddy.com, Inc.", "Internetx Gmbh"], "creation_date": ["2010-07-20T18:01:35", "2010-07-20T18:01:35"], "id": ["D1142814-CO"]} \ No newline at end of file +{"status": ["clientDeleteProhibited", "clientRenewProhibited", "clientTransferProhibited", "clientUpdateProhibited"], "updated_date": ["2013-08-08T21:52:32", "2013-11-20T04:14:46"], "contacts": {"admin": {"city": "Bellevue", "handle": "CR86259720", "name": "Chris Cowherd", "phone": "+1.4252966802", "state": "Washington", "street": "10500 Ne 8th St\nSte 350", "country_code": "US", "country": "United States", "postalcode": "98004", "organization": "Donuts Inc.", "email": "it@donuts.co"}, "tech": {"city": "Bellevue", "handle": "CR86259718", "name": "Chris Cowherd", "phone": "+1.4252966802", "state": "Washington", "street": "10500 Ne 8th St\nSte 350", "country_code": "US", "country": "United States", "postalcode": "98004", "organization": "Donuts Inc.", "email": "it@donuts.co"}, "registrant": {"city": "Bellevue", "handle": "CR86259716", "name": "Chris Cowherd", "phone": "+1.4252966802", "state": "Washington", "street": "10500 Ne 8th St\nSte 350", "country_code": "US", "country": "United States", "postalcode": "98004", "organization": "Donuts Inc.", "email": "it@donuts.co"}, "billing": {"city": "Bellevue", "handle": "CR86259722", "name": "Chris Cowherd", "phone": "+1.4252966802", "state": "Washington", "street": "10500 Ne 8th St\nSte 350", "country_code": "US", "country": "United States", "postalcode": "98004", "organization": "Donuts Inc.", "email": "it@donuts.co"}}, "nameservers": ["ns1.dreamhost.com", "ns2.dreamhost.com", "ns3.dreamhost.com"], "expiration_date": ["2014-07-19T23:59:59"], "raw": ["Domain Name: DONUTS.CO\nDomain ID: D1142814-CO\nSponsoring Registrar: GODADDY.COM, INC.\nSponsoring Registrar IANA ID: 146\nRegistrar URL (registration services): www.godaddy.com\nDomain Status: clientDeleteProhibited\nDomain Status: clientRenewProhibited\nDomain Status: clientTransferProhibited\nDomain Status: clientUpdateProhibited\nRegistrant ID: CR86259716\nRegistrant Name: Chris Cowherd\nRegistrant Organization: Donuts Inc.\nRegistrant Address1: 10500 Ne 8th St\nRegistrant Address2: Ste 350\nRegistrant City: Bellevue\nRegistrant State/Province: Washington\nRegistrant Postal Code: 98004\nRegistrant Country: United States\nRegistrant Country Code: US\nRegistrant Phone Number: +1.4252966802\nRegistrant Email: it@donuts.co\nAdministrative Contact ID: CR86259720\nAdministrative Contact Name: Chris Cowherd\nAdministrative Contact Organization: Donuts Inc.\nAdministrative Contact Address1: 10500 Ne 8th St\nAdministrative Contact Address2: Ste 350\nAdministrative Contact City: Bellevue\nAdministrative Contact State/Province: Washington\nAdministrative Contact Postal Code: 98004\nAdministrative Contact Country: United States\nAdministrative Contact Country Code: US\nAdministrative Contact Phone Number: +1.4252966802\nAdministrative Contact Email: it@donuts.co\nBilling Contact ID: CR86259722\nBilling Contact Name: Chris Cowherd\nBilling Contact Organization: Donuts Inc.\nBilling Contact Address1: 10500 Ne 8th St\nBilling Contact Address2: Ste 350\nBilling Contact City: Bellevue\nBilling Contact State/Province: Washington\nBilling Contact Postal Code: 98004\nBilling Contact Country: United States\nBilling Contact Country Code: US\nBilling Contact Phone Number: +1.4252966802\nBilling Contact Email: it@donuts.co\nTechnical Contact ID: CR86259718\nTechnical Contact Name: Chris Cowherd\nTechnical Contact Organization: Donuts Inc.\nTechnical Contact Address1: 10500 Ne 8th St\nTechnical Contact Address2: Ste 350\nTechnical Contact City: Bellevue\nTechnical Contact State/Province: Washington\nTechnical Contact Postal Code: 98004\nTechnical Contact Country: United States\nTechnical Contact Country Code: US\nTechnical Contact Phone Number: +1.4252966802\nTechnical Contact Email: it@donuts.co\nName Server: NS1.DREAMHOST.COM\nName Server: NS2.DREAMHOST.COM\nName Server: NS3.DREAMHOST.COM\nCreated by Registrar: INTERNETX GMBH\nLast Updated by Registrar: GODADDY.COM, INC.\nLast Transferred Date: Sun Jan 30 16:35:56 GMT 2011\nDomain Registration Date: Tue Jul 20 18:01:35 GMT 2010\nDomain Expiration Date: Sat Jul 19 23:59:59 GMT 2014\nDomain Last Updated Date: Thu Aug 08 21:52:32 GMT 2013\n\n>>>> Whois database was last updated on: Wed Nov 20 04:14:46 GMT 2013 <<<<\n.CO Internet, S.A.S., the Administrator for .CO, has collected this\ninformation for the WHOIS database through Accredited Registrars. \nThis information is provided to you for informational purposes only \nand is designed to assist persons in determining contents of a domain \nname registration record in the .CO Internet registry database. .CO \nInternet makes this information available to you \"as is\" and does not \nguarantee its accuracy.\n \nBy submitting a WHOIS query, you agree that you will use this data \nonly for lawful purposes and that, under no circumstances will you \nuse this data: (1) to allow, enable, or otherwise support the transmission \nof mass unsolicited, commercial advertising or solicitations via direct \nmail, electronic mail, or by telephone; (2) in contravention of any \napplicable data and privacy protection laws; or (3) to enable high volume, \nautomated, electronic processes that apply to the registry (or its systems). \nCompilation, repackaging, dissemination, or other use of the WHOIS \ndatabase in its entirety, or of a substantial portion thereof, is not allowed \nwithout .CO Internet's prior written permission. .CO Internet reserves the \nright to modify or change these conditions at any time without prior or \nsubsequent notification of any kind. By executing this query, in any manner \nwhatsoever, you agree to abide by these terms. In some limited cases, \ndomains that might appear as available in whois might not actually be \navailable as they could be already registered and the whois not yet updated \nand/or they could be part of the Restricted list. In this cases, performing a \ncheck through your Registrar's (EPP check) will give you the actual status \nof the domain. Additionally, domains currently or previously used as \nextensions in 3rd level domains will not be available for registration in the \n2nd level. For example, org.co,mil.co,edu.co,com.co,net.co,nom.co,arts.co,\nfirm.co,info.co,int.co,web.co,rec.co,co.co. \n \nNOTE: FAILURE TO LOCATE A RECORD IN THE WHOIS DATABASE IS NOT \nINDICATIVE OF THE AVAILABILITY OF A DOMAIN NAME. \n \nAll domain names are subject to certain additional domain name registration \nrules. For details, please visit our site at www.cointernet.co .\n\n"], "registrar": ["godaddy.com, INC.", "Internetx Gmbh"], "creation_date": ["2010-07-20T18:01:35", "2010-07-20T18:01:35"], "id": ["D1142814-CO"]} \ No newline at end of file diff --git a/test/target_normalized/foxiepa.ws b/test/target_normalized/foxiepa.ws new file mode 100644 index 0000000..4efa5e9 --- /dev/null +++ b/test/target_normalized/foxiepa.ws @@ -0,0 +1 @@ +{"status": ["clientTransferProhibited"], "updated_date": ["1970-01-01T00:00:00"], "contacts": {"admin": {"city": "Charlotte", "name": "Joshua Theze", "state": "North Carolina", "phone": "+1.7049570414", "street": "4637 Carmel Vista Lane", "country": "US", "postalcode": "28226", "email": "joshua.theze@gmail.com"}, "tech": {"city": "Charlotte", "name": "Joshua Theze", "state": "North Carolina", "phone": "+1.7049570414", "street": "4637 Carmel Vista Lane", "country": "US", "postalcode": "28226", "email": "joshua.theze@gmail.com"}, "registrant": {"city": "Charlotte", "name": "Joshua Theze", "state": "North Carolina", "phone": "+1.7049570414", "street": "4637 Carmel Vista Lane", "country": "US", "postalcode": "28226", "email": "joshua.theze@gmail.com"}, "billing": null}, "nameservers": ["ns1.hopcount.nl", "ns2.hopcount.nl", "ns3.hopcount.nl"], "expiration_date": ["2014-01-02T23:46:37"], "creation_date": ["2013-01-02T23:46:37"], "raw": ["Domain Name: FOXIEPA.WS\nRegistrar WHOIS Server: whois.dynadot.com\nRegistrar URL: http://www.dynadot.com\nUpdated Date: 1970-01-01T00:00:00.0Z\nCreation Date: 2013-01-02T23:46:37.0Z\nRegistrar Registration Expiration Date: 2014-01-02T23:46:37.0Z\nRegistrar: DYNADOT LLC\nRegistrar IANA ID: 472\nRegistrar Abuse Contact Email: abuse@dynadot.com\nRegistrar Abuse Contact Phone: +1.6502620100\nDomain Status: clientTransferProhibited\nRegistrant Name: Joshua Theze\nRegistrant Street: 4637 Carmel Vista Lane\nRegistrant City: Charlotte\nRegistrant State/Province: North Carolina\nRegistrant Postal Code: 28226\nRegistrant Country: US\nRegistrant Phone: +1.7049570414\nRegistrant Email: joshua.theze@gmail.com\nAdmin Name: Joshua Theze\nAdmin Street: 4637 Carmel Vista Lane\nAdmin City: Charlotte\nAdmin State/Province: North Carolina\nAdmin Postal Code: 28226\nAdmin Country: US\nAdmin Phone: +1.7049570414\nAdmin Email: joshua.theze@gmail.com\nTech Name: Joshua Theze\nTech Street: 4637 Carmel Vista Lane\nTech City: Charlotte\nTech State/Province: North Carolina\nTech Postal Code: 28226\nTech Country: US\nTech Phone: +1.7049570414\nTech Email: joshua.theze@gmail.com\nName Server: ns1.hopcount.nl\nName Server: ns2.hopcount.nl\nName Server: ns3.hopcount.nl\nDNSSEC: notApplicable\nURL of the ICANN WHOIS Data Problem Reporting System: http://wdprs.internic.net/\n>>> Last update of WHOIS database: 2013-11-24 08:56:59 -0800 <<<\n\n", "\n\nWelcome to the .WS Whois Server\n\nUse of this service for any purpose other\nthan determining the availability of a domain\nin the .WS TLD to be registered is strictly\nprohibited.\n\n Domain Name: FOXIEPA.WS\n\n Registrant Name: Use registrar whois listed below\n Registrant Email: Use registrar whois listed below\n\n Administrative Contact Email: Use registrar whois listed below\n Administrative Contact Telephone: Use registrar whois listed below\n\n Registrar Name: Dynadot\n Registrar Email: info@dynadot.com\n Registrar Telephone: (650) 585-1961\n Registrar Whois: whois.dynadot.com\n\n Domain Created: 2013-01-02\n Domain Last Updated: 2013-01-02\n Domain Currently Expires: 2014-01-02\n\n Current Nameservers:\n\n ns1.hopcount.nl\n ns2.hopcount.nl\n ns3.hopcount.nl\n\n\n\n"], "whois_server": ["whois.dynadot.com"], "registrar": ["Dynadot LLC"], "emails": ["abuse@dynadot.com"]} \ No newline at end of file diff --git a/test/target_normalized/huskeh.net b/test/target_normalized/huskeh.net index e705686..59f8ae9 100644 --- a/test/target_normalized/huskeh.net +++ b/test/target_normalized/huskeh.net @@ -1 +1 @@ -{"updated_date": ["2013-09-18T00:00:00"], "status": ["clientDeleteProhibited", "clientTransferProhibited"], "contacts": {"admin": {"city": "Roubaix Cedex 1", "name": "Poulton Sam", "phone": "+33.899498765", "street": "huskeh.net, Office #5075960\nc/o OwO, BP80157", "country": "FR", "postalcode": "59053", "email": "mtv1ufny8x589jxnfcsx@c.o-w-o.info"}, "tech": {"city": "Roubaix Cedex 1", "name": "Poulton Sam", "phone": "+33.899498765", "street": "huskeh.net, Office #5075960\nc/o OwO, BP80157", "country": "FR", "postalcode": "59053", "email": "mtv1ufny8x589jxnfcsx@c.o-w-o.info"}, "registrant": {"city": "Roubaix Cedex 1", "name": "Poulton Sam", "phone": "+33.899498765", "street": "huskeh.net, Office #5075960\nc/o OwO, BP80157", "country": "FR", "postalcode": "59053", "email": "0vdudcszg7joly3irb2u@e.o-w-o.info"}, "billing": {"city": "Roubaix Cedex 1", "name": "Poulton Sam", "phone": "+33.899498765", "street": "huskeh.net, Office #5075960\nc/o OwO, BP80157", "country": "FR", "postalcode": "59053", "email": "mtv1ufny8x589jxnfcsx@c.o-w-o.info"}}, "nameservers": ["ns1.slphosts.co.uk", "ns2.slphosts.co.uk"], "expiration_date": ["2014-09-29T00:00:00", "2014-09-29T00:00:00"], "creation_date": ["2009-09-29T00:00:00", "2009-09-29T00:00:00"], "raw": ["###############################################################################\n#\n# Welcome to the OVH WHOIS Server.\n# \n# whois server : whois.ovh.com check server : check.ovh.com\n# \n# The data in this Whois is at your disposal with the aim of supplying you the\n# information only, that is helping you in the obtaining of the information\n# about or related to a domain name registration record. OVH Sas make this\n# information available \"as is\", and do not guarantee its accuracy. By using\n# Whois, you agree that you will use these data only for legal purposes and\n# that, under no circumstances will you use this data to: (1) Allow, enable,\n# or otherwise support the transmission of mass unsolicited, commercial\n# advertisement or roughly or requests via the individual mail (courier),\n# the E-mail (SPAM), by telephone or by fax. (2) Enable high volume, automated,\n# electronic processes that apply to OVH Sas (or its computer systems).\n# The copy, the compilation, the re-packaging, the dissemination or the\n# other use of the Whois base is expressly forbidden without the prior\n# written consent of OVH. Domain ownership disputes should be settled using\n# ICANN's Uniform Dispute Resolution Policy: http://www.icann.org/udrp/udrp.htm\n# We reserve the right to modify these terms at any time. By submitting\n# this query, you agree to abide by these terms. OVH Sas reserves the right\n# to terminate your access to the OVH Sas Whois database in its sole\n# discretion, including without limitation, for excessive querying of\n# the Whois database or for failure to otherwise abide by this policy.\n#\n# L'outil du Whois est \u00e0 votre disposition dans le but de vous fournir\n# l'information seulement, c'est-\u00e0-dire vous aider dans l'obtention de\n# l'information sur ou li\u00e9 \u00e0 un rapport d'enregistrement de nom de domaine.\n# OVH Sas rend cette information disponible \"comme est,\" et ne garanti pas\n# son exactitude. En utilisant notre outil Whois, vous reconnaissez que vous\n# emploierez ces donn\u00e9es seulement pour des buts l\u00e9gaux et ne pas utiliser cet\n# outil dans les buts suivant: (1) la transmission de publicit\u00e9 non sollicit\u00e9e,\n# commerciale massive ou en gros ou des sollicitations via courrier individuel,\n# le courrier \u00e9lectronique (c'est-\u00e0-dire SPAM), par t\u00e9l\u00e9phone ou par fax. (2)\n# l'utilisation d'un grand volume, automatis\u00e9 des processus \u00e9lectroniques qui\n# soulignent ou chargent ce syst\u00e8me de base de donn\u00e9es Whois vous fournissant\n# cette information. La copie de tout ou partie, la compilation, le\n# re-emballage, la diss\u00e9mination ou d'autre utilisation de la base Whois sont\n# express\u00e9ment interdits sans consentement \u00e9crit ant\u00e9rieur de OVH. Un d\u00e9saccord\n# sur la possession d'un nom de domaine peut \u00eatre r\u00e9solu en suivant la Uniform\n# Dispute Resolution Policy de l'ICANN: http://www.icann.org/udrp/udrp.htm\n# Nous nous r\u00e9servons le droit de modifier ces termes \u00e0 tout moment. En\n# soumettant une requ\u00eate au Whois vous consentez \u00e0 vous soumettre \u00e0 ces termes.\n\n# local time : Wednesday, 20-Nov-2013 09:27:14 CET\n# gmt time : Wednesday, 20-Nov-2013 08:27:14 GMT\n# last modify : Saturday, 12-Oct-2013 12:38:49 CEST\n# request from : 192.168.244.150:25929\n\nDomain name: huskeh.net\n\nRegistrant:\n Poulton Sam\n huskeh.net, office #5075960\n c/o OwO, BP80157\n 59053, Roubaix Cedex 1\n FR\n +33.899498765\n 0vdudcszg7joly3irb2u@e.o-w-o.info\n\nAdministrative Contact:\n Poulton Sam\n huskeh.net, office #5075960\n c/o OwO, BP80157\n 59053, Roubaix Cedex 1\n FR\n +33.899498765\n mtv1ufny8x589jxnfcsx@c.o-w-o.info\n\nTechnical Contact:\n Poulton Sam\n huskeh.net, office #5075960\n c/o OwO, BP80157\n 59053, Roubaix Cedex 1\n FR\n +33.899498765\n mtv1ufny8x589jxnfcsx@c.o-w-o.info\n\nBilling Contact:\n Poulton Sam\n huskeh.net, office #5075960\n c/o OwO, BP80157\n 59053, Roubaix Cedex 1\n FR\n +33.899498765\n mtv1ufny8x589jxnfcsx@c.o-w-o.info\n\nRegistrar of Record: OVH.\nRecord last updated on 2013-09-18.\nRecord expires on 2014-09-29.\nRecord created on 2009-09-29.\n\n###############################################################################\n# powered by GNU/Linux\n\n", "\nWhois Server Version 2.0\n\nDomain names in the .com and .net domains can now be registered\nwith many different competing registrars. Go to http://www.internic.net\nfor detailed information.\n\n Domain Name: HUSKEH.NET\n Registrar: OVH\n Whois Server: whois.ovh.com\n Referral URL: http://www.ovh.com\n Name Server: NS1.SLPHOSTS.CO.UK\n Name Server: NS2.SLPHOSTS.CO.UK\n Status: clientDeleteProhibited\n Status: clientTransferProhibited\n Updated Date: 18-sep-2013\n Creation Date: 29-sep-2009\n Expiration Date: 29-sep-2014\n\n>>> Last update of whois database: Wed, 20 Nov 2013 08:26:33 UTC <<<\n\nNOTICE: The expiration date displayed in this record is the date the \nregistrar's sponsorship of the domain name registration in the registry is \ncurrently set to expire. This date does not necessarily reflect the expiration \ndate of the domain name registrant's agreement with the sponsoring \nregistrar. Users may consult the sponsoring registrar's Whois database to \nview the registrar's reported date of expiration for this registration.\n\nTERMS OF USE: You are not authorized to access or query our Whois \ndatabase through the use of electronic processes that are high-volume and \nautomated except as reasonably necessary to register domain names or \nmodify existing registrations; the Data in VeriSign Global Registry \nServices' (\"VeriSign\") Whois database is provided by VeriSign for \ninformation purposes only, and to assist persons in obtaining information \nabout or related to a domain name registration record. VeriSign does not \nguarantee its accuracy. By submitting a Whois query, you agree to abide \nby the following terms of use: You agree that you may use this Data only \nfor lawful purposes and that under no circumstances will you use this Data \nto: (1) allow, enable, or otherwise support the transmission of mass \nunsolicited, commercial advertising or solicitations via e-mail, telephone, \nor facsimile; or (2) enable high volume, automated, electronic processes \nthat apply to VeriSign (or its computer systems). The compilation, \nrepackaging, dissemination or other use of this Data is expressly \nprohibited without the prior written consent of VeriSign. You agree not to \nuse electronic processes that are automated and high-volume to access or \nquery the Whois database except as reasonably necessary to register \ndomain names or modify existing registrations. VeriSign reserves the right \nto restrict your access to the Whois database in its sole discretion to ensure \noperational stability. VeriSign may restrict or terminate your access to the \nWhois database for failure to abide by these terms of use. VeriSign \nreserves the right to modify these terms at any time. \n\nThe Registry database contains ONLY .COM, .NET, .EDU domains and\nRegistrars.\n"], "whois_server": ["whois.ovh.com"], "registrar": ["Ovh."]} \ No newline at end of file +{"updated_date": ["2013-09-18T00:00:00"], "status": ["clientDeleteProhibited", "clientTransferProhibited"], "contacts": {"admin": {"city": "Roubaix Cedex 1", "name": "Poulton Sam", "phone": "+33.899498765", "street": "huskeh.net, Office #5075960\nc/o OwO, BP80157", "country": "FR", "postalcode": "59053", "email": "mtv1ufny8x589jxnfcsx@c.o-w-o.info"}, "tech": {"city": "Roubaix Cedex 1", "name": "Poulton Sam", "phone": "+33.899498765", "street": "huskeh.net, Office #5075960\nc/o OwO, BP80157", "country": "FR", "postalcode": "59053", "email": "mtv1ufny8x589jxnfcsx@c.o-w-o.info"}, "registrant": {"city": "Roubaix Cedex 1", "name": "Poulton Sam", "phone": "+33.899498765", "street": "huskeh.net, Office #5075960\nc/o OwO, BP80157", "country": "FR", "postalcode": "59053", "email": "0vdudcszg7joly3irb2u@e.o-w-o.info"}, "billing": {"city": "Roubaix Cedex 1", "name": "Poulton Sam", "phone": "+33.899498765", "street": "huskeh.net, Office #5075960\nc/o OwO, BP80157", "country": "FR", "postalcode": "59053", "email": "mtv1ufny8x589jxnfcsx@c.o-w-o.info"}}, "nameservers": ["ns1.slphosts.co.uk", "ns2.slphosts.co.uk"], "expiration_date": ["2014-09-29T00:00:00", "2014-09-29T00:00:00"], "creation_date": ["2009-09-29T00:00:00", "2009-09-29T00:00:00"], "raw": ["###############################################################################\n#\n# Welcome to the OVH WHOIS Server.\n# \n# whois server : whois.ovh.com check server : check.ovh.com\n# \n# The data in this Whois is at your disposal with the aim of supplying you the\n# information only, that is helping you in the obtaining of the information\n# about or related to a domain name registration record. OVH Sas make this\n# information available \"as is\", and do not guarantee its accuracy. By using\n# Whois, you agree that you will use these data only for legal purposes and\n# that, under no circumstances will you use this data to: (1) Allow, enable,\n# or otherwise support the transmission of mass unsolicited, commercial\n# advertisement or roughly or requests via the individual mail (courier),\n# the E-mail (SPAM), by telephone or by fax. (2) Enable high volume, automated,\n# electronic processes that apply to OVH Sas (or its computer systems).\n# The copy, the compilation, the re-packaging, the dissemination or the\n# other use of the Whois base is expressly forbidden without the prior\n# written consent of OVH. Domain ownership disputes should be settled using\n# ICANN's Uniform Dispute Resolution Policy: http://www.icann.org/udrp/udrp.htm\n# We reserve the right to modify these terms at any time. By submitting\n# this query, you agree to abide by these terms. OVH Sas reserves the right\n# to terminate your access to the OVH Sas Whois database in its sole\n# discretion, including without limitation, for excessive querying of\n# the Whois database or for failure to otherwise abide by this policy.\n#\n# L'outil du Whois est \u00e0 votre disposition dans le but de vous fournir\n# l'information seulement, c'est-\u00e0-dire vous aider dans l'obtention de\n# l'information sur ou li\u00e9 \u00e0 un rapport d'enregistrement de nom de domaine.\n# OVH Sas rend cette information disponible \"comme est,\" et ne garanti pas\n# son exactitude. En utilisant notre outil Whois, vous reconnaissez que vous\n# emploierez ces donn\u00e9es seulement pour des buts l\u00e9gaux et ne pas utiliser cet\n# outil dans les buts suivant: (1) la transmission de publicit\u00e9 non sollicit\u00e9e,\n# commerciale massive ou en gros ou des sollicitations via courrier individuel,\n# le courrier \u00e9lectronique (c'est-\u00e0-dire SPAM), par t\u00e9l\u00e9phone ou par fax. (2)\n# l'utilisation d'un grand volume, automatis\u00e9 des processus \u00e9lectroniques qui\n# soulignent ou chargent ce syst\u00e8me de base de donn\u00e9es Whois vous fournissant\n# cette information. La copie de tout ou partie, la compilation, le\n# re-emballage, la diss\u00e9mination ou d'autre utilisation de la base Whois sont\n# express\u00e9ment interdits sans consentement \u00e9crit ant\u00e9rieur de OVH. Un d\u00e9saccord\n# sur la possession d'un nom de domaine peut \u00eatre r\u00e9solu en suivant la Uniform\n# Dispute Resolution Policy de l'ICANN: http://www.icann.org/udrp/udrp.htm\n# Nous nous r\u00e9servons le droit de modifier ces termes \u00e0 tout moment. En\n# soumettant une requ\u00eate au Whois vous consentez \u00e0 vous soumettre \u00e0 ces termes.\n\n# local time : Wednesday, 20-Nov-2013 09:27:14 CET\n# gmt time : Wednesday, 20-Nov-2013 08:27:14 GMT\n# last modify : Saturday, 12-Oct-2013 12:38:49 CEST\n# request from : 192.168.244.150:25929\n\nDomain name: huskeh.net\n\nRegistrant:\n Poulton Sam\n huskeh.net, office #5075960\n c/o OwO, BP80157\n 59053, Roubaix Cedex 1\n FR\n +33.899498765\n 0vdudcszg7joly3irb2u@e.o-w-o.info\n\nAdministrative Contact:\n Poulton Sam\n huskeh.net, office #5075960\n c/o OwO, BP80157\n 59053, Roubaix Cedex 1\n FR\n +33.899498765\n mtv1ufny8x589jxnfcsx@c.o-w-o.info\n\nTechnical Contact:\n Poulton Sam\n huskeh.net, office #5075960\n c/o OwO, BP80157\n 59053, Roubaix Cedex 1\n FR\n +33.899498765\n mtv1ufny8x589jxnfcsx@c.o-w-o.info\n\nBilling Contact:\n Poulton Sam\n huskeh.net, office #5075960\n c/o OwO, BP80157\n 59053, Roubaix Cedex 1\n FR\n +33.899498765\n mtv1ufny8x589jxnfcsx@c.o-w-o.info\n\nRegistrar of Record: OVH.\nRecord last updated on 2013-09-18.\nRecord expires on 2014-09-29.\nRecord created on 2009-09-29.\n\n###############################################################################\n# powered by GNU/Linux\n\n", "\nWhois Server Version 2.0\n\nDomain names in the .com and .net domains can now be registered\nwith many different competing registrars. Go to http://www.internic.net\nfor detailed information.\n\n Domain Name: HUSKEH.NET\n Registrar: OVH\n Whois Server: whois.ovh.com\n Referral URL: http://www.ovh.com\n Name Server: NS1.SLPHOSTS.CO.UK\n Name Server: NS2.SLPHOSTS.CO.UK\n Status: clientDeleteProhibited\n Status: clientTransferProhibited\n Updated Date: 18-sep-2013\n Creation Date: 29-sep-2009\n Expiration Date: 29-sep-2014\n\n>>> Last update of whois database: Wed, 20 Nov 2013 08:26:33 UTC <<<\n\nNOTICE: The expiration date displayed in this record is the date the \nregistrar's sponsorship of the domain name registration in the registry is \ncurrently set to expire. This date does not necessarily reflect the expiration \ndate of the domain name registrant's agreement with the sponsoring \nregistrar. Users may consult the sponsoring registrar's Whois database to \nview the registrar's reported date of expiration for this registration.\n\nTERMS OF USE: You are not authorized to access or query our Whois \ndatabase through the use of electronic processes that are high-volume and \nautomated except as reasonably necessary to register domain names or \nmodify existing registrations; the Data in VeriSign Global Registry \nServices' (\"VeriSign\") Whois database is provided by VeriSign for \ninformation purposes only, and to assist persons in obtaining information \nabout or related to a domain name registration record. VeriSign does not \nguarantee its accuracy. By submitting a Whois query, you agree to abide \nby the following terms of use: You agree that you may use this Data only \nfor lawful purposes and that under no circumstances will you use this Data \nto: (1) allow, enable, or otherwise support the transmission of mass \nunsolicited, commercial advertising or solicitations via e-mail, telephone, \nor facsimile; or (2) enable high volume, automated, electronic processes \nthat apply to VeriSign (or its computer systems). The compilation, \nrepackaging, dissemination or other use of this Data is expressly \nprohibited without the prior written consent of VeriSign. You agree not to \nuse electronic processes that are automated and high-volume to access or \nquery the Whois database except as reasonably necessary to register \ndomain names or modify existing registrations. VeriSign reserves the right \nto restrict your access to the Whois database in its sole discretion to ensure \noperational stability. VeriSign may restrict or terminate your access to the \nWhois database for failure to abide by these terms of use. VeriSign \nreserves the right to modify these terms at any time. \n\nThe Registry database contains ONLY .COM, .NET, .EDU domains and\nRegistrars.\n"], "whois_server": ["whois.ovh.com"], "registrar": ["OVH."]} \ No newline at end of file diff --git a/test/target_normalized/nepasituation.com b/test/target_normalized/nepasituation.com index c7435c9..b6134af 100644 --- a/test/target_normalized/nepasituation.com +++ b/test/target_normalized/nepasituation.com @@ -1 +1 @@ -{"status": ["Locked"], "updated_date": ["2013-09-21T00:00:00", "2013-11-23T13:48:16"], "contacts": {"admin": {"city": "Nobby Beach", "name": "Domain Admin", "phone": "+45.36946676", "state": "Queensland", "street": "ID#10760, PO Box 16\nNote - Visit PrivacyProtect.org to contact the domain owner/operator", "country": "AU", "postalcode": "QLD 4218", "organization": "PrivacyProtect.org", "email": "contact@privacyprotect.org"}, "tech": {"city": "Nobby Beach", "name": "Domain Admin", "phone": "+45.36946676", "state": "Queensland", "street": "ID#10760, PO Box 16\nNote - Visit PrivacyProtect.org to contact the domain owner/operator", "country": "AU", "postalcode": "QLD 4218", "organization": "PrivacyProtect.org", "email": "contact@privacyprotect.org"}, "registrant": {"city": "Nobby Beach", "name": "Domain Admin", "phone": "+45.36946676", "state": "Queensland", "street": "ID#10760, PO Box 16\nNote - Visit PrivacyProtect.org to contact the domain owner/operator", "country": "AU", "postalcode": "QLD 4218", "organization": "PrivacyProtect.org", "email": "contact@privacyprotect.org"}, "billing": {"city": "Nobby Beach", "name": "Domain Admin", "phone": "+45.36946676", "state": "Queensland", "street": "ID#10760, PO Box 16\nNote - Visit PrivacyProtect.org to contact the domain owner/operator", "country": "AU", "postalcode": "QLD 4218", "organization": "PrivacyProtect.org", "email": "contact@privacyprotect.org"}}, "nameservers": ["ns1.whois.com", "ns2.whois.com", "ns3.whois.com", "ns4.whois.com"], "expiration_date": ["2014-10-25T00:00:00"], "creation_date": ["2011-10-25T00:00:00"], "raw": ["Registration Service Provided By: WHOIS.COM\n\nDomain Name: NEPASITUATION.COM\n\n Registration Date: 25-Oct-2011 \n Expiration Date: 25-Oct-2014 \n\n Status:LOCKED\n\tNote: This Domain Name is currently Locked. \n\tThis feature is provided to protect against fraudulent acquisition of the domain name, \n\tas in this status the domain name cannot be transferred or modified. \n\n Name Servers: \n ns1.whois.com\n ns2.whois.com\n ns3.whois.com\n ns4.whois.com\n \n\n Registrant Contact Details:\n PrivacyProtect.org\n Domain Admin (contact@privacyprotect.org)\n ID#10760, PO Box 16\n Note - Visit PrivacyProtect.org to contact the domain owner/operator\n Nobby Beach\n Queensland,QLD 4218\n AU\n Tel. +45.36946676\n\n Administrative Contact Details: \n PrivacyProtect.org\n Domain Admin (contact@privacyprotect.org)\n ID#10760, PO Box 16\n Note - Visit PrivacyProtect.org to contact the domain owner/operator\n Nobby Beach\n Queensland,QLD 4218\n AU\n Tel. +45.36946676 \n\n Technical Contact Details: \n PrivacyProtect.org\n Domain Admin (contact@privacyprotect.org)\n ID#10760, PO Box 16\n Note - Visit PrivacyProtect.org to contact the domain owner/operator\n Nobby Beach\n Queensland,QLD 4218\n AU\n Tel. +45.36946676 \n\n Billing Contact Details: \n PrivacyProtect.org\n Domain Admin (contact@privacyprotect.org)\n ID#10760, PO Box 16\n Note - Visit PrivacyProtect.org to contact the domain owner/operator\n Nobby Beach\n Queensland,QLD 4218\n AU\n Tel. +45.36946676 \n \nPRIVACYPROTECT.ORG is providing privacy protection services to this domain name to \nprotect the owner from spam and phishing attacks. PrivacyProtect.org is not \nresponsible for any of the activities associated with this domain name. If you wish \nto report any abuse concerning the usage of this domain name, you may do so at \nhttp://privacyprotect.org/contact. We have a stringent abuse policy and any \ncomplaint will be actioned within a short period of time.\n\nThe data in this whois database is provided to you for information purposes \nonly, that is, to assist you in obtaining information about or related to a \ndomain name registration record. We make this information available \"as is\",\nand do not guarantee its accuracy. By submitting a whois query, you agree \nthat you will use this data only for lawful purposes and that, under no \ncircumstances will you use this data to: \n(1) enable high volume, automated, electronic processes that stress or load \nthis whois database system providing you this information; or \n(2) allow, enable, or otherwise support the transmission of mass unsolicited, \ncommercial advertising or solicitations via direct mail, electronic mail, or \nby telephone. \nThe compilation, repackaging, dissemination or other use of this data is \nexpressly prohibited without prior written consent from us. The Registrar of \nrecord is PDR Ltd. d/b/a PublicDomainRegistry.com. \nWe reserve the right to modify these terms at any time. \nBy submitting this query, you agree to abide by these terms.\n\n", "\nWhois Server Version 2.0\n\nDomain names in the .com and .net domains can now be registered\nwith many different competing registrars. Go to http://www.internic.net\nfor detailed information.\n\n Domain Name: NEPASITUATION.COM\n Registrar: PDR LTD. D/B/A PUBLICDOMAINREGISTRY.COM\n Whois Server: whois.PublicDomainRegistry.com\n Referral URL: http://www.PublicDomainRegistry.com\n Name Server: NS1.WHOIS.COM\n Name Server: NS2.WHOIS.COM\n Name Server: NS3.WHOIS.COM\n Name Server: NS4.WHOIS.COM\n Status: clientTransferProhibited\n Updated Date: 21-sep-2013\n Creation Date: 25-oct-2011\n Expiration Date: 25-oct-2014\n\n>>> Last update of whois database: Sat, 23 Nov 2013 13:48:16 UTC <<<\n\nNOTICE: The expiration date displayed in this record is the date the \nregistrar's sponsorship of the domain name registration in the registry is \ncurrently set to expire. This date does not necessarily reflect the expiration \ndate of the domain name registrant's agreement with the sponsoring \nregistrar. Users may consult the sponsoring registrar's Whois database to \nview the registrar's reported date of expiration for this registration.\n\nTERMS OF USE: You are not authorized to access or query our Whois \ndatabase through the use of electronic processes that are high-volume and \nautomated except as reasonably necessary to register domain names or \nmodify existing registrations; the Data in VeriSign Global Registry \nServices' (\"VeriSign\") Whois database is provided by VeriSign for \ninformation purposes only, and to assist persons in obtaining information \nabout or related to a domain name registration record. VeriSign does not \nguarantee its accuracy. By submitting a Whois query, you agree to abide \nby the following terms of use: You agree that you may use this Data only \nfor lawful purposes and that under no circumstances will you use this Data \nto: (1) allow, enable, or otherwise support the transmission of mass \nunsolicited, commercial advertising or solicitations via e-mail, telephone, \nor facsimile; or (2) enable high volume, automated, electronic processes \nthat apply to VeriSign (or its computer systems). The compilation, \nrepackaging, dissemination or other use of this Data is expressly \nprohibited without the prior written consent of VeriSign. You agree not to \nuse electronic processes that are automated and high-volume to access or \nquery the Whois database except as reasonably necessary to register \ndomain names or modify existing registrations. VeriSign reserves the right \nto restrict your access to the Whois database in its sole discretion to ensure \noperational stability. VeriSign may restrict or terminate your access to the \nWhois database for failure to abide by these terms of use. VeriSign \nreserves the right to modify these terms at any time. \n\nThe Registry database contains ONLY .COM, .NET, .EDU domains and\nRegistrars.\n"], "whois_server": ["whois.publicdomainregistry.com"], "registrar": ["Whois.com"]} \ No newline at end of file +{"status": ["Locked"], "updated_date": ["2013-09-21T00:00:00", "2013-11-23T13:48:16"], "contacts": {"admin": {"city": "Nobby Beach", "name": "Domain Admin", "phone": "+45.36946676", "state": "Queensland", "street": "ID#10760, PO Box 16\nNote - Visit PrivacyProtect.org to contact the domain owner/operator", "country": "AU", "postalcode": "QLD 4218", "organization": "PrivacyProtect.org", "email": "contact@privacyprotect.org"}, "tech": {"city": "Nobby Beach", "name": "Domain Admin", "phone": "+45.36946676", "state": "Queensland", "street": "ID#10760, PO Box 16\nNote - Visit PrivacyProtect.org to contact the domain owner/operator", "country": "AU", "postalcode": "QLD 4218", "organization": "PrivacyProtect.org", "email": "contact@privacyprotect.org"}, "registrant": {"city": "Nobby Beach", "name": "Domain Admin", "phone": "+45.36946676", "state": "Queensland", "street": "ID#10760, PO Box 16\nNote - Visit PrivacyProtect.org to contact the domain owner/operator", "country": "AU", "postalcode": "QLD 4218", "organization": "PrivacyProtect.org", "email": "contact@privacyprotect.org"}, "billing": {"city": "Nobby Beach", "name": "Domain Admin", "phone": "+45.36946676", "state": "Queensland", "street": "ID#10760, PO Box 16\nNote - Visit PrivacyProtect.org to contact the domain owner/operator", "country": "AU", "postalcode": "QLD 4218", "organization": "PrivacyProtect.org", "email": "contact@privacyprotect.org"}}, "nameservers": ["ns1.whois.com", "ns2.whois.com", "ns3.whois.com", "ns4.whois.com"], "expiration_date": ["2014-10-25T00:00:00"], "creation_date": ["2011-10-25T00:00:00"], "raw": ["Registration Service Provided By: WHOIS.COM\n\nDomain Name: NEPASITUATION.COM\n\n Registration Date: 25-Oct-2011 \n Expiration Date: 25-Oct-2014 \n\n Status:LOCKED\n\tNote: This Domain Name is currently Locked. \n\tThis feature is provided to protect against fraudulent acquisition of the domain name, \n\tas in this status the domain name cannot be transferred or modified. \n\n Name Servers: \n ns1.whois.com\n ns2.whois.com\n ns3.whois.com\n ns4.whois.com\n \n\n Registrant Contact Details:\n PrivacyProtect.org\n Domain Admin (contact@privacyprotect.org)\n ID#10760, PO Box 16\n Note - Visit PrivacyProtect.org to contact the domain owner/operator\n Nobby Beach\n Queensland,QLD 4218\n AU\n Tel. +45.36946676\n\n Administrative Contact Details: \n PrivacyProtect.org\n Domain Admin (contact@privacyprotect.org)\n ID#10760, PO Box 16\n Note - Visit PrivacyProtect.org to contact the domain owner/operator\n Nobby Beach\n Queensland,QLD 4218\n AU\n Tel. +45.36946676 \n\n Technical Contact Details: \n PrivacyProtect.org\n Domain Admin (contact@privacyprotect.org)\n ID#10760, PO Box 16\n Note - Visit PrivacyProtect.org to contact the domain owner/operator\n Nobby Beach\n Queensland,QLD 4218\n AU\n Tel. +45.36946676 \n\n Billing Contact Details: \n PrivacyProtect.org\n Domain Admin (contact@privacyprotect.org)\n ID#10760, PO Box 16\n Note - Visit PrivacyProtect.org to contact the domain owner/operator\n Nobby Beach\n Queensland,QLD 4218\n AU\n Tel. +45.36946676 \n \nPRIVACYPROTECT.ORG is providing privacy protection services to this domain name to \nprotect the owner from spam and phishing attacks. PrivacyProtect.org is not \nresponsible for any of the activities associated with this domain name. If you wish \nto report any abuse concerning the usage of this domain name, you may do so at \nhttp://privacyprotect.org/contact. We have a stringent abuse policy and any \ncomplaint will be actioned within a short period of time.\n\nThe data in this whois database is provided to you for information purposes \nonly, that is, to assist you in obtaining information about or related to a \ndomain name registration record. We make this information available \"as is\",\nand do not guarantee its accuracy. By submitting a whois query, you agree \nthat you will use this data only for lawful purposes and that, under no \ncircumstances will you use this data to: \n(1) enable high volume, automated, electronic processes that stress or load \nthis whois database system providing you this information; or \n(2) allow, enable, or otherwise support the transmission of mass unsolicited, \ncommercial advertising or solicitations via direct mail, electronic mail, or \nby telephone. \nThe compilation, repackaging, dissemination or other use of this data is \nexpressly prohibited without prior written consent from us. The Registrar of \nrecord is PDR Ltd. d/b/a PublicDomainRegistry.com. \nWe reserve the right to modify these terms at any time. \nBy submitting this query, you agree to abide by these terms.\n\n", "\nWhois Server Version 2.0\n\nDomain names in the .com and .net domains can now be registered\nwith many different competing registrars. Go to http://www.internic.net\nfor detailed information.\n\n Domain Name: NEPASITUATION.COM\n Registrar: PDR LTD. D/B/A PUBLICDOMAINREGISTRY.COM\n Whois Server: whois.PublicDomainRegistry.com\n Referral URL: http://www.PublicDomainRegistry.com\n Name Server: NS1.WHOIS.COM\n Name Server: NS2.WHOIS.COM\n Name Server: NS3.WHOIS.COM\n Name Server: NS4.WHOIS.COM\n Status: clientTransferProhibited\n Updated Date: 21-sep-2013\n Creation Date: 25-oct-2011\n Expiration Date: 25-oct-2014\n\n>>> Last update of whois database: Sat, 23 Nov 2013 13:48:16 UTC <<<\n\nNOTICE: The expiration date displayed in this record is the date the \nregistrar's sponsorship of the domain name registration in the registry is \ncurrently set to expire. This date does not necessarily reflect the expiration \ndate of the domain name registrant's agreement with the sponsoring \nregistrar. Users may consult the sponsoring registrar's Whois database to \nview the registrar's reported date of expiration for this registration.\n\nTERMS OF USE: You are not authorized to access or query our Whois \ndatabase through the use of electronic processes that are high-volume and \nautomated except as reasonably necessary to register domain names or \nmodify existing registrations; the Data in VeriSign Global Registry \nServices' (\"VeriSign\") Whois database is provided by VeriSign for \ninformation purposes only, and to assist persons in obtaining information \nabout or related to a domain name registration record. VeriSign does not \nguarantee its accuracy. By submitting a Whois query, you agree to abide \nby the following terms of use: You agree that you may use this Data only \nfor lawful purposes and that under no circumstances will you use this Data \nto: (1) allow, enable, or otherwise support the transmission of mass \nunsolicited, commercial advertising or solicitations via e-mail, telephone, \nor facsimile; or (2) enable high volume, automated, electronic processes \nthat apply to VeriSign (or its computer systems). The compilation, \nrepackaging, dissemination or other use of this Data is expressly \nprohibited without the prior written consent of VeriSign. You agree not to \nuse electronic processes that are automated and high-volume to access or \nquery the Whois database except as reasonably necessary to register \ndomain names or modify existing registrations. VeriSign reserves the right \nto restrict your access to the Whois database in its sole discretion to ensure \noperational stability. VeriSign may restrict or terminate your access to the \nWhois database for failure to abide by these terms of use. VeriSign \nreserves the right to modify these terms at any time. \n\nThe Registry database contains ONLY .COM, .NET, .EDU domains and\nRegistrars.\n"], "whois_server": ["whois.publicdomainregistry.com"], "registrar": ["whois.com"]} \ No newline at end of file diff --git a/test/target_normalized/nytimes.com b/test/target_normalized/nytimes.com index e5322a1..4c6efa2 100644 --- a/test/target_normalized/nytimes.com +++ b/test/target_normalized/nytimes.com @@ -1 +1 @@ -{"status": ["serverDeleteProhibited", "serverTransferProhibited", "serverUpdateProhibited"], "updated_date": ["2013-08-27T00:00:00", "2013-11-23T14:47:40"], "contacts": {"admin": {"city": "New York", "fax": "+1.2125561234", "name": "Ellen Herb", "phone": "+1.2125561234", "state": "NY", "street": "620 8th Avenue", "country": "United States", "postalcode": "10018", "email": "hostmaster@nytimes.com"}, "tech": {"city": "New York", "fax": "+1.1231231234", "name": "New York Times Digital", "phone": "+1.2125561234", "state": "NY", "street": "229 West 43d Street", "country": "United States", "postalcode": "10036", "email": "hostmaster@nytimes.com"}, "registrant": {"city": "New York", "name": "New York Times Digital", "state": "NY", "street": "620 8th Avenue", "country": "United States", "postalcode": "10018"}, "billing": null}, "nameservers": ["dns.ewr1.nytimes.com", "dns.sea1.nytimes.com"], "expiration_date": ["2014-01-19T00:00:00"], "creation_date": ["1994-01-18T00:00:00"], "raw": ["\nDomain Name.......... nytimes.com\n Creation Date........ 1994-01-18\n Registration Date.... 2011-08-31\n Expiry Date.......... 2014-01-20\n Organisation Name.... New York Times Digital\n Organisation Address. 620 8th Avenue\n Organisation Address. \n Organisation Address. \n Organisation Address. New York\n Organisation Address. 10018\n Organisation Address. NY\n Organisation Address. UNITED STATES\n\nAdmin Name........... Ellen Herb\n Admin Address........ 620 8th Avenue\n Admin Address........ \n Admin Address........ \n Admin Address. NEW YORK\n Admin Address........ 10018\n Admin Address........ NY\n Admin Address........ UNITED STATES\n Admin Email.......... hostmaster@nytimes.com\n Admin Phone.......... +1.2125561234\n Admin Fax............ +1.2125561234\n\nTech Name............ NEW YORK TIMES DIGITAL\n Tech Address......... 229 West 43d Street\n Tech Address......... \n Tech Address......... \n Tech Address......... New York\n Tech Address......... 10036\n Tech Address......... NY\n Tech Address......... UNITED STATES\n Tech Email........... hostmaster@nytimes.com\n Tech Phone........... +1.2125561234\n Tech Fax............. +1.1231231234\n Name Server.......... DNS.EWR1.NYTIMES.COM\n Name Server.......... DNS.SEA1.NYTIMES.COM\n\n\n", "\nWhois Server Version 2.0\n\nDomain names in the .com and .net domains can now be registered\nwith many different competing registrars. Go to http://www.internic.net\nfor detailed information.\n\n Server Name: NYTIMES.COM\n IP Address: 141.105.64.37\n Registrar: MELBOURNE IT, LTD. D/B/A INTERNET NAMES WORLDWIDE\n Whois Server: whois.melbourneit.com\n Referral URL: http://www.melbourneit.com\n\n Domain Name: NYTIMES.COM\n Registrar: MELBOURNE IT, LTD. D/B/A INTERNET NAMES WORLDWIDE\n Whois Server: whois.melbourneit.com\n Referral URL: http://www.melbourneit.com\n Name Server: DNS.EWR1.NYTIMES.COM\n Name Server: DNS.SEA1.NYTIMES.COM\n Status: serverDeleteProhibited\n Status: serverTransferProhibited\n Status: serverUpdateProhibited\n Updated Date: 27-aug-2013\n Creation Date: 18-jan-1994\n Expiration Date: 19-jan-2014\n\n>>> Last update of whois database: Sat, 23 Nov 2013 14:47:40 UTC <<<\n\nNOTICE: The expiration date displayed in this record is the date the \nregistrar's sponsorship of the domain name registration in the registry is \ncurrently set to expire. This date does not necessarily reflect the expiration \ndate of the domain name registrant's agreement with the sponsoring \nregistrar. Users may consult the sponsoring registrar's Whois database to \nview the registrar's reported date of expiration for this registration.\n\nTERMS OF USE: You are not authorized to access or query our Whois \ndatabase through the use of electronic processes that are high-volume and \nautomated except as reasonably necessary to register domain names or \nmodify existing registrations; the Data in VeriSign Global Registry \nServices' (\"VeriSign\") Whois database is provided by VeriSign for \ninformation purposes only, and to assist persons in obtaining information \nabout or related to a domain name registration record. VeriSign does not \nguarantee its accuracy. By submitting a Whois query, you agree to abide \nby the following terms of use: You agree that you may use this Data only \nfor lawful purposes and that under no circumstances will you use this Data \nto: (1) allow, enable, or otherwise support the transmission of mass \nunsolicited, commercial advertising or solicitations via e-mail, telephone, \nor facsimile; or (2) enable high volume, automated, electronic processes \nthat apply to VeriSign (or its computer systems). The compilation, \nrepackaging, dissemination or other use of this Data is expressly \nprohibited without the prior written consent of VeriSign. You agree not to \nuse electronic processes that are automated and high-volume to access or \nquery the Whois database except as reasonably necessary to register \ndomain names or modify existing registrations. VeriSign reserves the right \nto restrict your access to the Whois database in its sole discretion to ensure \noperational stability. VeriSign may restrict or terminate your access to the \nWhois database for failure to abide by these terms of use. VeriSign \nreserves the right to modify these terms at any time. \n\nThe Registry database contains ONLY .COM, .NET, .EDU domains and\nRegistrars.\n"], "whois_server": ["whois.melbourneit.com", "whois.melbourneit.com"], "registrar": ["Melbourne It, Ltd. D/b/a Internet Names Worldwide"]} \ No newline at end of file +{"status": ["serverDeleteProhibited", "serverTransferProhibited", "serverUpdateProhibited"], "updated_date": ["2013-08-27T00:00:00", "2013-11-23T14:47:40"], "contacts": {"admin": {"city": "New York", "fax": "+1.2125561234", "name": "Ellen Herb", "phone": "+1.2125561234", "state": "NY", "street": "620 8th Avenue", "country": "United States", "postalcode": "10018", "email": "hostmaster@nytimes.com"}, "tech": {"city": "New York", "fax": "+1.1231231234", "name": "New York Times Digital", "phone": "+1.2125561234", "state": "NY", "street": "229 West 43d Street", "country": "United States", "postalcode": "10036", "email": "hostmaster@nytimes.com"}, "registrant": {"city": "New York", "name": "New York Times Digital", "state": "NY", "street": "620 8th Avenue", "country": "United States", "postalcode": "10018"}, "billing": null}, "nameservers": ["dns.ewr1.nytimes.com", "dns.sea1.nytimes.com"], "expiration_date": ["2014-01-19T00:00:00"], "creation_date": ["1994-01-18T00:00:00"], "raw": ["\nDomain Name.......... nytimes.com\n Creation Date........ 1994-01-18\n Registration Date.... 2011-08-31\n Expiry Date.......... 2014-01-20\n Organisation Name.... New York Times Digital\n Organisation Address. 620 8th Avenue\n Organisation Address. \n Organisation Address. \n Organisation Address. New York\n Organisation Address. 10018\n Organisation Address. NY\n Organisation Address. UNITED STATES\n\nAdmin Name........... Ellen Herb\n Admin Address........ 620 8th Avenue\n Admin Address........ \n Admin Address........ \n Admin Address. NEW YORK\n Admin Address........ 10018\n Admin Address........ NY\n Admin Address........ UNITED STATES\n Admin Email.......... hostmaster@nytimes.com\n Admin Phone.......... +1.2125561234\n Admin Fax............ +1.2125561234\n\nTech Name............ NEW YORK TIMES DIGITAL\n Tech Address......... 229 West 43d Street\n Tech Address......... \n Tech Address......... \n Tech Address......... New York\n Tech Address......... 10036\n Tech Address......... NY\n Tech Address......... UNITED STATES\n Tech Email........... hostmaster@nytimes.com\n Tech Phone........... +1.2125561234\n Tech Fax............. +1.1231231234\n Name Server.......... DNS.EWR1.NYTIMES.COM\n Name Server.......... DNS.SEA1.NYTIMES.COM\n\n\n", "\nWhois Server Version 2.0\n\nDomain names in the .com and .net domains can now be registered\nwith many different competing registrars. Go to http://www.internic.net\nfor detailed information.\n\n Server Name: NYTIMES.COM\n IP Address: 141.105.64.37\n Registrar: MELBOURNE IT, LTD. D/B/A INTERNET NAMES WORLDWIDE\n Whois Server: whois.melbourneit.com\n Referral URL: http://www.melbourneit.com\n\n Domain Name: NYTIMES.COM\n Registrar: MELBOURNE IT, LTD. D/B/A INTERNET NAMES WORLDWIDE\n Whois Server: whois.melbourneit.com\n Referral URL: http://www.melbourneit.com\n Name Server: DNS.EWR1.NYTIMES.COM\n Name Server: DNS.SEA1.NYTIMES.COM\n Status: serverDeleteProhibited\n Status: serverTransferProhibited\n Status: serverUpdateProhibited\n Updated Date: 27-aug-2013\n Creation Date: 18-jan-1994\n Expiration Date: 19-jan-2014\n\n>>> Last update of whois database: Sat, 23 Nov 2013 14:47:40 UTC <<<\n\nNOTICE: The expiration date displayed in this record is the date the \nregistrar's sponsorship of the domain name registration in the registry is \ncurrently set to expire. This date does not necessarily reflect the expiration \ndate of the domain name registrant's agreement with the sponsoring \nregistrar. Users may consult the sponsoring registrar's Whois database to \nview the registrar's reported date of expiration for this registration.\n\nTERMS OF USE: You are not authorized to access or query our Whois \ndatabase through the use of electronic processes that are high-volume and \nautomated except as reasonably necessary to register domain names or \nmodify existing registrations; the Data in VeriSign Global Registry \nServices' (\"VeriSign\") Whois database is provided by VeriSign for \ninformation purposes only, and to assist persons in obtaining information \nabout or related to a domain name registration record. VeriSign does not \nguarantee its accuracy. By submitting a Whois query, you agree to abide \nby the following terms of use: You agree that you may use this Data only \nfor lawful purposes and that under no circumstances will you use this Data \nto: (1) allow, enable, or otherwise support the transmission of mass \nunsolicited, commercial advertising or solicitations via e-mail, telephone, \nor facsimile; or (2) enable high volume, automated, electronic processes \nthat apply to VeriSign (or its computer systems). The compilation, \nrepackaging, dissemination or other use of this Data is expressly \nprohibited without the prior written consent of VeriSign. You agree not to \nuse electronic processes that are automated and high-volume to access or \nquery the Whois database except as reasonably necessary to register \ndomain names or modify existing registrations. VeriSign reserves the right \nto restrict your access to the Whois database in its sole discretion to ensure \noperational stability. VeriSign may restrict or terminate your access to the \nWhois database for failure to abide by these terms of use. VeriSign \nreserves the right to modify these terms at any time. \n\nThe Registry database contains ONLY .COM, .NET, .EDU domains and\nRegistrars.\n"], "whois_server": ["whois.melbourneit.com", "whois.melbourneit.com"], "registrar": ["Melbourne IT, LTD. D/b/a Internet Names Worldwide"]} \ No newline at end of file diff --git a/test/target_normalized/prq.se b/test/target_normalized/prq.se index fe7caf7..8ee2bfc 100644 --- a/test/target_normalized/prq.se +++ b/test/target_normalized/prq.se @@ -1 +1 @@ -{"status": ["active", "ok"], "updated_date": ["2012-11-03T00:00:00"], "contacts": {"admin": null, "tech": null, "registrant": {"handle": "perper9352-00001"}, "billing": null}, "nameservers": ["ns.prq.se", "ns2.prq.se"], "expiration_date": ["2015-06-14T00:00:00"], "creation_date": ["2004-06-14T00:00:00"], "raw": ["# Copyright (c) 1997- .SE (The Internet Infrastructure Foundation).\n# All rights reserved.\n\n# The information obtained through searches, or otherwise, is protected\n# by the Swedish Copyright Act (1960:729) and international conventions.\n# It is also subject to database protection according to the Swedish\n# Copyright Act.\n\n# Any use of this material to target advertising or\n# similar activities is forbidden and will be prosecuted.\n# If any of the information below is transferred to a third\n# party, it must be done in its entirety. This server must\n# not be used as a backend for a search engine.\n\n# Result of search for registered domain names under\n# the .SE top level domain.\n\n# The data is in the UTF-8 character set and the result is\n# printed with eight bits.\n\nstate: active\ndomain: prq.se\nholder: perper9352-00001\nadmin-c: -\ntech-c: -\nbilling-c: -\ncreated: 2004-06-14\nmodified: 2012-11-03\nexpires: 2015-06-14\ntransferred: 2012-08-09\nnserver: ns.prq.se 193.104.214.194\nnserver: ns2.prq.se 88.80.30.194\ndnssec: unsigned delegation\nstatus: ok\nregistrar: AEB Komm\n\n"], "registrar": ["AEB Komm"]} \ No newline at end of file +{"status": ["Active", "ok"], "updated_date": ["2012-11-03T00:00:00"], "contacts": {"admin": null, "tech": null, "registrant": {"handle": "perper9352-00001"}, "billing": null}, "nameservers": ["ns.prq.se", "ns2.prq.se"], "expiration_date": ["2015-06-14T00:00:00"], "creation_date": ["2004-06-14T00:00:00"], "raw": ["# Copyright (c) 1997- .SE (The Internet Infrastructure Foundation).\n# All rights reserved.\n\n# The information obtained through searches, or otherwise, is protected\n# by the Swedish Copyright Act (1960:729) and international conventions.\n# It is also subject to database protection according to the Swedish\n# Copyright Act.\n\n# Any use of this material to target advertising or\n# similar activities is forbidden and will be prosecuted.\n# If any of the information below is transferred to a third\n# party, it must be done in its entirety. This server must\n# not be used as a backend for a search engine.\n\n# Result of search for registered domain names under\n# the .SE top level domain.\n\n# The data is in the UTF-8 character set and the result is\n# printed with eight bits.\n\nstate: active\ndomain: prq.se\nholder: perper9352-00001\nadmin-c: -\ntech-c: -\nbilling-c: -\ncreated: 2004-06-14\nmodified: 2012-11-03\nexpires: 2015-06-14\ntransferred: 2012-08-09\nnserver: ns.prq.se 193.104.214.194\nnserver: ns2.prq.se 88.80.30.194\ndnssec: unsigned delegation\nstatus: ok\nregistrar: AEB Komm\n\n"], "registrar": ["AEB Komm"]} \ No newline at end of file diff --git a/test/target_normalized/twitter.com b/test/target_normalized/twitter.com index 2de67bb..99e7b18 100644 --- a/test/target_normalized/twitter.com +++ b/test/target_normalized/twitter.com @@ -1 +1 @@ -{"updated_date": ["2013-10-07T00:00:00", "2013-10-07T00:00:00"], "status": ["clientTransferProhibited", "serverDeleteProhibited", "serverTransferProhibited", "serverUpdateProhibited"], "contacts": {"admin": {"city": "San Francisco", "name": "Domain Admin", "country": "US", "phone": "+1.4152229670", "state": "CA", "street": "1355 Market Street Suite 900", "postalcode": "94103", "organization": "Twitter, Inc.", "email": "domains@twitter.com"}, "tech": {"city": "San Francisco", "name": "Tech Admin", "country": "US", "phone": "+1.4152229670", "state": "CA", "street": "1355 Market Street Suite 900", "postalcode": "94103", "organization": "Twitter, Inc.", "email": "domains-tech@twitter.com"}, "registrant": {"city": "San Francisco", "name": "Twitter, Inc.", "country": "US", "state": "CA", "street": "1355 Market Street Suite 900", "postalcode": "94103", "organization": "Twitter, Inc.", "email": "domains@twitter.com"}, "billing": null}, "nameservers": ["ns3.p34.dynect.net", "ns4.p34.dynect.net", "ns2.p34.dynect.net", "ns1.p34.dynect.net"], "expiration_date": ["2020-01-21T00:00:00", "2020-01-21T00:00:00"], "creation_date": ["2000-01-21T00:00:00", "2000-01-21T00:00:00"], "raw": ["\nCorporation Service Company(c) (CSC) The Trusted Partner of More than 50% of the 100 Best Global Brands.\n\nContact us to learn more about our enterprise solutions for Global Domain Name Registration and Management, Trademark Research and Watching, Brand, Logo and Auction Monitoring, as well SSL Certificate Services and DNS Hosting.\n\nNOTICE: You are not authorized to access or query our WHOIS database through the use of high-volume, automated, electronic processes or for the purpose or purposes of using the data in any manner that violates these terms of use. The Data in the CSC WHOIS database is provided by CSC for information purposes only, and to assist persons in obtaining information about or related to a domain name registration record. CSC 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 direct mail, e-mail, telephone, or facsimile; or (2) enable high volume, automated, electronic processes that apply to CSC (or its computer systems). CSC reserves the right to terminate your access to the WHOIS database in its sole discretion for any violations by you of these terms of use. CSC reserves the right to modify these terms at any time.\n\n Registrant: \n Twitter, Inc.\n Twitter, Inc.\n 1355 Market Street Suite 900\n San Francisco, CA 94103\n US\n Email: domains@twitter.com\n\n Registrar Name....: CORPORATE DOMAINS, INC.\n Registrar Whois...: whois.corporatedomains.com\n Registrar Homepage: www.cscprotectsbrands.com \n\n Domain Name: twitter.com\n\n Created on..............: Fri, Jan 21, 2000\n Expires on..............: Tue, Jan 21, 2020\n Record last updated on..: Mon, Oct 07, 2013\n\n Administrative Contact:\n Twitter, Inc.\n Domain Admin\n 1355 Market Street Suite 900\n San Francisco, CA 94103\n US\n Phone: +1.4152229670\n Email: domains@twitter.com\n\n Technical Contact:\n Twitter, Inc.\n Tech Admin\n 1355 Market Street Suite 900\n San Francisco, CA 94103\n US\n Phone: +1.4152229670\n Email: domains-tech@twitter.com\n\n DNS Servers:\n\n NS3.P34.DYNECT.NET\n NS4.P34.DYNECT.NET\n NS2.P34.DYNECT.NET\n NS1.P34.DYNECT.NET\n \n\nRegister your domain name at http://www.cscglobal.com\n\n", "\nWhois Server Version 2.0\n\nDomain names in the .com and .net domains can now be registered\nwith many different competing registrars. Go to http://www.internic.net\nfor detailed information.\n\n Server Name: TWITTER.COM.GET.ONE.MILLION.DOLLARS.AT.WWW.UNIMUNDI.COM\n IP Address: 209.126.190.71\n Registrar: PDR LTD. D/B/A PUBLICDOMAINREGISTRY.COM\n Whois Server: whois.PublicDomainRegistry.com\n Referral URL: http://www.PublicDomainRegistry.com\n\n Domain Name: TWITTER.COM\n Registrar: CSC CORPORATE DOMAINS, INC.\n Whois Server: whois.corporatedomains.com\n Referral URL: http://www.cscglobal.com\n Name Server: NS1.P34.DYNECT.NET\n Name Server: NS2.P34.DYNECT.NET\n Name Server: NS3.P34.DYNECT.NET\n Name Server: NS4.P34.DYNECT.NET\n Status: clientTransferProhibited\n Status: serverDeleteProhibited\n Status: serverTransferProhibited\n Status: serverUpdateProhibited\n Updated Date: 07-oct-2013\n Creation Date: 21-jan-2000\n Expiration Date: 21-jan-2020\n\n>>> Last update of whois database: Sat, 23 Nov 2013 14:23:45 UTC <<<\n\nNOTICE: The expiration date displayed in this record is the date the \nregistrar's sponsorship of the domain name registration in the registry is \ncurrently set to expire. This date does not necessarily reflect the expiration \ndate of the domain name registrant's agreement with the sponsoring \nregistrar. Users may consult the sponsoring registrar's Whois database to \nview the registrar's reported date of expiration for this registration.\n\nTERMS OF USE: You are not authorized to access or query our Whois \ndatabase through the use of electronic processes that are high-volume and \nautomated except as reasonably necessary to register domain names or \nmodify existing registrations; the Data in VeriSign Global Registry \nServices' (\"VeriSign\") Whois database is provided by VeriSign for \ninformation purposes only, and to assist persons in obtaining information \nabout or related to a domain name registration record. VeriSign does not \nguarantee its accuracy. By submitting a Whois query, you agree to abide \nby the following terms of use: You agree that you may use this Data only \nfor lawful purposes and that under no circumstances will you use this Data \nto: (1) allow, enable, or otherwise support the transmission of mass \nunsolicited, commercial advertising or solicitations via e-mail, telephone, \nor facsimile; or (2) enable high volume, automated, electronic processes \nthat apply to VeriSign (or its computer systems). The compilation, \nrepackaging, dissemination or other use of this Data is expressly \nprohibited without the prior written consent of VeriSign. You agree not to \nuse electronic processes that are automated and high-volume to access or \nquery the Whois database except as reasonably necessary to register \ndomain names or modify existing registrations. VeriSign reserves the right \nto restrict your access to the Whois database in its sole discretion to ensure \noperational stability. VeriSign may restrict or terminate your access to the \nWhois database for failure to abide by these terms of use. VeriSign \nreserves the right to modify these terms at any time. \n\nThe Registry database contains ONLY .COM, .NET, .EDU domains and\nRegistrars.\n"], "whois_server": ["whois.publicdomainregistry.com", "whois.corporatedomains.com"], "registrar": ["Corporate Domains, Inc."]} \ No newline at end of file +{"updated_date": ["2013-10-07T00:00:00", "2013-10-07T00:00:00"], "status": ["clientTransferProhibited", "serverDeleteProhibited", "serverTransferProhibited", "serverUpdateProhibited"], "contacts": {"admin": {"city": "San Francisco", "name": "Domain Admin", "country": "US", "phone": "+1.4152229670", "state": "CA", "street": "1355 Market Street Suite 900", "postalcode": "94103", "organization": "Twitter, Inc.", "email": "domains@twitter.com"}, "tech": {"city": "San Francisco", "name": "Tech Admin", "country": "US", "phone": "+1.4152229670", "state": "CA", "street": "1355 Market Street Suite 900", "postalcode": "94103", "organization": "Twitter, Inc.", "email": "domains-tech@twitter.com"}, "registrant": {"city": "San Francisco", "name": "Twitter, Inc.", "country": "US", "state": "CA", "street": "1355 Market Street Suite 900", "postalcode": "94103", "organization": "Twitter, Inc.", "email": "domains@twitter.com"}, "billing": null}, "nameservers": ["ns3.p34.dynect.net", "ns4.p34.dynect.net", "ns2.p34.dynect.net", "ns1.p34.dynect.net"], "expiration_date": ["2020-01-21T00:00:00", "2020-01-21T00:00:00"], "creation_date": ["2000-01-21T00:00:00", "2000-01-21T00:00:00"], "raw": ["\nCorporation Service Company(c) (CSC) The Trusted Partner of More than 50% of the 100 Best Global Brands.\n\nContact us to learn more about our enterprise solutions for Global Domain Name Registration and Management, Trademark Research and Watching, Brand, Logo and Auction Monitoring, as well SSL Certificate Services and DNS Hosting.\n\nNOTICE: You are not authorized to access or query our WHOIS database through the use of high-volume, automated, electronic processes or for the purpose or purposes of using the data in any manner that violates these terms of use. The Data in the CSC WHOIS database is provided by CSC for information purposes only, and to assist persons in obtaining information about or related to a domain name registration record. CSC 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 direct mail, e-mail, telephone, or facsimile; or (2) enable high volume, automated, electronic processes that apply to CSC (or its computer systems). CSC reserves the right to terminate your access to the WHOIS database in its sole discretion for any violations by you of these terms of use. CSC reserves the right to modify these terms at any time.\n\n Registrant: \n Twitter, Inc.\n Twitter, Inc.\n 1355 Market Street Suite 900\n San Francisco, CA 94103\n US\n Email: domains@twitter.com\n\n Registrar Name....: CORPORATE DOMAINS, INC.\n Registrar Whois...: whois.corporatedomains.com\n Registrar Homepage: www.cscprotectsbrands.com \n\n Domain Name: twitter.com\n\n Created on..............: Fri, Jan 21, 2000\n Expires on..............: Tue, Jan 21, 2020\n Record last updated on..: Mon, Oct 07, 2013\n\n Administrative Contact:\n Twitter, Inc.\n Domain Admin\n 1355 Market Street Suite 900\n San Francisco, CA 94103\n US\n Phone: +1.4152229670\n Email: domains@twitter.com\n\n Technical Contact:\n Twitter, Inc.\n Tech Admin\n 1355 Market Street Suite 900\n San Francisco, CA 94103\n US\n Phone: +1.4152229670\n Email: domains-tech@twitter.com\n\n DNS Servers:\n\n NS3.P34.DYNECT.NET\n NS4.P34.DYNECT.NET\n NS2.P34.DYNECT.NET\n NS1.P34.DYNECT.NET\n \n\nRegister your domain name at http://www.cscglobal.com\n\n", "\nWhois Server Version 2.0\n\nDomain names in the .com and .net domains can now be registered\nwith many different competing registrars. Go to http://www.internic.net\nfor detailed information.\n\n Server Name: TWITTER.COM.GET.ONE.MILLION.DOLLARS.AT.WWW.UNIMUNDI.COM\n IP Address: 209.126.190.71\n Registrar: PDR LTD. D/B/A PUBLICDOMAINREGISTRY.COM\n Whois Server: whois.PublicDomainRegistry.com\n Referral URL: http://www.PublicDomainRegistry.com\n\n Domain Name: TWITTER.COM\n Registrar: CSC CORPORATE DOMAINS, INC.\n Whois Server: whois.corporatedomains.com\n Referral URL: http://www.cscglobal.com\n Name Server: NS1.P34.DYNECT.NET\n Name Server: NS2.P34.DYNECT.NET\n Name Server: NS3.P34.DYNECT.NET\n Name Server: NS4.P34.DYNECT.NET\n Status: clientTransferProhibited\n Status: serverDeleteProhibited\n Status: serverTransferProhibited\n Status: serverUpdateProhibited\n Updated Date: 07-oct-2013\n Creation Date: 21-jan-2000\n Expiration Date: 21-jan-2020\n\n>>> Last update of whois database: Sat, 23 Nov 2013 14:23:45 UTC <<<\n\nNOTICE: The expiration date displayed in this record is the date the \nregistrar's sponsorship of the domain name registration in the registry is \ncurrently set to expire. This date does not necessarily reflect the expiration \ndate of the domain name registrant's agreement with the sponsoring \nregistrar. Users may consult the sponsoring registrar's Whois database to \nview the registrar's reported date of expiration for this registration.\n\nTERMS OF USE: You are not authorized to access or query our Whois \ndatabase through the use of electronic processes that are high-volume and \nautomated except as reasonably necessary to register domain names or \nmodify existing registrations; the Data in VeriSign Global Registry \nServices' (\"VeriSign\") Whois database is provided by VeriSign for \ninformation purposes only, and to assist persons in obtaining information \nabout or related to a domain name registration record. VeriSign does not \nguarantee its accuracy. By submitting a Whois query, you agree to abide \nby the following terms of use: You agree that you may use this Data only \nfor lawful purposes and that under no circumstances will you use this Data \nto: (1) allow, enable, or otherwise support the transmission of mass \nunsolicited, commercial advertising or solicitations via e-mail, telephone, \nor facsimile; or (2) enable high volume, automated, electronic processes \nthat apply to VeriSign (or its computer systems). The compilation, \nrepackaging, dissemination or other use of this Data is expressly \nprohibited without the prior written consent of VeriSign. You agree not to \nuse electronic processes that are automated and high-volume to access or \nquery the Whois database except as reasonably necessary to register \ndomain names or modify existing registrations. VeriSign reserves the right \nto restrict your access to the Whois database in its sole discretion to ensure \noperational stability. VeriSign may restrict or terminate your access to the \nWhois database for failure to abide by these terms of use. VeriSign \nreserves the right to modify these terms at any time. \n\nThe Registry database contains ONLY .COM, .NET, .EDU domains and\nRegistrars.\n"], "whois_server": ["whois.publicdomainregistry.com", "whois.corporatedomains.com"], "registrar": ["Corporate Domains, INC."]} \ No newline at end of file diff --git a/test/target_normalized/whois.com b/test/target_normalized/whois.com index 35e326a..7b796e4 100644 --- a/test/target_normalized/whois.com +++ b/test/target_normalized/whois.com @@ -1 +1 @@ -{"status": ["Locked"], "updated_date": ["2011-10-24T00:00:00", "2013-11-23T11:09:14"], "contacts": {"admin": {"city": "Singapore", "name": "DNS Admin", "phone": "+65.67553177", "state": "Singapore", "street": "c/o 9A Jasmine Road", "country": "SG", "postalcode": "576582", "organization": "Whois Inc", "email": "dnsadmin@whois.com"}, "tech": {"city": "Singapore", "name": "DNS Admin", "phone": "+65.67553177", "state": "Singapore", "street": "c/o 9A Jasmine Road", "country": "SG", "postalcode": "576582", "organization": "Whois Inc", "email": "dnsadmin@whois.com"}, "registrant": {"city": "Singapore", "name": "DNS Admin", "phone": "+65.67553177", "state": "Singapore", "street": "c/o 9A Jasmine Road", "country": "SG", "postalcode": "576582", "organization": "Whois Inc", "email": "dnsadmin@whois.com"}, "billing": {"city": "Singapore", "name": "DNS Admin", "phone": "+65.67553177", "state": "Singapore", "street": "c/o 9A Jasmine Road", "country": "SG", "postalcode": "576582", "organization": "Whois Inc", "email": "dnsadmin@whois.com"}}, "nameservers": ["ns1.whois.com", "ns2.whois.com", "ns3.whois.com", "ns4.whois.com"], "expiration_date": ["2021-04-12T00:00:00"], "creation_date": ["1995-04-11T00:00:00"], "raw": ["Registration Service Provided By: WHOIS.COM\n\nDomain Name: WHOIS.COM\n\n Registration Date: 11-Apr-1995 \n Expiration Date: 12-Apr-2021 \n\n Status:LOCKED\n\tNote: This Domain Name is currently Locked. \n\tThis feature is provided to protect against fraudulent acquisition of the domain name, \n\tas in this status the domain name cannot be transferred or modified. \n\n Name Servers: \n ns1.whois.com\n ns2.whois.com\n ns3.whois.com\n ns4.whois.com\n \n\n Registrant Contact Details:\n Whois Inc\n DNS Admin (dnsadmin@whois.com)\n c/o 9A Jasmine Road\n Singapore\n Singapore,576582\n SG\n Tel. +65.67553177\n\n Administrative Contact Details: \n Whois Inc\n DNS Admin (dnsadmin@whois.com)\n c/o 9A Jasmine Road\n Singapore\n Singapore,576582\n SG\n Tel. +65.67553177 \n\n Technical Contact Details: \n Whois Inc\n DNS Admin (dnsadmin@whois.com)\n c/o 9A Jasmine Road\n Singapore\n Singapore,576582\n SG\n Tel. +65.67553177 \n\n Billing Contact Details: \n Whois Inc\n DNS Admin (dnsadmin@whois.com)\n c/o 9A Jasmine Road\n Singapore\n Singapore,576582\n SG\n Tel. +65.67553177 \n \nThe data in this whois database is provided to you for information purposes \nonly, that is, to assist you in obtaining information about or related to a \ndomain name registration record. We make this information available \"as is\",\nand do not guarantee its accuracy. By submitting a whois query, you agree \nthat you will use this data only for lawful purposes and that, under no \ncircumstances will you use this data to: \n(1) enable high volume, automated, electronic processes that stress or load \nthis whois database system providing you this information; or \n(2) allow, enable, or otherwise support the transmission of mass unsolicited, \ncommercial advertising or solicitations via direct mail, electronic mail, or \nby telephone. \nThe compilation, repackaging, dissemination or other use of this data is \nexpressly prohibited without prior written consent from us. The Registrar of \nrecord is PDR Ltd. d/b/a PublicDomainRegistry.com. \nWe reserve the right to modify these terms at any time. \nBy submitting this query, you agree to abide by these terms.\n\n", "\nWhois Server Version 2.0\n\nDomain names in the .com and .net domains can now be registered\nwith many different competing registrars. Go to http://www.internic.net\nfor detailed information.\n\n Server Name: WHOIS.COM.AU\n Registrar: TPP WHOLESALE PTY LTD.\n Whois Server: whois.distributeit.com.au\n Referral URL: http://www.tppwholesale.com.au\n\n Domain Name: WHOIS.COM\n Registrar: PDR LTD. D/B/A PUBLICDOMAINREGISTRY.COM\n Whois Server: whois.PublicDomainRegistry.com\n Referral URL: http://www.PublicDomainRegistry.com\n Name Server: NS1.WHOIS.COM\n Name Server: NS2.WHOIS.COM\n Name Server: NS3.WHOIS.COM\n Name Server: NS4.WHOIS.COM\n Status: clientTransferProhibited\n Updated Date: 24-oct-2011\n Creation Date: 11-apr-1995\n Expiration Date: 12-apr-2021\n\n>>> Last update of whois database: Sat, 23 Nov 2013 11:09:14 UTC <<<\n\nNOTICE: The expiration date displayed in this record is the date the \nregistrar's sponsorship of the domain name registration in the registry is \ncurrently set to expire. This date does not necessarily reflect the expiration \ndate of the domain name registrant's agreement with the sponsoring \nregistrar. Users may consult the sponsoring registrar's Whois database to \nview the registrar's reported date of expiration for this registration.\n\nTERMS OF USE: You are not authorized to access or query our Whois \ndatabase through the use of electronic processes that are high-volume and \nautomated except as reasonably necessary to register domain names or \nmodify existing registrations; the Data in VeriSign Global Registry \nServices' (\"VeriSign\") Whois database is provided by VeriSign for \ninformation purposes only, and to assist persons in obtaining information \nabout or related to a domain name registration record. VeriSign does not \nguarantee its accuracy. By submitting a Whois query, you agree to abide \nby the following terms of use: You agree that you may use this Data only \nfor lawful purposes and that under no circumstances will you use this Data \nto: (1) allow, enable, or otherwise support the transmission of mass \nunsolicited, commercial advertising or solicitations via e-mail, telephone, \nor facsimile; or (2) enable high volume, automated, electronic processes \nthat apply to VeriSign (or its computer systems). The compilation, \nrepackaging, dissemination or other use of this Data is expressly \nprohibited without the prior written consent of VeriSign. You agree not to \nuse electronic processes that are automated and high-volume to access or \nquery the Whois database except as reasonably necessary to register \ndomain names or modify existing registrations. VeriSign reserves the right \nto restrict your access to the Whois database in its sole discretion to ensure \noperational stability. VeriSign may restrict or terminate your access to the \nWhois database for failure to abide by these terms of use. VeriSign \nreserves the right to modify these terms at any time. \n\nThe Registry database contains ONLY .COM, .NET, .EDU domains and\nRegistrars.\n"], "whois_server": ["whois.distributeit.com.au", "whois.publicdomainregistry.com"], "registrar": ["Whois.com"]} \ No newline at end of file +{"status": ["Locked"], "updated_date": ["2011-10-24T00:00:00", "2013-11-23T11:09:14"], "contacts": {"admin": {"city": "Singapore", "name": "DNS Admin", "phone": "+65.67553177", "state": "Singapore", "street": "c/o 9A Jasmine Road", "country": "SG", "postalcode": "576582", "organization": "Whois Inc", "email": "dnsadmin@whois.com"}, "tech": {"city": "Singapore", "name": "DNS Admin", "phone": "+65.67553177", "state": "Singapore", "street": "c/o 9A Jasmine Road", "country": "SG", "postalcode": "576582", "organization": "Whois Inc", "email": "dnsadmin@whois.com"}, "registrant": {"city": "Singapore", "name": "DNS Admin", "phone": "+65.67553177", "state": "Singapore", "street": "c/o 9A Jasmine Road", "country": "SG", "postalcode": "576582", "organization": "Whois Inc", "email": "dnsadmin@whois.com"}, "billing": {"city": "Singapore", "name": "DNS Admin", "phone": "+65.67553177", "state": "Singapore", "street": "c/o 9A Jasmine Road", "country": "SG", "postalcode": "576582", "organization": "Whois Inc", "email": "dnsadmin@whois.com"}}, "nameservers": ["ns1.whois.com", "ns2.whois.com", "ns3.whois.com", "ns4.whois.com"], "expiration_date": ["2021-04-12T00:00:00"], "creation_date": ["1995-04-11T00:00:00"], "raw": ["Registration Service Provided By: WHOIS.COM\n\nDomain Name: WHOIS.COM\n\n Registration Date: 11-Apr-1995 \n Expiration Date: 12-Apr-2021 \n\n Status:LOCKED\n\tNote: This Domain Name is currently Locked. \n\tThis feature is provided to protect against fraudulent acquisition of the domain name, \n\tas in this status the domain name cannot be transferred or modified. \n\n Name Servers: \n ns1.whois.com\n ns2.whois.com\n ns3.whois.com\n ns4.whois.com\n \n\n Registrant Contact Details:\n Whois Inc\n DNS Admin (dnsadmin@whois.com)\n c/o 9A Jasmine Road\n Singapore\n Singapore,576582\n SG\n Tel. +65.67553177\n\n Administrative Contact Details: \n Whois Inc\n DNS Admin (dnsadmin@whois.com)\n c/o 9A Jasmine Road\n Singapore\n Singapore,576582\n SG\n Tel. +65.67553177 \n\n Technical Contact Details: \n Whois Inc\n DNS Admin (dnsadmin@whois.com)\n c/o 9A Jasmine Road\n Singapore\n Singapore,576582\n SG\n Tel. +65.67553177 \n\n Billing Contact Details: \n Whois Inc\n DNS Admin (dnsadmin@whois.com)\n c/o 9A Jasmine Road\n Singapore\n Singapore,576582\n SG\n Tel. +65.67553177 \n \nThe data in this whois database is provided to you for information purposes \nonly, that is, to assist you in obtaining information about or related to a \ndomain name registration record. We make this information available \"as is\",\nand do not guarantee its accuracy. By submitting a whois query, you agree \nthat you will use this data only for lawful purposes and that, under no \ncircumstances will you use this data to: \n(1) enable high volume, automated, electronic processes that stress or load \nthis whois database system providing you this information; or \n(2) allow, enable, or otherwise support the transmission of mass unsolicited, \ncommercial advertising or solicitations via direct mail, electronic mail, or \nby telephone. \nThe compilation, repackaging, dissemination or other use of this data is \nexpressly prohibited without prior written consent from us. The Registrar of \nrecord is PDR Ltd. d/b/a PublicDomainRegistry.com. \nWe reserve the right to modify these terms at any time. \nBy submitting this query, you agree to abide by these terms.\n\n", "\nWhois Server Version 2.0\n\nDomain names in the .com and .net domains can now be registered\nwith many different competing registrars. Go to http://www.internic.net\nfor detailed information.\n\n Server Name: WHOIS.COM.AU\n Registrar: TPP WHOLESALE PTY LTD.\n Whois Server: whois.distributeit.com.au\n Referral URL: http://www.tppwholesale.com.au\n\n Domain Name: WHOIS.COM\n Registrar: PDR LTD. D/B/A PUBLICDOMAINREGISTRY.COM\n Whois Server: whois.PublicDomainRegistry.com\n Referral URL: http://www.PublicDomainRegistry.com\n Name Server: NS1.WHOIS.COM\n Name Server: NS2.WHOIS.COM\n Name Server: NS3.WHOIS.COM\n Name Server: NS4.WHOIS.COM\n Status: clientTransferProhibited\n Updated Date: 24-oct-2011\n Creation Date: 11-apr-1995\n Expiration Date: 12-apr-2021\n\n>>> Last update of whois database: Sat, 23 Nov 2013 11:09:14 UTC <<<\n\nNOTICE: The expiration date displayed in this record is the date the \nregistrar's sponsorship of the domain name registration in the registry is \ncurrently set to expire. This date does not necessarily reflect the expiration \ndate of the domain name registrant's agreement with the sponsoring \nregistrar. Users may consult the sponsoring registrar's Whois database to \nview the registrar's reported date of expiration for this registration.\n\nTERMS OF USE: You are not authorized to access or query our Whois \ndatabase through the use of electronic processes that are high-volume and \nautomated except as reasonably necessary to register domain names or \nmodify existing registrations; the Data in VeriSign Global Registry \nServices' (\"VeriSign\") Whois database is provided by VeriSign for \ninformation purposes only, and to assist persons in obtaining information \nabout or related to a domain name registration record. VeriSign does not \nguarantee its accuracy. By submitting a Whois query, you agree to abide \nby the following terms of use: You agree that you may use this Data only \nfor lawful purposes and that under no circumstances will you use this Data \nto: (1) allow, enable, or otherwise support the transmission of mass \nunsolicited, commercial advertising or solicitations via e-mail, telephone, \nor facsimile; or (2) enable high volume, automated, electronic processes \nthat apply to VeriSign (or its computer systems). The compilation, \nrepackaging, dissemination or other use of this Data is expressly \nprohibited without the prior written consent of VeriSign. You agree not to \nuse electronic processes that are automated and high-volume to access or \nquery the Whois database except as reasonably necessary to register \ndomain names or modify existing registrations. VeriSign reserves the right \nto restrict your access to the Whois database in its sole discretion to ensure \noperational stability. VeriSign may restrict or terminate your access to the \nWhois database for failure to abide by these terms of use. VeriSign \nreserves the right to modify these terms at any time. \n\nThe Registry database contains ONLY .COM, .NET, .EDU domains and\nRegistrars.\n"], "whois_server": ["whois.distributeit.com.au", "whois.publicdomainregistry.com"], "registrar": ["whois.com"]} \ No newline at end of file diff --git a/test/target_normalized/winamp.com b/test/target_normalized/winamp.com index 8565611..474a93e 100644 --- a/test/target_normalized/winamp.com +++ b/test/target_normalized/winamp.com @@ -1 +1 @@ -{"status": ["clientTransferProhibited", "serverDeleteProhibited", "serverTransferProhibited", "serverUpdateProhibited"], "updated_date": ["2013-10-03T00:00:00", "2013-11-22T05:13:08"], "contacts": {"admin": {"city": "Dulles", "name": "Domain Admin", "phone": "+1.7032654670", "state": "VA", "street": "AOL Inc.\n22000 AOL Way", "country": "United States", "postalcode": "20166", "email": "domain-adm@corp.aol.com"}, "tech": {"city": "Dulles", "name": "Domain Admin", "phone": "+1.7032654670", "state": "VA", "street": "AOL Inc.\n22000 AOL Way", "country": "United States", "postalcode": "20166", "email": "domain-adm@corp.aol.com"}, "registrant": {"city": "Dulles", "name": "AOL Inc.", "state": "VA", "street": "22000 AOL Way", "country": "United States", "postalcode": "20166"}, "billing": null}, "nameservers": ["dns-02.ns.aol.com", "dns-06.ns.aol.com", "dns-07.ns.aol.com", "dns-01.ns.aol.com"], "expiration_date": ["2014-12-23T00:00:00"], "creation_date": ["1997-12-30T00:00:00"], "raw": ["\nDomain Name.......... winamp.com\n Creation Date........ 1997-12-30\n Registration Date.... 2009-10-03\n Expiry Date.......... 2014-12-24\n Organisation Name.... AOL Inc.\n Organisation Address. 22000 AOL Way\n Organisation Address. \n Organisation Address. \n Organisation Address. Dulles\n Organisation Address. 20166\n Organisation Address. VA\n Organisation Address. UNITED STATES\n\nAdmin Name........... Domain Admin\n Admin Address........ AOL Inc.\n Admin Address........ 22000 AOL Way\n Admin Address........ \n Admin Address. Dulles\n Admin Address........ 20166\n Admin Address........ VA\n Admin Address........ UNITED STATES\n Admin Email.......... domain-adm@corp.aol.com\n Admin Phone.......... +1.7032654670\n Admin Fax............ \n\nTech Name............ Domain Admin\n Tech Address......... AOL Inc.\n Tech Address......... 22000 AOL Way\n Tech Address......... \n Tech Address......... Dulles\n Tech Address......... 20166\n Tech Address......... VA\n Tech Address......... UNITED STATES\n Tech Email........... domain-adm@corp.aol.com\n Tech Phone........... +1.7032654670\n Tech Fax............. \n Name Server.......... dns-02.ns.aol.com\n Name Server.......... dns-06.ns.aol.com\n Name Server.......... dns-07.ns.aol.com\n Name Server.......... dns-01.ns.aol.com\n\n\n", "\nWhois Server Version 2.0\n\nDomain names in the .com and .net domains can now be registered\nwith many different competing registrars. Go to http://www.internic.net\nfor detailed information.\n\n Domain Name: WINAMP.COM\n Registrar: MELBOURNE IT, LTD. D/B/A INTERNET NAMES WORLDWIDE\n Whois Server: whois.melbourneit.com\n Referral URL: http://www.melbourneit.com\n Name Server: DNS-01.NS.AOL.COM\n Name Server: DNS-02.NS.AOL.COM\n Name Server: DNS-06.NS.AOL.COM\n Name Server: DNS-07.NS.AOL.COM\n Status: clientTransferProhibited\n Status: serverDeleteProhibited\n Status: serverTransferProhibited\n Status: serverUpdateProhibited\n Updated Date: 03-oct-2013\n Creation Date: 30-dec-1997\n Expiration Date: 23-dec-2014\n\n>>> Last update of whois database: Fri, 22 Nov 2013 05:13:08 UTC <<<\n\nNOTICE: The expiration date displayed in this record is the date the \nregistrar's sponsorship of the domain name registration in the registry is \ncurrently set to expire. This date does not necessarily reflect the expiration \ndate of the domain name registrant's agreement with the sponsoring \nregistrar. Users may consult the sponsoring registrar's Whois database to \nview the registrar's reported date of expiration for this registration.\n\nTERMS OF USE: You are not authorized to access or query our Whois \ndatabase through the use of electronic processes that are high-volume and \nautomated except as reasonably necessary to register domain names or \nmodify existing registrations; the Data in VeriSign Global Registry \nServices' (\"VeriSign\") Whois database is provided by VeriSign for \ninformation purposes only, and to assist persons in obtaining information \nabout or related to a domain name registration record. VeriSign does not \nguarantee its accuracy. By submitting a Whois query, you agree to abide \nby the following terms of use: You agree that you may use this Data only \nfor lawful purposes and that under no circumstances will you use this Data \nto: (1) allow, enable, or otherwise support the transmission of mass \nunsolicited, commercial advertising or solicitations via e-mail, telephone, \nor facsimile; or (2) enable high volume, automated, electronic processes \nthat apply to VeriSign (or its computer systems). The compilation, \nrepackaging, dissemination or other use of this Data is expressly \nprohibited without the prior written consent of VeriSign. You agree not to \nuse electronic processes that are automated and high-volume to access or \nquery the Whois database except as reasonably necessary to register \ndomain names or modify existing registrations. VeriSign reserves the right \nto restrict your access to the Whois database in its sole discretion to ensure \noperational stability. VeriSign may restrict or terminate your access to the \nWhois database for failure to abide by these terms of use. VeriSign \nreserves the right to modify these terms at any time. \n\nThe Registry database contains ONLY .COM, .NET, .EDU domains and\nRegistrars.\n"], "whois_server": ["whois.melbourneit.com"], "registrar": ["Melbourne It, Ltd. D/b/a Internet Names Worldwide"]} \ No newline at end of file +{"status": ["clientTransferProhibited", "serverDeleteProhibited", "serverTransferProhibited", "serverUpdateProhibited"], "updated_date": ["2013-10-03T00:00:00", "2013-11-22T05:13:08"], "contacts": {"admin": {"city": "Dulles", "name": "Domain Admin", "phone": "+1.7032654670", "state": "VA", "street": "AOL Inc.\n22000 AOL Way", "country": "United States", "postalcode": "20166", "email": "domain-adm@corp.aol.com"}, "tech": {"city": "Dulles", "name": "Domain Admin", "phone": "+1.7032654670", "state": "VA", "street": "AOL Inc.\n22000 AOL Way", "country": "United States", "postalcode": "20166", "email": "domain-adm@corp.aol.com"}, "registrant": {"city": "Dulles", "name": "AOL Inc.", "state": "VA", "street": "22000 AOL Way", "country": "United States", "postalcode": "20166"}, "billing": null}, "nameservers": ["dns-02.ns.aol.com", "dns-06.ns.aol.com", "dns-07.ns.aol.com", "dns-01.ns.aol.com"], "expiration_date": ["2014-12-23T00:00:00"], "creation_date": ["1997-12-30T00:00:00"], "raw": ["\nDomain Name.......... winamp.com\n Creation Date........ 1997-12-30\n Registration Date.... 2009-10-03\n Expiry Date.......... 2014-12-24\n Organisation Name.... AOL Inc.\n Organisation Address. 22000 AOL Way\n Organisation Address. \n Organisation Address. \n Organisation Address. Dulles\n Organisation Address. 20166\n Organisation Address. VA\n Organisation Address. UNITED STATES\n\nAdmin Name........... Domain Admin\n Admin Address........ AOL Inc.\n Admin Address........ 22000 AOL Way\n Admin Address........ \n Admin Address. Dulles\n Admin Address........ 20166\n Admin Address........ VA\n Admin Address........ UNITED STATES\n Admin Email.......... domain-adm@corp.aol.com\n Admin Phone.......... +1.7032654670\n Admin Fax............ \n\nTech Name............ Domain Admin\n Tech Address......... AOL Inc.\n Tech Address......... 22000 AOL Way\n Tech Address......... \n Tech Address......... Dulles\n Tech Address......... 20166\n Tech Address......... VA\n Tech Address......... UNITED STATES\n Tech Email........... domain-adm@corp.aol.com\n Tech Phone........... +1.7032654670\n Tech Fax............. \n Name Server.......... dns-02.ns.aol.com\n Name Server.......... dns-06.ns.aol.com\n Name Server.......... dns-07.ns.aol.com\n Name Server.......... dns-01.ns.aol.com\n\n\n", "\nWhois Server Version 2.0\n\nDomain names in the .com and .net domains can now be registered\nwith many different competing registrars. Go to http://www.internic.net\nfor detailed information.\n\n Domain Name: WINAMP.COM\n Registrar: MELBOURNE IT, LTD. D/B/A INTERNET NAMES WORLDWIDE\n Whois Server: whois.melbourneit.com\n Referral URL: http://www.melbourneit.com\n Name Server: DNS-01.NS.AOL.COM\n Name Server: DNS-02.NS.AOL.COM\n Name Server: DNS-06.NS.AOL.COM\n Name Server: DNS-07.NS.AOL.COM\n Status: clientTransferProhibited\n Status: serverDeleteProhibited\n Status: serverTransferProhibited\n Status: serverUpdateProhibited\n Updated Date: 03-oct-2013\n Creation Date: 30-dec-1997\n Expiration Date: 23-dec-2014\n\n>>> Last update of whois database: Fri, 22 Nov 2013 05:13:08 UTC <<<\n\nNOTICE: The expiration date displayed in this record is the date the \nregistrar's sponsorship of the domain name registration in the registry is \ncurrently set to expire. This date does not necessarily reflect the expiration \ndate of the domain name registrant's agreement with the sponsoring \nregistrar. Users may consult the sponsoring registrar's Whois database to \nview the registrar's reported date of expiration for this registration.\n\nTERMS OF USE: You are not authorized to access or query our Whois \ndatabase through the use of electronic processes that are high-volume and \nautomated except as reasonably necessary to register domain names or \nmodify existing registrations; the Data in VeriSign Global Registry \nServices' (\"VeriSign\") Whois database is provided by VeriSign for \ninformation purposes only, and to assist persons in obtaining information \nabout or related to a domain name registration record. VeriSign does not \nguarantee its accuracy. By submitting a Whois query, you agree to abide \nby the following terms of use: You agree that you may use this Data only \nfor lawful purposes and that under no circumstances will you use this Data \nto: (1) allow, enable, or otherwise support the transmission of mass \nunsolicited, commercial advertising or solicitations via e-mail, telephone, \nor facsimile; or (2) enable high volume, automated, electronic processes \nthat apply to VeriSign (or its computer systems). The compilation, \nrepackaging, dissemination or other use of this Data is expressly \nprohibited without the prior written consent of VeriSign. You agree not to \nuse electronic processes that are automated and high-volume to access or \nquery the Whois database except as reasonably necessary to register \ndomain names or modify existing registrations. VeriSign reserves the right \nto restrict your access to the Whois database in its sole discretion to ensure \noperational stability. VeriSign may restrict or terminate your access to the \nWhois database for failure to abide by these terms of use. VeriSign \nreserves the right to modify these terms at any time. \n\nThe Registry database contains ONLY .COM, .NET, .EDU domains and\nRegistrars.\n"], "whois_server": ["whois.melbourneit.com"], "registrar": ["Melbourne IT, LTD. D/b/a Internet Names Worldwide"]} \ No newline at end of file