US20160087937A1 - Validating control of domain zone - Google Patents

Validating control of domain zone Download PDF

Info

Publication number
US20160087937A1
US20160087937A1 US14/881,007 US201514881007A US2016087937A1 US 20160087937 A1 US20160087937 A1 US 20160087937A1 US 201514881007 A US201514881007 A US 201514881007A US 2016087937 A1 US2016087937 A1 US 2016087937A1
Authority
US
United States
Prior art keywords
domain name
server computer
zone file
string
record
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Abandoned
Application number
US14/881,007
Inventor
Eric Rodriguez
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Go Daddy Operating Co LLC
Original Assignee
Go Daddy Operating Co LLC
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Go Daddy Operating Co LLC filed Critical Go Daddy Operating Co LLC
Priority to US14/881,007 priority Critical patent/US20160087937A1/en
Assigned to Go Daddy Operating Company, LLC reassignment Go Daddy Operating Company, LLC ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: RODRIGUEZ, ERIC
Publication of US20160087937A1 publication Critical patent/US20160087937A1/en
Assigned to BARCLAYS BANK PLC, AS COLLATERAL AGENT reassignment BARCLAYS BANK PLC, AS COLLATERAL AGENT SECURITY AGREEMENT Assignors: Go Daddy Operating Company, LLC
Assigned to ROYAL BANK OF CANADA reassignment ROYAL BANK OF CANADA SECURITY AGREEMENT Assignors: GD FINANCE CO, LLC, Go Daddy Operating Company, LLC, GoDaddy Media Temple Inc., GODADDY.COM, LLC, Lantirn Incorporated, Poynt, LLC
Abandoned legal-status Critical Current

Links

Images

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L61/00Network arrangements, protocols or services for addressing or naming
    • H04L61/50Address allocation
    • H04L61/5076Update or notification mechanisms, e.g. DynDNS
    • H04L61/2076
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F21/00Security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
    • G06F21/30Authentication, i.e. establishing the identity or authorisation of security principals
    • G06F21/31User authentication
    • G06F21/33User authentication using certificates
    • G06F21/335User authentication using certificates for accessing specific resources, e.g. using Kerberos tickets
    • H04L61/1511
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L61/00Network arrangements, protocols or services for addressing or naming
    • H04L61/45Network directories; Name-to-address mapping
    • H04L61/4505Network directories; Name-to-address mapping using standardised directories; using standardised directory access protocols
    • H04L61/4511Network directories; Name-to-address mapping using standardised directories; using standardised directory access protocols using domain name system [DNS]

Landscapes

  • Engineering & Computer Science (AREA)
  • Computer Security & Cryptography (AREA)
  • Theoretical Computer Science (AREA)
  • Computer Hardware Design (AREA)
  • Software Systems (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Computer Networks & Wireless Communication (AREA)
  • Signal Processing (AREA)
  • Information Transfer Between Computers (AREA)
  • Data Exchanges In Wide-Area Networks (AREA)

Abstract

A requestor requests a domain zone control validation from a validating entity. The validating entity generates a pass string. The requestor enters the pass string into a domain zone. The validating entity determines if the pass string was entered in the domain zone. If the pass string is present in the domain zone, the domain zone control was successfully validated.

Description

    FIELD OF THE INVENTION
  • The present invention relates to a method and system for validating control of a domain zone.
  • BACKGROUND OF THE INVENTION
  • The Internet comprises a vast number of computers and computer networks that are interconnected through communication links. The interconnected computers exchange information using various services, such as electronic mail, Gopher, and the World Wide Web (WWW). The WWW service allows a server computer system (i.e., Web server or Web site) to send graphical Web pages of information to a remote client computer system. The remote client computer system can then display the Web pages. Each resource (e.g., computer or Web page) of the WWW is uniquely identifiable by a Uniform Resource Locator (URL). To view a specific Web page, a client computer system specifies the URL for the Web page in a request (e.g., a HyperText Transfer Protocol (HTTP) request). These follow the familiar format http://www.example.com uniquely identifying the particular resource. The request is forwarded to the Web server that supports that Web page to the client computer system. When the client computer system receives that Web page, it typically displays the Web page using a browser. A browser is a special-purpose application program that effects the requesting of Web pages and the displaying of Web pages.
  • The domain name system (DNS) is the world's largest distributed computing system that enables access to any resource in the Internet by translating user-friendly domain names to IP Addresses. The process of translating domain names to IP Addresses is called Name Resolution. A DNS name resolution is the first step in the majority of Internet transactions. The DNS is in fact a client-server system that provides this name resolution service through a family of servers called Domain Name Servers. The hierarchical domain space is divided into administrative units called zones. A zone usually consists of a domain (say example.com) and possibly one or more sub domains (projects.example.com, services.example.com). The authoritative data needed for performing the name resolution service is contained in a file called the zone file and the DNS servers hosting this file are called the authoritative name servers for that zone. The DNS clients that make use of the services provided by authoritative name servers may be of two types. One type is called a stub resolver that formulates and sends a query every time it receives a request from an application that requires Internet service (e.g., a browser). The other type is called a caching (also called recursive/resolving) name server that caches the name resolution responses it has obtained from authoritative name servers and thus able to serve multiple stub resolvers.
  • The zone file hosted on an authoritative name server consists of various types of records called Resource Records (RRs). Associated with each DNS resource record is a type (RRtype). The code for these RRtypes is assigned by an international organization called Internet Assigned Names Authority (IANA). An RR of a given RRtype in a zone file provides a specific type of information. Some of the common RRtype codes are: NS, MX, CNAME, and A. An NS RR in a zone file gives the fully qualified domain name (FQDN) of the host that is considered the name server for that zone. For example, an NS RR in the zone file of the zone example.com may give the information that the host ns1.projects.example.com is a name server for the domain projects.example.com. Similarly an MX RR gives the host name for a mail server for the zone. An A RR gives the IP address for a host in a domain within the zone. CNAME provides “canonical name” records and maps names in the zone file. A zone file generally consists of multiple RRs of a given RRtype with some exceptions (e.g., there can be only SOA RR in a zone file). It can also have multiple RRs for the same domain name and same (or different) RRtype (e.g., multiple name servers or mail servers for a domain services.example.com).
  • The DNS infrastructure consists of many different types of DNS servers, DNS clients and transactions among/between these entities. The most important transaction in DNS is the one that provides the core service of DNS (i.e., name resolution service) and is called the DNS Query/Response. A DNS Query/Response transaction is made up of a query originating from a DNS client (generically called a DNS resolver) and response from a DNS name server. The response consists of one or more RRs. These RRs may be served from its own zone file (for an authoritative name server) or from a cache of RRs obtained from other name servers (for a caching/resolving/recursive name servers). In this way, the DNS serves as a global, distributed database. Name servers (serving zone files) each contain a small portion of the global domain space, and clients issue queries using a domain name and a desired RRtype.
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • FIG. 1 is a flowchart showing a sample embodiment of a process of validating a domain zone control.
  • FIG. 2 is a flowchart showing a sample embodiment of a process of issuing a secure certificate using domain zone control validation.
  • FIG. 3A provides a sample email message that users may receive in connection with domain zone control validation.
  • FIG. 3B provides a sample email message that users may receive in connection with domain zone control validation.
  • FIG. 4A illustrates a sample domain zone file as text.
  • FIG. 4B illustrates a sample domain zone file with an addition of a Pass String.
  • DETAILED DESCRIPTION
  • Referring to FIG. 1 a Requestor may request domain zone control validation from a Validating Entity (Step 105). The Requestor is an individual or an entity and typically is an owner, a registrant, or a record holder for a domain name, or otherwise responsible for maintaining the domain name. A Validating Entity is a Certification Authority, a Domain Name Registrar, a Domain Name Registry, or any other individual or entity validating control of a domain zone.
  • Domain zone control means a control over a domain zone, or ownership, possession, authority, or caretaking of the domain zone, or ability to access and alter domain zone records or DNS records. Further control over a domain zone often implies control over the domain name, i.e. a person who has control over the domain zone often has control over the domain name.
  • The request for a domain zone control validation may be received by the Validating Entity via email, through a website, or any other way. In response to the request, the Validating Entity generates and issues a Pass String and forwards (or otherwise communicates) it to the Requestor (Step 110). The Pass String (pass code, validation string, validation code, etc.) is a numeric, alpha, or alphanumeric string or a numeric value. Non alpha characters may be present in the Pass String as well. The Pass String may be unique for each domain name to reduce the chance of impersonation in case of an attempt for an unauthorized domain zone control validation.
  • The Requestor enters the Pass String into a domain zone (Step 115). The domain zone may be a flat text file or generated dynamically from computer settings. The domain zone may be located on a server, such as a DNS server or a hosting server. Most domain zone files contain space-separated values, however there are implementations that provide for character-separated values or formatted with a markup language, such as XML.
  • The Requestor may enter the Pass String into the fields specified by the Validating Entity. Preferably, the Pass String may be entered into the fields that have no or limited negative impact on the DNS resolution process or computational performance.
  • For example, the Pass String may be entered into TXT or CNAME fields of the domain zone. TXT may contain any string parameter. CNAME is an alias for a host record. CNAME allows more than one DNS name for a host record. CNAME records point back to an A record. So if the IP address of the A record is changed, all CNAME records pointed to that record automatically follow the new IP of the A record. Alternatively users may have multiple A records, but this requires multiple places to change the IP address, which increases the chance of error. Using CNAMEs makes DNS data easier to manage. The most common CNAMEs are www and ftp. FIGS. 4A and 4B illustrate a sample domain zone file before (view A) and after (view B) addition of the Pass String in the text of the file. FIG. 4B shows a CNAME “pass-string123” (line 405) added to the sample domain zone file.
  • Additional information on DNS and its records may be found at Mockapetris, RFC1035, Domain Names—Implementation and Specification, November 1987 and Rosenbaum, RFC 1464, Using the Domain Name System To Store Arbitrary String Attributes, May 1993, which are both hereby incorporated in their entirety by reference.
  • The Validating Entity may determine if the Pass String was entered in the domain zone (Step 120). Such determination may occur in a specified time or the Validating Entity may query the domain zone with a specified time interval until the Pass String appears in the domain zone. The Validating Entity may use DNS lookup commands, such as “dig” from computers running Unix, FreeBSD, or Linux operating systems or “nslookup” utility on Windows® or Unix computers.
  • In an alternative embodiment, illustrated in FIG. 2 the domain zone validation may be used to issue a secure certificate, such as an SSL certificate. A Requestor may request a secure certificate for a domain name from a Validating Entity, such as a Certification Authority (Step 205).
  • To verify that the Requestor has control over the domain name, the Validating Entity generates and issues a Pass String and forwards it to the Requestor (Step 110). The Pass String is a numeric, alpha, or alphanumeric string or a numeric value. The Pass String may be unique for each domain name to reduce the chance of impersonation in case of an attempt for an unauthorized domain zone control validation. The Requestor enters the Pass String into a domain zone (Step 115). The Validating Entity determines if the Pass String was entered in the domain zone (Step 120).
  • If the Validating Entity determines that the Pass String is present in the domain zone (Step 225) according to the instructions given to the Requestor, the Validating Entity may issue the secure certificate (Step 235). If the Pass String is not in the domain zone, then the Validating Entity may deny issuing the secure certificate to the Requestor (Step 230). Of course additional methods of validation and authentication may be used along with the domain zone validation.
  • The methods described above can be performed manually, partially automated, or fully automated.
  • The above-described embodiments have been provided by way of example, and the present invention is not limited to these examples. Multiple variations and modification to the disclosed embodiments will occur, to the extent not mutually exclusive, to those skilled in the art upon consideration of the foregoing description. Such variations and modifications, however, fall well within the scope of the present invention as set forth in the following claims.
  • The Abstract accompanying this specification is provided to enable the United States Patent and Trademark Office and the public generally to determine quickly from a cursory inspection the nature and gist of the technical disclosure and is in no way intended for defining, determining, or limiting the present invention or any of its embodiments.

Claims (18)

The invention claimed is:
1. A system, comprising:
a server computer coupled to a network and running a domain name system server software;
a domain name zone file for a domain name, the domain name zone file hosted on the server computer and comprising at least one resource record; and
at least one processor on the server computer executing instructions causing the server computer to:
receive a transmission encoding a request for a validation to modify the at least one resource record;
responsive to the request, generate:
a validation string unique to the domain name zone file and the domain name; and
at least one instruction for entering the validation string into the at least one resource record in the domain name zone file;
transmit the validation string and the at least one instruction to a client computer coupled to the network;
query the domain name zone file to determine whether the validation string has been entered into the at least one resource record; and
responsive to a determination that the validation string has been entered into the at least one resource record, validate the modification of the at least one resource record.
2. The system of claim 1, wherein the server computer is operated by a validating entity comprising:
a certification authority;
a domain name registry; or
a domain name registrar.
3. The system of claim 1, wherein the at least one resource record within the domain name zone file comprises:
a TXT DNS record; or
a CNAME DNS record.
4. The system of claim 1, wherein the server computer receives the request via:
an email message; or
a website.
5. The system of claim 1, wherein the domain name zone file is a flat text file and is
formatted using:
space separated values;
character separated values; or
a markup language.
6. The system of claim 1, wherein the validation string comprises:
an alphanumeric string; or
a numeric string.
7. A system, comprising:
at least one processor running on a server computer coupled to a network, the at least one processor executing instructions causing the server computer to:
host a domain name zone file for a domain name, the domain name zone file comprising at least one domain name system (DNS) record;
receive a transmission encoding a request for a validation to modify the at least one DNS record;
responsive to the request, generate:
a validation string unique to the domain name zone file and the domain name; and
at least one instruction for entering the validation string into the at least one DNS record in the domain name zone file; and
transmit the validation string and the at least one instruction to a client computer coupled to the network.
8. The system of claim 7, wherein the server computer is operated by a validating entity comprising:
a certification authority;
a domain name registry; or
a domain name registrar.
9. The system of claim 7, wherein the at least one DNS record within the domain name zone file comprises:
a TXT DNS record; or
a CNAME DNS record.
10. The system of claim 7, wherein the server computer receives the request via:
an email message; or
a website.
11. The system of claim 7, wherein the domain name zone file is a flat text file and is formatted using:
space separated values;
character separated values; or
a markup language.
12. The system of claim 7, wherein the validation string comprises:
an alphanumeric string; or
a numeric string.
13. A method, comprising:
hosting, by a server computer coupled to a network, a domain name zone file for a domain name, the domain name zone file comprising at least one domain name system (DNS) record;
receiving, by the server computer, a transmission encoding a request for a validation to modify the at least one domain name system (DNS) record;
responsive to the request, generating, by the server computer:
a validation string unique to a domain name zone file hosted on a server computer coupled to a network; and
at least one instruction for entering the validation string into the at least one DNS record in the domain name zone file; and
transmitting, by the server computer, the validation string and the at least one instruction to a client computer coupled to the network.
14. The method of claim 13, wherein the server computer is operated by a validating entity comprising:
a certification authority;
a domain name registry; or
a domain name registrar.
15. The method of claim 13, wherein the at least one DNS record within the domain name zone file comprises:
a TXT DNS record; or
a CNAME DNS record.
16. The method of claim 13, wherein the server computer receives the request via:
an email message; or
a website.
17. The method of claim 13, wherein the domain name zone file is a flat text file and is formatted using:
space separated values;
character separated values; or
a markup language.
18. The method of claim 13, wherein the validation string comprises:
an alphanumeric string; or
a numeric string.
US14/881,007 2008-01-24 2015-10-12 Validating control of domain zone Abandoned US20160087937A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US14/881,007 US20160087937A1 (en) 2008-01-24 2015-10-12 Validating control of domain zone

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US12/019,216 US9183368B2 (en) 2008-01-24 2008-01-24 Validating control of domain zone
US14/881,007 US20160087937A1 (en) 2008-01-24 2015-10-12 Validating control of domain zone

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
US12/019,216 Continuation US9183368B2 (en) 2008-01-24 2008-01-24 Validating control of domain zone

Publications (1)

Publication Number Publication Date
US20160087937A1 true US20160087937A1 (en) 2016-03-24

Family

ID=40900307

Family Applications (2)

Application Number Title Priority Date Filing Date
US12/019,216 Active 2032-04-08 US9183368B2 (en) 2008-01-24 2008-01-24 Validating control of domain zone
US14/881,007 Abandoned US20160087937A1 (en) 2008-01-24 2015-10-12 Validating control of domain zone

Family Applications Before (1)

Application Number Title Priority Date Filing Date
US12/019,216 Active 2032-04-08 US9183368B2 (en) 2008-01-24 2008-01-24 Validating control of domain zone

Country Status (1)

Country Link
US (2) US9183368B2 (en)

Families Citing this family (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8396969B1 (en) 2011-05-17 2013-03-12 Google Inc. Domain name buckets in a hosted storage system
US9391881B2 (en) * 2013-02-20 2016-07-12 Ip Technology Labs, Llc System and methods for dynamic network address modification
US9769153B1 (en) * 2015-08-07 2017-09-19 Amazon Technologies, Inc. Validation for requests

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20070250919A1 (en) * 2005-11-10 2007-10-25 Markmonitor Inc. B2C Authentication System And Methods
US7574508B1 (en) * 2002-08-07 2009-08-11 Foundry Networks, Inc. Canonical name (CNAME) handling for global server load balancing
US20100031078A1 (en) * 2007-12-20 2010-02-04 Kevin Avon Foote System and Method For Redirecting A Website Upon The Occurrence Of A Disaster Or Emergency Event
US7877493B2 (en) * 2005-05-05 2011-01-25 Ironport Systems, Inc. Method of validating requests for sender reputation information
US20160197898A1 (en) * 2015-01-07 2016-07-07 Red Hat, Inc. Using Domain Name System Security Extensions In A Mixed-Mode Environment

Family Cites Families (9)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP1183632A2 (en) * 1999-04-22 2002-03-06 Network Solutions, Inc. Business rule engine
US6976090B2 (en) * 2000-04-20 2005-12-13 Actona Technologies Ltd. Differentiated content and application delivery via internet
CA2463504C (en) * 2001-10-12 2013-02-19 Geo Trust, Inc. Methods and systems for automated authentication, processing and issuance of digital certificates
US7734745B2 (en) * 2002-10-24 2010-06-08 International Business Machines Corporation Method and apparatus for maintaining internet domain name data
US20050076200A1 (en) * 2003-08-15 2005-04-07 Imcentric, Inc. Method for discovering digital certificates in a network
US7970858B2 (en) * 2004-10-29 2011-06-28 The Go Daddy Group, Inc. Presenting search engine results based on domain name related reputation
US20080022013A1 (en) * 2004-10-29 2008-01-24 The Go Daddy Group, Inc. Publishing domain name related reputation in whois records
US20080028443A1 (en) * 2004-10-29 2008-01-31 The Go Daddy Group, Inc. Domain name related reputation and secure certificates
WO2007106826A2 (en) * 2006-03-13 2007-09-20 Markmonitor Inc. Domain name ownership validation

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7574508B1 (en) * 2002-08-07 2009-08-11 Foundry Networks, Inc. Canonical name (CNAME) handling for global server load balancing
US7877493B2 (en) * 2005-05-05 2011-01-25 Ironport Systems, Inc. Method of validating requests for sender reputation information
US20070250919A1 (en) * 2005-11-10 2007-10-25 Markmonitor Inc. B2C Authentication System And Methods
US20100031078A1 (en) * 2007-12-20 2010-02-04 Kevin Avon Foote System and Method For Redirecting A Website Upon The Occurrence Of A Disaster Or Emergency Event
US20160197898A1 (en) * 2015-01-07 2016-07-07 Red Hat, Inc. Using Domain Name System Security Extensions In A Mixed-Mode Environment

Also Published As

Publication number Publication date
US9183368B2 (en) 2015-11-10
US20090193070A1 (en) 2009-07-30

Similar Documents

Publication Publication Date Title
US8024428B2 (en) Methods for updating WHOIS with information collected from non-controlling party
US7260836B2 (en) System and method for distributed authentication service
US20060218289A1 (en) Systems and methods of registering and utilizing domain names
US20070208877A1 (en) Method and Apparatus for Providing Name Services
US20120278626A1 (en) DNSSEC Inline Signing
US9342698B2 (en) Providing privacy enhanced resolution system in the domain name system
EP1305726A1 (en) Systems and methods of accessing network resources
GB2487789A (en) Controlling Internet access using DNS root reputation
US10360292B2 (en) Lightweight web page generation
CA3048125A1 (en) Methods, apparatuses, and computer programs for data processing, and hierarchical domain name system zone files
Blanchet Finding the Authoritative Registration Data (RDAP) Service
US20160087937A1 (en) Validating control of domain zone
US8024456B2 (en) Interactive DNS for controlling party
US8117439B2 (en) Issuing secure certificate using domain zone control validation
US11218326B1 (en) System and method for generating current live and test versions of DNS data for rollover
US11870750B1 (en) Assisted setup of domain name registry
EP1784947A1 (en) Systems and methods of registering and utilizing domain names
US8762571B2 (en) Interactive DNS for non-controlling party
Nikkel Registration Data Access Protocol (RDAP) for digital forensic investigators
CN105245626A (en) Method for realizing website addressing by using shortcut domain name in private network
US10291612B2 (en) Bi-directional authentication between a media repository and a hosting provider
US10659424B2 (en) Determining status of domain name registration
US11233767B1 (en) System and method for publishing DNS records of a domain including either signed or unsigned records
US11405353B2 (en) System and method for generating concurrently live and test versions of DNS data
US10148729B2 (en) Hosting provider hosting routes from a media repository

Legal Events

Date Code Title Description
AS Assignment

Owner name: GO DADDY OPERATING COMPANY, LLC, ARIZONA

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:RODRIGUEZ, ERIC;REEL/FRAME:036775/0616

Effective date: 20080124

AS Assignment

Owner name: BARCLAYS BANK PLC, AS COLLATERAL AGENT, NEW YORK

Free format text: SECURITY AGREEMENT;ASSIGNOR:GO DADDY OPERATING COMPANY, LLC;REEL/FRAME:042426/0045

Effective date: 20170508

STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION

AS Assignment

Owner name: ROYAL BANK OF CANADA, CANADA

Free format text: SECURITY AGREEMENT;ASSIGNORS:GO DADDY OPERATING COMPANY, LLC;GD FINANCE CO, LLC;GODADDY MEDIA TEMPLE INC.;AND OTHERS;REEL/FRAME:062782/0489

Effective date: 20230215