Change nic.pw/PIR regex to support No-IP.com by making the handle optional. Fixes #23 partially.

master
Sven Slootweg 10 years ago
parent d86e4ba916
commit d9474ce1b3

@ -515,7 +515,7 @@ def parse_registrants(data, never_query_handles=True, handle_server=""):
registrant_regexes = [
" Registrant:[ ]*\n (?P<organization>.*)\n (?P<name>.*)\n (?P<street>.*)\n (?P<city>.*), (?P<state>.*) (?P<postalcode>.*)\n (?P<country>.*)\n(?: Phone: (?P<phone>.*)\n)? Email: (?P<email>.*)\n", # Corporate Domains, Inc.
"Registrant:\n (?P<name>.+)\n (?P<street1>.+)\n(?: (?P<street2>.*)\n)?(?: (?P<street3>.*)\n)? (?P<postalcode>.+), (?P<city>.+)\n (?P<country>.+)\n (?P<phone>.+)\n (?P<email>.+)\n\n", # OVH
"Registrant ID:(?P<handle>.+)\nRegistrant Name:(?P<name>.*)\n(?:Registrant Organization:(?P<organization>.*)\n)?Registrant Street1?:(?P<street1>.*)\n(?:Registrant Street2:(?P<street2>.*)\n)?(?:Registrant Street3:(?P<street3>.*)\n)?Registrant City:(?P<city>.*)\nRegistrant State/Province:(?P<state>.*)\nRegistrant Postal Code:(?P<postalcode>.*)\nRegistrant Country:(?P<country>.*)\nRegistrant Phone:(?P<phone>.*)\n(?:Registrant Phone Ext.:(?P<phone_ext>.*)\n)?(?:Registrant FAX:(?P<fax>.*)\n)?(?:Registrant FAX Ext.:(?P<fax_ext>.*)\n)?Registrant Email:(?P<email>.*)", # Public Interest Registry (.org), nic.pw
"(?:Registrant ID:(?P<handle>.+)\n)?Registrant Name:(?P<name>.*)\n(?:Registrant Organization:(?P<organization>.*)\n)?Registrant Street1?:(?P<street1>.*)\n(?:Registrant Street2:(?P<street2>.*)\n)?(?:Registrant Street3:(?P<street3>.*)\n)?Registrant City:(?P<city>.*)\nRegistrant State/Province:(?P<state>.*)\nRegistrant Postal Code:(?P<postalcode>.*)\nRegistrant Country:(?P<country>.*)\nRegistrant Phone:(?P<phone>.*)\n(?:Registrant Phone Ext.:(?P<phone_ext>.*)\n)?(?:Registrant FAX:(?P<fax>.*)\n)?(?:Registrant FAX Ext.:(?P<fax_ext>.*)\n)?Registrant Email:(?P<email>.*)", # Public Interest Registry (.org), nic.pw, No-IP.com
"Registrant ID:(?P<handle>.+)\nRegistrant Name:(?P<name>.*)\n(?:Registrant Organization:(?P<organization>.*)\n)?Registrant Address1?:(?P<street1>.*)\n(?:Registrant Address2:(?P<street2>.*)\n)?(?:Registrant Address3:(?P<street3>.*)\n)?Registrant City:(?P<city>.*)\nRegistrant State/Province:(?P<state>.*)\nRegistrant Country/Economy:(?P<country>.*)\nRegistrant Postal Code:(?P<postalcode>.*)\nRegistrant Phone:(?P<phone>.*)\n(?:Registrant Phone Ext.:(?P<phone_ext>.*)\n)?(?:Registrant FAX:(?P<fax>.*)\n)?(?:Registrant FAX Ext.:(?P<fax_ext>.*)\n)?Registrant E-mail:(?P<email>.*)", # .ME, DotAsia
"Registrant ID:\s*(?P<handle>.+)\nRegistrant Name:\s*(?P<name>.+)\nRegistrant Organization:\s*(?P<organization>.*)\nRegistrant Address1:\s*(?P<street1>.+)\nRegistrant Address2:\s*(?P<street2>.*)\nRegistrant City:\s*(?P<city>.+)\nRegistrant State/Province:\s*(?P<state>.+)\nRegistrant Postal Code:\s*(?P<postalcode>.+)\nRegistrant Country:\s*(?P<country>.+)\nRegistrant Country Code:\s*(?P<country_code>.+)\nRegistrant Phone Number:\s*(?P<phone>.+)\nRegistrant Email:\s*(?P<email>.+)\n", # .CO Internet
"Registrant Contact: (?P<handle>.+)\nRegistrant Organization: (?P<organization>.+)\nRegistrant Name: (?P<name>.+)\nRegistrant Street: (?P<street>.+)\nRegistrant City: (?P<city>.+)\nRegistrant Postal Code: (?P<postalcode>.+)\nRegistrant State: (?P<state>.+)\nRegistrant Country: (?P<country>.+)\nRegistrant Phone: (?P<phone>.*)\nRegistrant Phone Ext: (?P<phone_ext>.*)\nRegistrant Fax: (?P<fax>.*)\nRegistrant Fax Ext: (?P<fax_ext>.*)\nRegistrant Email: (?P<email>.*)\n", # Key-Systems GmbH
@ -551,7 +551,7 @@ def parse_registrants(data, never_query_handles=True, handle_server=""):
tech_contact_regexes = [
" Technical Contact:[ ]*\n (?P<organization>.*)\n (?P<name>.*)\n (?P<street>.*)\n (?P<city>.*), (?P<state>.*) (?P<postalcode>.*)\n (?P<country>.*)\n(?: Phone: (?P<phone>.*)\n)? Email: (?P<email>.*)\n", # Corporate Domains, Inc.
"Technical Contact:\n (?P<name>.+)\n (?P<street1>.+)\n(?: (?P<street2>.*)\n)?(?: (?P<street3>.*)\n)? (?P<postalcode>.+), (?P<city>.+)\n (?P<country>.+)\n (?P<phone>.+)\n (?P<email>.+)\n\n", # OVH
"Tech ID:(?P<handle>.+)\nTech Name:(?P<name>.*)\n(:?Tech Organization:(?P<organization>.*)\n)?Tech Street1?:(?P<street1>.*)\n(?:Tech Street2:(?P<street2>.*)\n)?(?:Tech Street3:(?P<street3>.*)\n)?Tech City:(?P<city>.*)\nTech State/Province:(?P<state>.*)\nTech Postal Code:(?P<postalcode>.*)\nTech Country:(?P<country>.*)\nTech Phone:(?P<phone>.*)\n(?:Tech Phone Ext.:(?P<phone_ext>.*)\n)?(?:Tech FAX:(?P<fax>.*)\n)?(?:Tech FAX Ext.:(?P<fax_ext>.*)\n)?Tech Email:(?P<email>.*)", # Public Interest Registry (.org), nic.pw
"(?:Tech ID:(?P<handle>.+)\n)?Tech Name:(?P<name>.*)\n(:?Tech Organization:(?P<organization>.*)\n)?Tech Street1?:(?P<street1>.*)\n(?:Tech Street2:(?P<street2>.*)\n)?(?:Tech Street3:(?P<street3>.*)\n)?Tech City:(?P<city>.*)\nTech State/Province:(?P<state>.*)\nTech Postal Code:(?P<postalcode>.*)\nTech Country:(?P<country>.*)\nTech Phone:(?P<phone>.*)\n(?:Tech Phone Ext.:(?P<phone_ext>.*)\n)?(?:Tech FAX:(?P<fax>.*)\n)?(?:Tech FAX Ext.:(?P<fax_ext>.*)\n)?Tech Email:(?P<email>.*)", # Public Interest Registry (.org), nic.pw, No-IP.com
"Tech(?:nical)? ID:(?P<handle>.+)\nTech(?:nical)? Name:(?P<name>.*)\n(?:Tech(?:nical)? Organization:(?P<organization>.*)\n)?Tech(?:nical)? Address1?:(?P<street1>.*)\n(?:Tech(?:nical)? Address2:(?P<street2>.*)\n)?(?:Tech(?:nical)? Address3:(?P<street3>.*)\n)?Tech(?:nical)? City:(?P<city>.*)\nTech(?:nical)? State/Province:(?P<state>.*)\nTech(?:nical)? Country/Economy:(?P<country>.*)\nTech(?:nical)? Postal Code:(?P<postalcode>.*)\nTech(?:nical)? Phone:(?P<phone>.*)\n(?:Tech(?:nical)? Phone Ext.:(?P<phone_ext>.*)\n)?(?:Tech(?:nical)? FAX:(?P<fax>.*)\n)?(?:Tech(?:nical)? FAX Ext.:(?P<fax_ext>.*)\n)?Tech(?:nical)? E-mail:(?P<email>.*)", # .ME, DotAsia
"Technical Contact ID:\s*(?P<handle>.+)\nTechnical Contact Name:\s*(?P<name>.+)\nTechnical Contact Organization:\s*(?P<organization>.*)\nTechnical Contact Address1:\s*(?P<street1>.+)\nTechnical Contact Address2:\s*(?P<street2>.*)\nTechnical Contact City:\s*(?P<city>.+)\nTechnical Contact State/Province:\s*(?P<state>.+)\nTechnical Contact Postal Code:\s*(?P<postalcode>.+)\nTechnical Contact Country:\s*(?P<country>.+)\nTechnical Contact Country Code:\s*(?P<country_code>.+)\nTechnical Contact Phone Number:\s*(?P<phone>.+)\nTechnical Contact Email:\s*(?P<email>.+)\n", # .CO Internet
"Tech Contact: (?P<handle>.+)\nTech Organization: (?P<organization>.+)\nTech Name: (?P<name>.+)\nTech Street: (?P<street>.+)\nTech City: (?P<city>.+)\nTech Postal Code: (?P<postalcode>.+)\nTech State: (?P<state>.+)\nTech Country: (?P<country>.+)\nTech Phone: (?P<phone>.*)\nTech Phone Ext: (?P<phone_ext>.*)\nTech Fax: (?P<fax>.*)\nTech Fax Ext: (?P<fax_ext>.*)\nTech Email: (?P<email>.*)\n", # Key-Systems GmbH
@ -576,7 +576,7 @@ def parse_registrants(data, never_query_handles=True, handle_server=""):
admin_contact_regexes = [
" Administrative Contact:[ ]*\n (?P<organization>.*)\n (?P<name>.*)\n (?P<street>.*)\n (?P<city>.*), (?P<state>.*) (?P<postalcode>.*)\n (?P<country>.*)\n(?: Phone: (?P<phone>.*)\n)? Email: (?P<email>.*)\n", # Corporate Domains, Inc.
"Administrative Contact:\n (?P<name>.+)\n (?P<street1>.+)\n(?: (?P<street2>.*)\n)?(?: (?P<street3>.*)\n)? (?P<postalcode>.+), (?P<city>.+)\n (?P<country>.+)\n (?P<phone>.+)\n (?P<email>.+)\n\n", # OVH
"Admin ID:(?P<handle>.+)\nAdmin Name:(?P<name>.*)\n(?:Admin Organization:(?P<organization>.*)\n)?Admin Street1?:(?P<street1>.*)\n(?:Admin Street2:(?P<street2>.*)\n)?(?:Admin Street3:(?P<street3>.*)\n)?Admin City:(?P<city>.*)\nAdmin State/Province:(?P<state>.*)\nAdmin Postal Code:(?P<postalcode>.*)\nAdmin Country:(?P<country>.*)\nAdmin Phone:(?P<phone>.*)\n(?:Admin Phone Ext.:(?P<phone_ext>.*)\n)?(?:Admin FAX:(?P<fax>.*)\n)?(?:Admin FAX Ext.:(?P<fax_ext>.*)\n)?Admin Email:(?P<email>.*)", # Public Interest Registry (.org), nic.pw
"(?:Admin ID:(?P<handle>.+)\n)?Admin Name:(?P<name>.*)\n(?:Admin Organization:(?P<organization>.*)\n)?Admin Street1?:(?P<street1>.*)\n(?:Admin Street2:(?P<street2>.*)\n)?(?:Admin Street3:(?P<street3>.*)\n)?Admin City:(?P<city>.*)\nAdmin State/Province:(?P<state>.*)\nAdmin Postal Code:(?P<postalcode>.*)\nAdmin Country:(?P<country>.*)\nAdmin Phone:(?P<phone>.*)\n(?:Admin Phone Ext.:(?P<phone_ext>.*)\n)?(?:Admin FAX:(?P<fax>.*)\n)?(?:Admin FAX Ext.:(?P<fax_ext>.*)\n)?Admin Email:(?P<email>.*)", # Public Interest Registry (.org), nic.pw, No-IP.com
"Admin(?:istrative)? ID:(?P<handle>.+)\nAdmin(?:istrative)? Name:(?P<name>.*)\n(?:Admin(?:istrative)? Organization:(?P<organization>.*)\n)?Admin(?:istrative)? Address1?:(?P<street1>.*)\n(?:Admin(?:istrative)? Address2:(?P<street2>.*)\n)?(?:Admin(?:istrative)? Address3:(?P<street3>.*)\n)?Admin(?:istrative)? City:(?P<city>.*)\nAdmin(?:istrative)? State/Province:(?P<state>.*)\nAdmin(?:istrative)? Country/Economy:(?P<country>.*)\nAdmin(?:istrative)? Postal Code:(?P<postalcode>.*)\nAdmin(?:istrative)? Phone:(?P<phone>.*)\n(?:Admin(?:istrative)? Phone Ext.:(?P<phone_ext>.*)\n)?(?:Admin(?:istrative)? FAX:(?P<fax>.*)\n)?(?:Admin(?:istrative)? FAX Ext.:(?P<fax_ext>.*)\n)?Admin(?:istrative)? E-mail:(?P<email>.*)", # .ME, DotAsia
"Administrative Contact ID:\s*(?P<handle>.+)\nAdministrative Contact Name:\s*(?P<name>.+)\nAdministrative Contact Organization:\s*(?P<organization>.*)\nAdministrative Contact Address1:\s*(?P<street1>.+)\nAdministrative Contact Address2:\s*(?P<street2>.*)\nAdministrative Contact City:\s*(?P<city>.+)\nAdministrative Contact State/Province:\s*(?P<state>.+)\nAdministrative Contact Postal Code:\s*(?P<postalcode>.+)\nAdministrative Contact Country:\s*(?P<country>.+)\nAdministrative Contact Country Code:\s*(?P<country_code>.+)\nAdministrative Contact Phone Number:\s*(?P<phone>.+)\nAdministrative Contact Email:\s*(?P<email>.+)\n", # .CO Internet
"Admin Contact: (?P<handle>.+)\nAdmin Organization: (?P<organization>.+)\nAdmin Name: (?P<name>.+)\nAdmin Street: (?P<street>.+)\nAdmin City: (?P<city>.+)\nAdmin State: (?P<state>.+)\nAdmin Postal Code: (?P<postalcode>.+)\nAdmin Country: (?P<country>.+)\nAdmin Phone: (?P<phone>.*)\nAdmin Phone Ext: (?P<phone_ext>.*)\nAdmin Fax: (?P<fax>.*)\nAdmin Fax Ext: (?P<fax_ext>.*)\nAdmin Email: (?P<email>.*)\n", # Key-Systems GmbH
@ -596,7 +596,7 @@ def parse_registrants(data, never_query_handles=True, handle_server=""):
]
billing_contact_regexes = [
"Billing ID:(?P<handle>.+)\nBilling Name:(?P<name>.*)\nBilling Organization:(?P<organization>.*)\nBilling Street1:(?P<street1>.*)\n(?:Billing Street2:(?P<street2>.*)\n)?(?:Billing Street3:(?P<street3>.*)\n)?Billing City:(?P<city>.*)\nBilling State/Province:(?P<state>.*)\nBilling Postal Code:(?P<postalcode>.*)\nBilling Country:(?P<country>.*)\nBilling Phone:(?P<phone>.*)\n(?:Billing Phone Ext.:(?P<phone_ext>.*)\n)?(?:Billing FAX:(?P<fax>.*)\n)?(?:Billing FAX Ext.:(?P<fax_ext>.*)\n)?Billing Email:(?P<email>.*)", # nic.pw
"(?:Billing ID:(?P<handle>.+)\n)?Billing Name:(?P<name>.*)\nBilling Organization:(?P<organization>.*)\nBilling Street1:(?P<street1>.*)\n(?:Billing Street2:(?P<street2>.*)\n)?(?:Billing Street3:(?P<street3>.*)\n)?Billing City:(?P<city>.*)\nBilling State/Province:(?P<state>.*)\nBilling Postal Code:(?P<postalcode>.*)\nBilling Country:(?P<country>.*)\nBilling Phone:(?P<phone>.*)\n(?:Billing Phone Ext.:(?P<phone_ext>.*)\n)?(?:Billing FAX:(?P<fax>.*)\n)?(?:Billing FAX Ext.:(?P<fax_ext>.*)\n)?Billing Email:(?P<email>.*)", # nic.pw, No-IP.com
"Billing ID:(?P<handle>.+)\nBilling Name:(?P<name>.*)\n(?:Billing Organization:(?P<organization>.*)\n)?Billing Address1?:(?P<street1>.*)\n(?:Billing Address2:(?P<street2>.*)\n)?(?:Billing Address3:(?P<street3>.*)\n)?Billing City:(?P<city>.*)\nBilling State/Province:(?P<state>.*)\nBilling Country/Economy:(?P<country>.*)\nBilling Postal Code:(?P<postalcode>.*)\nBilling Phone:(?P<phone>.*)\n(?:Billing Phone Ext.:(?P<phone_ext>.*)\n)?(?:Billing FAX:(?P<fax>.*)\n)?(?:Billing FAX Ext.:(?P<fax_ext>.*)\n)?Billing E-mail:(?P<email>.*)", # DotAsia
"Billing Contact ID:\s*(?P<handle>.+)\nBilling Contact Name:\s*(?P<name>.+)\nBilling Contact Organization:\s*(?P<organization>.*)\nBilling Contact Address1:\s*(?P<street1>.+)\nBilling Contact Address2:\s*(?P<street2>.*)\nBilling Contact City:\s*(?P<city>.+)\nBilling Contact State/Province:\s*(?P<state>.+)\nBilling Contact Postal Code:\s*(?P<postalcode>.+)\nBilling Contact Country:\s*(?P<country>.+)\nBilling Contact Country Code:\s*(?P<country_code>.+)\nBilling Contact Phone Number:\s*(?P<phone>.+)\nBilling Contact Email:\s*(?P<email>.+)\n", # .CO Internet
"Billing Contact: (?P<handle>.+)\nBilling Organization: (?P<organization>.+)\nBilling Name: (?P<name>.+)\nBilling Street: (?P<street>.+)\nBilling City: (?P<city>.+)\nBilling Postal Code: (?P<postalcode>.+)\nBilling State: (?P<state>.+)\nBilling Country: (?P<country>.+)\nBilling Phone: (?P<phone>.*)\nBilling Phone Ext: (?P<phone_ext>.*)\nBilling Fax: (?P<fax>.*)\nBilling Fax Ext: (?P<fax_ext>.*)\nBilling Email: (?P<email>.*)\n", # Key-Systems GmbH

@ -0,0 +1,90 @@
Whois Server Version 2.0
NOTICE: Access to No-IP.com WHOIS information is provided to assist persons in
determining the contents of a domain name registration record in the No-IP.com
registrar database. The data in this record is provided by No-IP.com
for informational purposes only, and No-Ip.com does not guarantee its
accuracy. This service is intended only for query-based access. You agree
that you will use this data only for lawful purposes and that, under no
circumstances will you use this data to: (a) allow, enable, or otherwise
support the transmission by e-mail, telephone, or facsimile of mass
unsolicited, commercial advertising or solicitations to entities other than
the data recipient's own existing customers; or (b) enable high volume,
automated, electronic processes that send queries or data to the systems of
Registry Operator or any ICANN-Accredited Registrar, except as reasonably
necessary to register domain names or modify existing registrations. All
rights reserved. Public Interest Registry reserves the right to modify these terms at any
time. By submitting this query, you agree to abide by this policy.
Domain Name: SERVEQUAKE.COM
Created On: 12-Nov-2004 08:00:00 UTC
Last Updated On: 11-Nov-2011 18:48:29 UTC
Expiration Date: 10-Feb-2015 05:33:35 UTC
Sponsoring Registrar: Vitalwerks Internet Solutions, LLC / No-IP.com
Registrant Name: No-IP.com, Domain Operations
Registrant Organization: Vitalwerks Internet Solutions, LLC
Registrant Street1: 5905 South Virginia St
Registrant Street2: Suite 200
Registrant City: Reno
Registrant State/Province: NV
Registrant Postal Code: 89502
Registrant Country: US
Registrant Phone: +1.7758531883
Registrant FAX:
Registrant Email: domains@no-ip.com
Admin Name: No-IP.com, Domain Operations
Admin Street1: 5905 South Virginia St
Admin Street2: Suite 200
Admin City: Reno
Admin State/Province: NV
Admin Postal Code: 89502
Admin Country: US
Admin Phone: +1.7758531883
Admin FAX:
Admin Email: domains@no-ip.com
Tech Name: No-IP.com, Domain Operations
Tech Organization: Vitalwerks Internet Solutions, LLC
Tech Street1: 5905 South Virginia St
Tech Street2: Suite 200
Tech City: Reno
Tech State/Province: NV
Tech Postal Code: 89502
Tech Country: US
Tech Phone: +1.7758531883
Tech FAX:
Tech Email: domains@no-ip.com
Billing Name: No-IP.com, Domain Operations
Billing Organization: Vitalwerks Internet Solutions, LLC
Billing Street1: 5905 South Virginia St
Billing Street2: Suite 200
Billing City: Reno
Billing State/Province: NV
Billing Postal Code: 89502
Billing Country: US
Billing Phone: +1.7758531883
Billing FAX:
Billing Email: domains@no-ip.com
Name Server: NF1.NO-IP.COM
Name Server: NF2.NO-IP.COM
Name Server: NF3.NO-IP.COM
Name Server: NF4.NO-IP.COM
--
Domain Name: SERVEQUAKE.COM
Registrar: VITALWERKS INTERNET SOLUTIONS LLC DBA NO-IP
Whois Server: whois.no-ip.com
Referral URL: http://www.no-ip.com
Name Server: NF1.NO-IP.COM
Name Server: NF2.NO-IP.COM
Name Server: NF3.NO-IP.COM
Name Server: NF4.NO-IP.COM
Status: clientTransferProhibited
Updated Date: 11-nov-2011
Creation Date: 10-feb-2000
Expiration Date: 10-feb-2015

@ -0,0 +1 @@
{"updated_date": ["2011-11-11T18:48:29"], "status": ["clientTransferProhibited"], "contacts": {"admin": {"city": "Reno", "name": "No-IP.com, Domain Operations", "state": "NV", "phone": "+1.7758531883", "street": "5905 South Virginia St\nSuite 200", "country": "US", "postalcode": "89502", "email": "domains@no-ip.com"}, "tech": {"city": "Reno", "name": "No-IP.com, Domain Operations", "state": "NV", "phone": "+1.7758531883", "street": "5905 South Virginia St\nSuite 200", "country": "US", "postalcode": "89502", "organization": "Vitalwerks Internet Solutions, LLC", "email": "domains@no-ip.com"}, "registrant": {"city": "Reno", "name": "No-IP.com, Domain Operations", "state": "NV", "phone": "+1.7758531883", "street": "5905 South Virginia St\nSuite 200", "country": "US", "postalcode": "89502", "organization": "Vitalwerks Internet Solutions, LLC", "email": "domains@no-ip.com"}, "billing": {"city": "Reno", "name": "No-IP.com, Domain Operations", "state": "NV", "phone": "+1.7758531883", "street": "5905 South Virginia St\nSuite 200", "country": "US", "postalcode": "89502", "organization": "Vitalwerks Internet Solutions, LLC", "email": "domains@no-ip.com"}}, "nameservers": ["NF1.NO-IP.COM", "NF2.NO-IP.COM", "NF3.NO-IP.COM", "NF4.NO-IP.COM"], "expiration_date": ["2015-02-10T05:33:35"], "creation_date": ["2004-11-12T08:00:00", "2004-11-12T08:00:00"], "raw": ["Whois Server Version 2.0\n\nNOTICE: Access to No-IP.com WHOIS information is provided to assist persons in \ndetermining the contents of a domain name registration record in the No-IP.com\nregistrar database. The data in this record is provided by No-IP.com\nfor informational purposes only, and No-Ip.com does not guarantee its \naccuracy. This service is intended only for query-based access. You agree \nthat you will use this data only for lawful purposes and that, under no \ncircumstances will you use this data to: (a) allow, enable, or otherwise \nsupport the transmission by e-mail, telephone, or facsimile of mass \nunsolicited, commercial advertising or solicitations to entities other than \nthe data recipient's own existing customers; or (b) enable high volume, \nautomated, electronic processes that send queries or data to the systems of \nRegistry Operator or any ICANN-Accredited Registrar, except as reasonably \nnecessary to register domain names or modify existing registrations. All \nrights reserved. Public Interest Registry reserves the right to modify these terms at any \ntime. By submitting this query, you agree to abide by this policy. \n\n\nDomain Name: SERVEQUAKE.COM\nCreated On: 12-Nov-2004 08:00:00 UTC\nLast Updated On: 11-Nov-2011 18:48:29 UTC\nExpiration Date: 10-Feb-2015 05:33:35 UTC\nSponsoring Registrar: Vitalwerks Internet Solutions, LLC / No-IP.com\nRegistrant Name: No-IP.com, Domain Operations\nRegistrant Organization: Vitalwerks Internet Solutions, LLC\nRegistrant Street1: 5905 South Virginia St\nRegistrant Street2: Suite 200\nRegistrant City: Reno\nRegistrant State/Province: NV\nRegistrant Postal Code: 89502\nRegistrant Country: US\nRegistrant Phone: +1.7758531883\nRegistrant FAX: \nRegistrant Email: domains@no-ip.com\n\nAdmin Name: No-IP.com, Domain Operations\nAdmin Street1: 5905 South Virginia St\nAdmin Street2: Suite 200\nAdmin City: Reno\nAdmin State/Province: NV\nAdmin Postal Code: 89502\nAdmin Country: US\nAdmin Phone: +1.7758531883\nAdmin FAX: \nAdmin Email: domains@no-ip.com\n\nTech Name: No-IP.com, Domain Operations\nTech Organization: Vitalwerks Internet Solutions, LLC\nTech Street1: 5905 South Virginia St\nTech Street2: Suite 200\nTech City: Reno\nTech State/Province: NV\nTech Postal Code: 89502\nTech Country: US\nTech Phone: +1.7758531883\nTech FAX: \nTech Email: domains@no-ip.com\n\nBilling Name: No-IP.com, Domain Operations\nBilling Organization: Vitalwerks Internet Solutions, LLC\nBilling Street1: 5905 South Virginia St\nBilling Street2: Suite 200\nBilling City: Reno\nBilling State/Province: NV\nBilling Postal Code: 89502\nBilling Country: US\nBilling Phone: +1.7758531883\nBilling FAX: \nBilling Email: domains@no-ip.com\n\nName Server: NF1.NO-IP.COM\nName Server: NF2.NO-IP.COM\nName Server: NF3.NO-IP.COM\nName Server: NF4.NO-IP.COM\n\n", " Domain Name: SERVEQUAKE.COM\n Registrar: VITALWERKS INTERNET SOLUTIONS LLC DBA NO-IP\n Whois Server: whois.no-ip.com\n Referral URL: http://www.no-ip.com\n Name Server: NF1.NO-IP.COM\n Name Server: NF2.NO-IP.COM\n Name Server: NF3.NO-IP.COM\n Name Server: NF4.NO-IP.COM\n Status: clientTransferProhibited\n Updated Date: 11-nov-2011\n Creation Date: 10-feb-2000\n Expiration Date: 10-feb-2015\n"], "whois_server": ["whois.no-ip.com"], "registrar": ["Vitalwerks Internet Solutions, LLC / No-IP.com"]}

@ -0,0 +1 @@
{"updated_date": ["2011-11-11T18:48:29"], "status": ["clientTransferProhibited"], "contacts": {"admin": {"city": "Reno", "name": "No-IP.com, Domain Operations", "state": "NV", "phone": "+1.7758531883", "street": "5905 South Virginia St\nSuite 200", "country": "US", "postalcode": "89502", "email": "domains@no-ip.com"}, "tech": {"city": "Reno", "name": "No-IP.com, Domain Operations", "state": "NV", "phone": "+1.7758531883", "street": "5905 South Virginia St\nSuite 200", "country": "US", "postalcode": "89502", "organization": "Vitalwerks Internet Solutions, LLC", "email": "domains@no-ip.com"}, "registrant": {"city": "Reno", "name": "No-IP.com, Domain Operations", "state": "NV", "phone": "+1.7758531883", "street": "5905 South Virginia St\nSuite 200", "country": "US", "postalcode": "89502", "organization": "Vitalwerks Internet Solutions, LLC", "email": "domains@no-ip.com"}, "billing": {"city": "Reno", "name": "No-IP.com, Domain Operations", "state": "NV", "phone": "+1.7758531883", "street": "5905 South Virginia St\nSuite 200", "country": "US", "postalcode": "89502", "organization": "Vitalwerks Internet Solutions, LLC", "email": "domains@no-ip.com"}}, "nameservers": ["nf1.no-ip.com", "nf2.no-ip.com", "nf3.no-ip.com", "nf4.no-ip.com"], "expiration_date": ["2015-02-10T05:33:35"], "creation_date": ["2004-11-12T08:00:00", "2004-11-12T08:00:00"], "raw": ["Whois Server Version 2.0\n\nNOTICE: Access to No-IP.com WHOIS information is provided to assist persons in \ndetermining the contents of a domain name registration record in the No-IP.com\nregistrar database. The data in this record is provided by No-IP.com\nfor informational purposes only, and No-Ip.com does not guarantee its \naccuracy. This service is intended only for query-based access. You agree \nthat you will use this data only for lawful purposes and that, under no \ncircumstances will you use this data to: (a) allow, enable, or otherwise \nsupport the transmission by e-mail, telephone, or facsimile of mass \nunsolicited, commercial advertising or solicitations to entities other than \nthe data recipient's own existing customers; or (b) enable high volume, \nautomated, electronic processes that send queries or data to the systems of \nRegistry Operator or any ICANN-Accredited Registrar, except as reasonably \nnecessary to register domain names or modify existing registrations. All \nrights reserved. Public Interest Registry reserves the right to modify these terms at any \ntime. By submitting this query, you agree to abide by this policy. \n\n\nDomain Name: SERVEQUAKE.COM\nCreated On: 12-Nov-2004 08:00:00 UTC\nLast Updated On: 11-Nov-2011 18:48:29 UTC\nExpiration Date: 10-Feb-2015 05:33:35 UTC\nSponsoring Registrar: Vitalwerks Internet Solutions, LLC / No-IP.com\nRegistrant Name: No-IP.com, Domain Operations\nRegistrant Organization: Vitalwerks Internet Solutions, LLC\nRegistrant Street1: 5905 South Virginia St\nRegistrant Street2: Suite 200\nRegistrant City: Reno\nRegistrant State/Province: NV\nRegistrant Postal Code: 89502\nRegistrant Country: US\nRegistrant Phone: +1.7758531883\nRegistrant FAX: \nRegistrant Email: domains@no-ip.com\n\nAdmin Name: No-IP.com, Domain Operations\nAdmin Street1: 5905 South Virginia St\nAdmin Street2: Suite 200\nAdmin City: Reno\nAdmin State/Province: NV\nAdmin Postal Code: 89502\nAdmin Country: US\nAdmin Phone: +1.7758531883\nAdmin FAX: \nAdmin Email: domains@no-ip.com\n\nTech Name: No-IP.com, Domain Operations\nTech Organization: Vitalwerks Internet Solutions, LLC\nTech Street1: 5905 South Virginia St\nTech Street2: Suite 200\nTech City: Reno\nTech State/Province: NV\nTech Postal Code: 89502\nTech Country: US\nTech Phone: +1.7758531883\nTech FAX: \nTech Email: domains@no-ip.com\n\nBilling Name: No-IP.com, Domain Operations\nBilling Organization: Vitalwerks Internet Solutions, LLC\nBilling Street1: 5905 South Virginia St\nBilling Street2: Suite 200\nBilling City: Reno\nBilling State/Province: NV\nBilling Postal Code: 89502\nBilling Country: US\nBilling Phone: +1.7758531883\nBilling FAX: \nBilling Email: domains@no-ip.com\n\nName Server: NF1.NO-IP.COM\nName Server: NF2.NO-IP.COM\nName Server: NF3.NO-IP.COM\nName Server: NF4.NO-IP.COM\n\n", " Domain Name: SERVEQUAKE.COM\n Registrar: VITALWERKS INTERNET SOLUTIONS LLC DBA NO-IP\n Whois Server: whois.no-ip.com\n Referral URL: http://www.no-ip.com\n Name Server: NF1.NO-IP.COM\n Name Server: NF2.NO-IP.COM\n Name Server: NF3.NO-IP.COM\n Name Server: NF4.NO-IP.COM\n Status: clientTransferProhibited\n Updated Date: 11-nov-2011\n Creation Date: 10-feb-2000\n Expiration Date: 10-feb-2015\n"], "whois_server": ["whois.no-ip.com"], "registrar": ["Vitalwerks Internet Solutions, LLC / No-IP.com"]}
Loading…
Cancel
Save