root/psad/tags/psad-2.1.2/whois/data.h

Revision 1555, 3.8 kB (checked in by mbr, 3 years ago)

updated to whois 4.7.13

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 /*
2  * RIPE-like servers.
3  * All of them do not understand -V2.0Md with the exception of RA and RIPN.
4  * 6bone-derived servers will accept the flag with a warning (the flag must
5  * match /^V [a-zA-Z]{1,4}\d+[\d\.]{0,5}$/).
6  */
7
8 /* servers which accept the new syntax (-V XXn.n) */
9 const char *ripe_servers[] = {
10     "whois.ripe.net",
11     "whois.apnic.net",
12     "whois.afrinic.net",
13     "whois.denic.de",
14     "rr.arin.net",              /* does not accept the old syntax */
15     "whois.6bone.net",          /* 3.0.0b1 */
16     "whois.connect.com.au",     /* 3.0.0b1 */
17     "whois.nic.fr",
18     "whois.nic.it",
19     "whois.telstra.net",
20     "whois.restena.lu",
21     "rr.level3.net",            /* 3.0.0a13 */
22     "whois.ripn.net",
23     "whois.arnes.si",
24     "www.registry.co.ug",
25     "whois.nic.ir",
26     "whois.nic.ck",
27     "whois.ra.net",
28     "whois.radb.net",
29     NULL
30 };
31
32 const char *hide_strings[] = {
33     "NOTICE AND TERMS OF USE: You", "",                         /* NetSol */
34     "TERMS OF USE: You are not", "",                            /* crsnic */
35     "NOTICE: Access to .ORG WHOIS", "",
36     "NOTICE: Access to .INFO WHOIS", "",
37     "NOTICE: Access to the .aero", "",
38     "This Registry database contains ONLY .EDU", "type: help"/* edu */
39     "% .eu Whois Server", "% of the database",
40     "The data in Register", "",                             /* Register.Com */
41     "The Data in the Tucows", "RECORD DOES NOT",
42     " The data contained in the WHOIS", "",                     /* DOTSTER */
43     "This whois service currently only", "top-level domains.",
44     "Signature Domains' Whois Service", "agree to abide by the above",
45     "Access to ASNIC", "by this policy.",                       /* as */
46     "The Data in Gabia", "you agree to abide",
47     "The data contained in Go Daddy", "is not the registrant",
48     "Disclaimer: The Global Name Registry", "for any commercial",
49     "Access to America Online", "time. By accessing",           /* AOL */
50     "% Access and use restricted", "",                          /* GANDI */
51     "% The data in the WHOIS database of Schlund", "",
52     "NeuStar, Inc., the Registry", "rules.  For details",       /* us */
53     "The data in this whois database is", "",                   /* enom */
54     "By submitting a WHOIS query, you agree you will", "LACK OF A DOMAIN",              /* directNIC */
55     "The Data in Moniker.Com", "",
56     "The Data in OnlineNIC", "    By starting this query",
57     "The data in Bulkregister", "",
58     "Interdomain's WHOIS", "DOES NOT SIGNIFY",
59     "The Data provided by Stargate Holdings", "(2) enable any",
60     "; This data is provided by domaindiscount24.com", "",
61     "%% BookMyName Whois", "%% this policy",
62     "The .coop registry WHOIS", "VERIFICATION, NOR DO",
63     "Tralliance, Inc., the Registry", "",                       /* travel */
64     "NOTICE: Access to the domains information", "",            /* CORE */
65     "%% puntCAT Whois Server", "%% any time.",
66     NULL, NULL
67 };
68
69 const char *nic_handles[] = {
70     "net-",     "whois.arin.net",
71     "netblk-""whois.arin.net",
72     "poem-",    "whois.ripe.net",
73     "form-",    "whois.ripe.net",
74 #if 0
75     // commented until somebody will explain the query format for these
76     "coco-",    "whois.corenic.net",
77     "coho-",    "whois.corenic.net",
78     "core-",    "whois.corenic.net",
79 #endif
80     "denic-",   "whois.denic.de",
81     /* RPSL objects */
82     "as-",      "whois.ripe.net",
83     "rs-",      "whois.ripe.net",
84     "rtrs-",    "whois.ripe.net",
85     "fltr-",    "whois.ripe.net",
86     "prng-",    "whois.ripe.net",
87     NULL,       NULL
88 };
89
90 struct ip_del {
91     const unsigned long net;
92     const unsigned long mask;
93     const char         *serv;
94 };
95
96 const struct ip_del ip_assign[] = {
97 #include "ip_del.h"
98     { 0, 0, NULL }
99 };
100
101 struct ip6_del {
102     const unsigned long  net;
103     const unsigned short masklen;
104     const char          *serv;
105 };
106
107 const struct ip6_del ip6_assign[] = {
108 #include "ip6_del.h"
109     { 0, 0, NULL }
110 };
111
112 struct as_del {
113     const unsigned short first;
114     const unsigned short last;
115     const char          *serv;
116 };
117
118 const struct as_del as_assign[] = {
119 #include "as_del.h"
120     { 0, 0, NULL }
121 };
122
123 const char *tld_serv[] = {
124 #include "tld_serv.h"
125     NULL,       NULL
126 };
127
Note: See TracBrowser for help on using the browser.