whois 3.6.3 → 3.6.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/{CHANGELOG.markdown → CHANGELOG.md} +23 -1
- data/CONTRIBUTING.md +39 -0
- data/{README.markdown → README.md} +0 -0
- data/bin/whoisrb +1 -1
- data/data/tld.json +153 -114
- data/lib/whois/record/parser/base_afilias2.rb +9 -12
- data/lib/whois/record/parser/whois.35.com.rb +26 -0
- data/lib/whois/record/parser/whois.aero.rb +15 -1
- data/lib/whois/record/parser/whois.donuts.co.rb +1 -0
- data/lib/whois/record/parser/whois.nic.space.rb +27 -0
- data/lib/whois/record/parser/whois.nic.tech.rb +27 -0
- data/lib/whois/record/parser/whois.nic.xyz.rb +22 -0
- data/lib/whois/record/parser/whois.pir.org.rb +2 -2
- data/lib/whois/record/parser/whois.registry.in.rb +6 -0
- data/lib/whois/record/parser/whois.uniregistry.net.rb +1 -0
- data/lib/whois/record/parser/whois.wildwestdomains.com.rb +4 -4
- data/lib/whois/version.rb +1 -1
- data/whois.gemspec +1 -1
- metadata +9 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8ec30f19d81b3f7e23877ab1c67eb40fb75fe976
|
4
|
+
data.tar.gz: 704b67df44f1d83c55a99feb4c25af8ca9835bf0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 77de421e00786a00d12e8a796c592cde4a54585d430c594768a4ba9b33eb59abb3bf17399dbc15fa5bc463f501797f5e42cd79f76a6e5a0ef97739987d37ed9c
|
7
|
+
data.tar.gz: eb46bf47faf00fc429d3ab5691cc8aa9771dae07d1dd83dbc31b7b7056bd5b689f7f9c00aeb556be44b86fbb3df9e268b45f29722754c6a7748523baf5277062
|
@@ -1,5 +1,27 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
#### Release 3.6.4
|
4
|
+
|
5
|
+
- SERVER: Add .ROCHER, .XN--VUQ861B, .CITYEATS, .CREDITUNION, .LIFESTYLE, .VANA, .COMSEC, .FAIRWINDS, .GRAINGER, .TAB, .BROADWAY, .AUDI, .BOEHRINGER, .BOSTIK, .BUGATTI, .LAMBORGHINI, .VERISIGN, .VIP., .SFR, .INSURANCE, .MED, .NORTON, .SYMANTEC, .AUTHOR, .BOOK, .BOT, .BUY, .CALL, .CIRCLE, .FAST, .FIRESTONE, .GOT, .JOT, .JOY, .LIKE, .NOWRUZ, .PIN, .READ, .ROOM, .SAFE, .SALON, .SHARP, .SHIA, .SMILE, .TCI, .TRAVELERS, .ZERO
|
6
|
+
|
7
|
+
- SERVER: Delete .TP, .AN
|
8
|
+
|
9
|
+
- NEW: Add whois.nic.tech parser (GH-443). [Thanks @mattbrictson]
|
10
|
+
|
11
|
+
- NEW: Add whois.35.com parser (GH-391). [Thanks @alpo]
|
12
|
+
|
13
|
+
- NEW: Add whois.nic.space parser (GH-463, GH-374). [Thanks @linrock]
|
14
|
+
|
15
|
+
- NEW: Add whois.nic.xyz parser (GH-373, GH-460). [Thanks @mpchadwick]
|
16
|
+
|
17
|
+
- FIXED: Remove option to /usr/bin/env as not supported on all platforms (GH-453). [Thanks @martin-schmidt]
|
18
|
+
|
19
|
+
- CHANGED: Update whois.wildwestdomains.com to the new response format (GH-392, GH-462). [Thanks @linrock]
|
20
|
+
|
21
|
+
- CHANGED: Update whois.afilias.info to the new response format (GH-481).
|
22
|
+
|
23
|
+
- CHANGED: whois.aero now recognizes reserved domains (GH-464, GH-418). [Thanks @linrock]
|
24
|
+
|
3
25
|
|
4
26
|
#### Release 3.6.3
|
5
27
|
|
@@ -661,7 +683,7 @@
|
|
661
683
|
|
662
684
|
- FIXED: In some cases the parser class is not correctly detected from hostname (GH-173). [Thanks @JustinCampbell]
|
663
685
|
|
664
|
-
- FIXED: whois.ua parser raises
|
686
|
+
- FIXED: whois.ua parser raises ArgumcentError when the created_on object invalid data.
|
665
687
|
|
666
688
|
- FIXED: Whois::Server may occasionally raise an error trying to resolve an IPv6 matching query object (GH-174). [Thanks @aeden].
|
667
689
|
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
# Contributing
|
2
|
+
|
3
|
+
We love pull requests from everyone. By participating in this project, you agree to abide by the contribution [code of conduct](http://contributor-covenant.org/version/1/2/0/).
|
4
|
+
|
5
|
+
## Workflow
|
6
|
+
|
7
|
+
Fork, then clone the repo:
|
8
|
+
|
9
|
+
$ git clone git@github.com:your-username/whois.git
|
10
|
+
|
11
|
+
Set up your machine:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Make sure the tests pass:
|
16
|
+
|
17
|
+
$ bundle exec rake
|
18
|
+
|
19
|
+
To propose a change/feature/patch, create your feature branch:
|
20
|
+
|
21
|
+
$ git checkout -b my-new-feature
|
22
|
+
|
23
|
+
Make your change. Add tests for your change. Make the tests pass:
|
24
|
+
|
25
|
+
$ bundle exec rake
|
26
|
+
|
27
|
+
Commit your changes:
|
28
|
+
|
29
|
+
$ git commit -am 'Add some feature'
|
30
|
+
|
31
|
+
Push to your fork and [submit a pull request](https://github.com/weppos/whois/compare/).
|
32
|
+
|
33
|
+
|
34
|
+
## Tests
|
35
|
+
|
36
|
+
To increase the chance that your pull request is accepted please **make sure to write tests**. Changes without corresponding tests will likely not be included as they will produce fragile code that can easily break whenever the registry changes the response format.
|
37
|
+
|
38
|
+
Some examples: [84dbdde320f31c20184bcfe5e544e8fd3cd32862](https://github.com/weppos/whois/commit/84dbdde320f31c20184bcfe5e544e8fd3cd32862), [3b6688b95e6fadcf720cc777ef4bbd2cd644e62b](https://github.com/weppos/whois/commit/3b6688b95e6fadcf720cc777ef4bbd2cd644e62b)
|
39
|
+
|
File without changes
|
data/bin/whoisrb
CHANGED
data/data/tld.json
CHANGED
@@ -110,14 +110,12 @@
|
|
110
110
|
"host": "whois.iana.org"
|
111
111
|
},
|
112
112
|
".mil": {
|
113
|
-
"host": null,
|
114
113
|
"adapter": "none"
|
115
114
|
},
|
116
115
|
".e164.arpa": {
|
117
116
|
"host": "whois.ripe.net"
|
118
117
|
},
|
119
118
|
".in-addr.arpa": {
|
120
|
-
"host": null,
|
121
119
|
"adapter": "arpa"
|
122
120
|
},
|
123
121
|
".arpa": {
|
@@ -171,7 +169,6 @@
|
|
171
169
|
"host": "whois.nic.ac"
|
172
170
|
},
|
173
171
|
".ad": {
|
174
|
-
"host": null,
|
175
172
|
"adapter": "none"
|
176
173
|
},
|
177
174
|
".ae": {
|
@@ -187,26 +184,18 @@
|
|
187
184
|
"host": "whois.ai"
|
188
185
|
},
|
189
186
|
".al": {
|
190
|
-
"host": null,
|
191
187
|
"adapter": "none"
|
192
188
|
},
|
193
189
|
".am": {
|
194
190
|
"host": "whois.nic.am"
|
195
191
|
},
|
196
|
-
".an": {
|
197
|
-
"host": null,
|
198
|
-
"adapter": "none"
|
199
|
-
},
|
200
192
|
".ao": {
|
201
|
-
"host": null,
|
202
193
|
"adapter": "none"
|
203
194
|
},
|
204
195
|
".aq": {
|
205
|
-
"host": null,
|
206
196
|
"adapter": "none"
|
207
197
|
},
|
208
198
|
".ar": {
|
209
|
-
"host": null,
|
210
199
|
"adapter": "web",
|
211
200
|
"url": "http://www.nic.ar/"
|
212
201
|
},
|
@@ -229,22 +218,18 @@
|
|
229
218
|
"host": "whois.ax"
|
230
219
|
},
|
231
220
|
".az": {
|
232
|
-
"host": null,
|
233
221
|
"adapter": "web",
|
234
222
|
"url": "http://www.nic.az/"
|
235
223
|
},
|
236
224
|
".ba": {
|
237
|
-
"host": null,
|
238
225
|
"adapter": "web",
|
239
226
|
"url": "http://nic.ba/lat/menu/view/13"
|
240
227
|
},
|
241
228
|
".bb": {
|
242
|
-
"host": null,
|
243
229
|
"adapter": "web",
|
244
230
|
"url": "http://whois.telecoms.gov.bb/search_domain.php"
|
245
231
|
},
|
246
232
|
".bd": {
|
247
|
-
"host": null,
|
248
233
|
"adapter": "web",
|
249
234
|
"url": "http://whois.btcl.net.bd/"
|
250
235
|
},
|
@@ -252,14 +237,12 @@
|
|
252
237
|
"host": "whois.dns.be"
|
253
238
|
},
|
254
239
|
".bf": {
|
255
|
-
"host": null,
|
256
240
|
"adapter": "none"
|
257
241
|
},
|
258
242
|
".bg": {
|
259
243
|
"host": "whois.register.bg"
|
260
244
|
},
|
261
245
|
".bh": {
|
262
|
-
"host": null,
|
263
246
|
"adapter": "none"
|
264
247
|
},
|
265
248
|
".bi": {
|
@@ -269,7 +252,6 @@
|
|
269
252
|
"host": "whois.nic.bj"
|
270
253
|
},
|
271
254
|
".bm": {
|
272
|
-
"host": null,
|
273
255
|
"adapter": "web",
|
274
256
|
"url": "http://www.bermudanic.bm/cgi-bin/lansaweb?procfun+BMWHO+BMWHO2+WHO"
|
275
257
|
},
|
@@ -283,17 +265,14 @@
|
|
283
265
|
"host": "whois.registro.br"
|
284
266
|
},
|
285
267
|
".bs": {
|
286
|
-
"host": null,
|
287
268
|
"adapter": "web",
|
288
269
|
"url": "http://www.nic.bs/cgi-bin/search.pl"
|
289
270
|
},
|
290
271
|
".bt": {
|
291
|
-
"host": null,
|
292
272
|
"adapter": "web",
|
293
273
|
"url": "http://www.nic.bt/"
|
294
274
|
},
|
295
275
|
".bv": {
|
296
|
-
"host": null,
|
297
276
|
"adapter": "none"
|
298
277
|
},
|
299
278
|
".by": {
|
@@ -323,7 +302,6 @@
|
|
323
302
|
"host": "whois.dot.cf"
|
324
303
|
},
|
325
304
|
".cg": {
|
326
|
-
"host": null,
|
327
305
|
"adapter": "web",
|
328
306
|
"url": "http://www.nic.cg/cgi-bin/whois.pl"
|
329
307
|
},
|
@@ -355,24 +333,20 @@
|
|
355
333
|
"host": "whois.nic.cr"
|
356
334
|
},
|
357
335
|
".cu": {
|
358
|
-
"host": null,
|
359
336
|
"adapter": "web",
|
360
337
|
"url": "http://www.nic.cu/"
|
361
338
|
},
|
362
339
|
".cv": {
|
363
|
-
"host": null,
|
364
340
|
"adapter": "web",
|
365
341
|
"url": "http://www.dns.cv/"
|
366
342
|
},
|
367
343
|
".cw": {
|
368
|
-
"host": null,
|
369
344
|
"adapter": "none"
|
370
345
|
},
|
371
346
|
".cx": {
|
372
347
|
"host": "whois.nic.cx"
|
373
348
|
},
|
374
349
|
".cy": {
|
375
|
-
"host": null,
|
376
350
|
"adapter": "web",
|
377
351
|
"url": "http://www.nic.cy/nslookup/online_database.php"
|
378
352
|
},
|
@@ -385,7 +359,6 @@
|
|
385
359
|
"format": "-T dn,ace %s"
|
386
360
|
},
|
387
361
|
".dj": {
|
388
|
-
"host": null,
|
389
362
|
"adapter": "web",
|
390
363
|
"url": "http://www.nic.dj/whois.php"
|
391
364
|
},
|
@@ -398,7 +371,6 @@
|
|
398
371
|
"host": "whois.nic.dm"
|
399
372
|
},
|
400
373
|
".do": {
|
401
|
-
"host": null,
|
402
374
|
"adapter": "web",
|
403
375
|
"url": "http://www.nic.do/whois-h.php3"
|
404
376
|
},
|
@@ -412,19 +384,16 @@
|
|
412
384
|
"host": "whois.tld.ee"
|
413
385
|
},
|
414
386
|
".eg": {
|
415
|
-
"host": null,
|
416
387
|
"adapter": "web",
|
417
388
|
"url": "http://lookup.egregistry.eg/english.aspx"
|
418
389
|
},
|
419
390
|
".er": {
|
420
|
-
"host": null,
|
421
391
|
"adapter": "none"
|
422
392
|
},
|
423
393
|
".es": {
|
424
394
|
"host": "whois.nic.es"
|
425
395
|
},
|
426
396
|
".et": {
|
427
|
-
"host": null,
|
428
397
|
"adapter": "none"
|
429
398
|
},
|
430
399
|
".eu": {
|
@@ -437,11 +406,9 @@
|
|
437
406
|
"host": "whois.usp.ac.fj"
|
438
407
|
},
|
439
408
|
".fk": {
|
440
|
-
"host": null,
|
441
409
|
"adapter": "none"
|
442
410
|
},
|
443
411
|
".fm": {
|
444
|
-
"host": null,
|
445
412
|
"adapter": "web",
|
446
413
|
"url": "http://dot.fm/whois.html"
|
447
414
|
},
|
@@ -485,23 +452,19 @@
|
|
485
452
|
"host": "whois.nic.fr"
|
486
453
|
},
|
487
454
|
".ga": {
|
488
|
-
"host": null,
|
489
455
|
"adapter": "none"
|
490
456
|
},
|
491
457
|
".gb": {
|
492
|
-
"host": null,
|
493
458
|
"adapter": "none"
|
494
459
|
},
|
495
460
|
".gd": {
|
496
461
|
"host": "whois.nic.gd"
|
497
462
|
},
|
498
463
|
".ge": {
|
499
|
-
"host": null,
|
500
464
|
"adapter": "web",
|
501
465
|
"url": "http://www.registration.ge/"
|
502
466
|
},
|
503
467
|
".gf": {
|
504
|
-
"host": null,
|
505
468
|
"adapter": "web",
|
506
469
|
"url": "https://www.dom-enic.com/whois.html"
|
507
470
|
},
|
@@ -509,7 +472,6 @@
|
|
509
472
|
"host": "whois.gg"
|
510
473
|
},
|
511
474
|
".gh": {
|
512
|
-
"host": null,
|
513
475
|
"adapter": "web",
|
514
476
|
"url": "http://www.nic.gh/customer/search_c.htm"
|
515
477
|
},
|
@@ -521,23 +483,19 @@
|
|
521
483
|
"host": "whois.nic.gl"
|
522
484
|
},
|
523
485
|
".gm": {
|
524
|
-
"host": null,
|
525
486
|
"adapter": "web",
|
526
487
|
"url": "http://www.nic.gm/htmlpages/whois.htm"
|
527
488
|
},
|
528
489
|
".gn": {
|
529
|
-
"host": null,
|
530
490
|
"adapter": "none"
|
531
491
|
},
|
532
492
|
".gp": {
|
533
|
-
"host": null,
|
534
493
|
"adapter": "none"
|
535
494
|
},
|
536
495
|
".gq": {
|
537
496
|
"host": "whois.dominio.gq"
|
538
497
|
},
|
539
498
|
".gr": {
|
540
|
-
"host": null,
|
541
499
|
"adapter": "web",
|
542
500
|
"url": "https://grweb.ics.forth.gr/Whois?lang=en"
|
543
501
|
},
|
@@ -545,17 +503,14 @@
|
|
545
503
|
"host": "whois.nic.gs"
|
546
504
|
},
|
547
505
|
".gt": {
|
548
|
-
"host": null,
|
549
506
|
"adapter": "web",
|
550
507
|
"url": "http://www.gt/whois.html"
|
551
508
|
},
|
552
509
|
".gu": {
|
553
|
-
"host": null,
|
554
510
|
"adapter": "web",
|
555
511
|
"url": "http://gadao.gov.gu/domainsearch.htm"
|
556
512
|
},
|
557
513
|
".gw": {
|
558
|
-
"host": null,
|
559
514
|
"adapter": "none"
|
560
515
|
},
|
561
516
|
".gy": {
|
@@ -613,11 +568,9 @@
|
|
613
568
|
"host": "whois.je"
|
614
569
|
},
|
615
570
|
".jm": {
|
616
|
-
"host": null,
|
617
571
|
"adapter": "none"
|
618
572
|
},
|
619
573
|
".jo": {
|
620
|
-
"host": null,
|
621
574
|
"adapter": "web",
|
622
575
|
"url": "http://www.dns.jo/Whois.aspx"
|
623
576
|
},
|
@@ -633,30 +586,25 @@
|
|
633
586
|
"host": "whois.domain.kg"
|
634
587
|
},
|
635
588
|
".kh": {
|
636
|
-
"host": null,
|
637
589
|
"adapter": "none"
|
638
590
|
},
|
639
591
|
".ki": {
|
640
592
|
"host": "whois.nic.ki"
|
641
593
|
},
|
642
594
|
".km": {
|
643
|
-
"host": null,
|
644
595
|
"adapter": "none"
|
645
596
|
},
|
646
597
|
".kn": {
|
647
|
-
"host": null,
|
648
598
|
"adapter": "web",
|
649
599
|
"url": "http://www.nic.kn/"
|
650
600
|
},
|
651
601
|
".kp": {
|
652
|
-
"host": null,
|
653
602
|
"adapter": "none"
|
654
603
|
},
|
655
604
|
".kr": {
|
656
605
|
"host": "whois.kr"
|
657
606
|
},
|
658
607
|
".kw": {
|
659
|
-
"host": null,
|
660
608
|
"adapter": "web",
|
661
609
|
"url": "http://www.kw/"
|
662
610
|
},
|
@@ -670,7 +618,6 @@
|
|
670
618
|
"host": "whois.nic.la"
|
671
619
|
},
|
672
620
|
".lb": {
|
673
|
-
"host": null,
|
674
621
|
"adapter": "web",
|
675
622
|
"url": "http://www.aub.edu.lb/lbdr/"
|
676
623
|
},
|
@@ -685,11 +632,9 @@
|
|
685
632
|
"host": "whois.nic.lk"
|
686
633
|
},
|
687
634
|
".lr": {
|
688
|
-
"host": null,
|
689
635
|
"adapter": "none"
|
690
636
|
},
|
691
637
|
".ls": {
|
692
|
-
"host": null,
|
693
638
|
"adapter": "web",
|
694
639
|
"url": "http://www.co.ls/co.asp"
|
695
640
|
},
|
@@ -709,7 +654,6 @@
|
|
709
654
|
"host": "whois.registre.ma"
|
710
655
|
},
|
711
656
|
".mc": {
|
712
|
-
"host": null,
|
713
657
|
"adapter": "none"
|
714
658
|
},
|
715
659
|
".md": {
|
@@ -722,7 +666,6 @@
|
|
722
666
|
"host": "whois.nic.mg"
|
723
667
|
},
|
724
668
|
".mh": {
|
725
|
-
"host": null,
|
726
669
|
"adapter": "none"
|
727
670
|
},
|
728
671
|
".mk": {
|
@@ -732,7 +675,6 @@
|
|
732
675
|
"host": "whois.dot.ml"
|
733
676
|
},
|
734
677
|
".mm": {
|
735
|
-
"host": null,
|
736
678
|
"adapter": "none"
|
737
679
|
},
|
738
680
|
".mn": {
|
@@ -743,23 +685,19 @@
|
|
743
685
|
"host": "whois.monic.mo"
|
744
686
|
},
|
745
687
|
".mp": {
|
746
|
-
"host": null,
|
747
688
|
"adapter": "none"
|
748
689
|
},
|
749
690
|
".mq": {
|
750
|
-
"host": null,
|
751
691
|
"adapter": "web",
|
752
692
|
"url": "https://www.dom-enic.com/whois.html"
|
753
693
|
},
|
754
694
|
".mr": {
|
755
|
-
"host": null,
|
756
695
|
"adapter": "none"
|
757
696
|
},
|
758
697
|
".ms": {
|
759
698
|
"host": "whois.nic.ms"
|
760
699
|
},
|
761
700
|
".mt": {
|
762
|
-
"host": null,
|
763
701
|
"adapter": "web",
|
764
702
|
"url": "https://www.nic.org.mt/dotmt/"
|
765
703
|
},
|
@@ -767,11 +705,9 @@
|
|
767
705
|
"host": "whois.nic.mu"
|
768
706
|
},
|
769
707
|
".mv": {
|
770
|
-
"host": null,
|
771
708
|
"adapter": "none"
|
772
709
|
},
|
773
710
|
".mw": {
|
774
|
-
"host": null,
|
775
711
|
"adapter": "web",
|
776
712
|
"url": "http://www.registrar.mw/"
|
777
713
|
},
|
@@ -810,12 +746,10 @@
|
|
810
746
|
"host": "whois.norid.no"
|
811
747
|
},
|
812
748
|
".np": {
|
813
|
-
"host": null,
|
814
749
|
"adapter": "web",
|
815
750
|
"url": "http://register.mos.com.np/userSearchInc.asp"
|
816
751
|
},
|
817
752
|
".nr": {
|
818
|
-
"host": null,
|
819
753
|
"adapter": "web",
|
820
754
|
"url": "http://www.cenpac.net.nr/dns/whois.html"
|
821
755
|
},
|
@@ -829,7 +763,6 @@
|
|
829
763
|
"host": "whois.registry.om"
|
830
764
|
},
|
831
765
|
".pa": {
|
832
|
-
"host": null,
|
833
766
|
"adapter": "web",
|
834
767
|
"url": "http://www.nic.pa/"
|
835
768
|
},
|
@@ -840,16 +773,13 @@
|
|
840
773
|
"host": "whois.registry.pf"
|
841
774
|
},
|
842
775
|
".pg": {
|
843
|
-
"host": null,
|
844
776
|
"adapter": "none"
|
845
777
|
},
|
846
778
|
".ph": {
|
847
|
-
"host": null,
|
848
779
|
"adapter": "web",
|
849
780
|
"url": "http://www.dot.ph/whois"
|
850
781
|
},
|
851
782
|
".pk": {
|
852
|
-
"host": null,
|
853
783
|
"adapter": "web",
|
854
784
|
"url": "http://www.pknic.net.pk/"
|
855
785
|
},
|
@@ -863,7 +793,6 @@
|
|
863
793
|
"host": "whois.nic.fr"
|
864
794
|
},
|
865
795
|
".pn": {
|
866
|
-
"host": null,
|
867
796
|
"adapter": "web",
|
868
797
|
"url": "http://www.pitcairn.pn/PnRegistry/"
|
869
798
|
},
|
@@ -883,7 +812,6 @@
|
|
883
812
|
"host": "whois.nic.pw"
|
884
813
|
},
|
885
814
|
".py": {
|
886
|
-
"host": null,
|
887
815
|
"adapter": "web",
|
888
816
|
"url": "http://www.nic.py/consultas.html"
|
889
817
|
},
|
@@ -906,7 +834,6 @@
|
|
906
834
|
"host": "whois.tcinet.ru"
|
907
835
|
},
|
908
836
|
".rw": {
|
909
|
-
"host": null,
|
910
837
|
"adapter": "none"
|
911
838
|
},
|
912
839
|
".sa": {
|
@@ -920,7 +847,6 @@
|
|
920
847
|
"adapter": "afilias"
|
921
848
|
},
|
922
849
|
".sd": {
|
923
|
-
"host": null,
|
924
850
|
"adapter": "none"
|
925
851
|
},
|
926
852
|
".se": {
|
@@ -936,7 +862,6 @@
|
|
936
862
|
"host": "whois.register.si"
|
937
863
|
},
|
938
864
|
".sj": {
|
939
|
-
"host": null,
|
940
865
|
"adapter": "none"
|
941
866
|
},
|
942
867
|
".sk": {
|
@@ -955,7 +880,6 @@
|
|
955
880
|
"host": "whois.nic.so"
|
956
881
|
},
|
957
882
|
".sr": {
|
958
|
-
"host": null,
|
959
883
|
"adapter": "none"
|
960
884
|
},
|
961
885
|
".st": {
|
@@ -965,7 +889,6 @@
|
|
965
889
|
"host": "whois.tcinet.ru"
|
966
890
|
},
|
967
891
|
".sv": {
|
968
|
-
"host": null,
|
969
892
|
"adapter": "web",
|
970
893
|
"url": "http://www.uca.edu.sv/dns/"
|
971
894
|
},
|
@@ -976,14 +899,12 @@
|
|
976
899
|
"host": "whois.tld.sy"
|
977
900
|
},
|
978
901
|
".sz": {
|
979
|
-
"host": null,
|
980
902
|
"adapter": "none"
|
981
903
|
},
|
982
904
|
".tc": {
|
983
905
|
"host": "whois.nic.tc"
|
984
906
|
},
|
985
907
|
".td": {
|
986
|
-
"host": null,
|
987
908
|
"adapter": "web",
|
988
909
|
"url": "http://www.nic.td/"
|
989
910
|
},
|
@@ -991,7 +912,6 @@
|
|
991
912
|
"host": "whois.nic.fr"
|
992
913
|
},
|
993
914
|
".tg": {
|
994
|
-
"host": null,
|
995
915
|
"adapter": "web",
|
996
916
|
"url": "http://www.nic.tg/"
|
997
917
|
},
|
@@ -999,7 +919,6 @@
|
|
999
919
|
"host": "whois.thnic.co.th"
|
1000
920
|
},
|
1001
921
|
".tj": {
|
1002
|
-
"host": null,
|
1003
922
|
"adapter": "web",
|
1004
923
|
"url": "http://www.nic.tj/whois.html"
|
1005
924
|
},
|
@@ -1018,15 +937,10 @@
|
|
1018
937
|
".to": {
|
1019
938
|
"host": "whois.tonic.to"
|
1020
939
|
},
|
1021
|
-
".tp": {
|
1022
|
-
"host": null,
|
1023
|
-
"adapter": "none"
|
1024
|
-
},
|
1025
940
|
".tr": {
|
1026
941
|
"host": "whois.nic.tr"
|
1027
942
|
},
|
1028
943
|
".tt": {
|
1029
|
-
"host": null,
|
1030
944
|
"adapter": "web",
|
1031
945
|
"url": "http://www.nic.tt/cgi-bin/search.pl"
|
1032
946
|
},
|
@@ -1053,42 +967,33 @@
|
|
1053
967
|
"host": "whois.ja.net"
|
1054
968
|
},
|
1055
969
|
".bl.uk": {
|
1056
|
-
"host": null,
|
1057
970
|
"adapter": "none"
|
1058
971
|
},
|
1059
972
|
".british-library.uk": {
|
1060
|
-
"host": null,
|
1061
973
|
"adapter": "none"
|
1062
974
|
},
|
1063
975
|
".gov.uk": {
|
1064
976
|
"host": "whois.ja.net"
|
1065
977
|
},
|
1066
978
|
".icnet.uk": {
|
1067
|
-
"host": null,
|
1068
979
|
"adapter": "none"
|
1069
980
|
},
|
1070
981
|
".jet.uk": {
|
1071
|
-
"host": null,
|
1072
982
|
"adapter": "none"
|
1073
983
|
},
|
1074
984
|
".mod.uk": {
|
1075
|
-
"host": null,
|
1076
985
|
"adapter": "none"
|
1077
986
|
},
|
1078
987
|
".nhs.uk": {
|
1079
|
-
"host": null,
|
1080
988
|
"adapter": "none"
|
1081
989
|
},
|
1082
990
|
".nls.uk": {
|
1083
|
-
"host": null,
|
1084
991
|
"adapter": "none"
|
1085
992
|
},
|
1086
993
|
".parliament.uk": {
|
1087
|
-
"host": null,
|
1088
994
|
"adapter": "none"
|
1089
995
|
},
|
1090
996
|
".police.uk": {
|
1091
|
-
"host": null,
|
1092
997
|
"adapter": "none"
|
1093
998
|
},
|
1094
999
|
".uk": {
|
@@ -1098,7 +1003,6 @@
|
|
1098
1003
|
"host": "whois.nic.us"
|
1099
1004
|
},
|
1100
1005
|
".com.uy": {
|
1101
|
-
"host": null,
|
1102
1006
|
"adapter": "web",
|
1103
1007
|
"url": "https://nic.anteldata.com.uy/dns/consultaWhois/whois.action"
|
1104
1008
|
},
|
@@ -1109,7 +1013,6 @@
|
|
1109
1013
|
"host": "whois.cctld.uz"
|
1110
1014
|
},
|
1111
1015
|
".va": {
|
1112
|
-
"host": null,
|
1113
1016
|
"adapter": "none"
|
1114
1017
|
},
|
1115
1018
|
".vc": {
|
@@ -1123,12 +1026,10 @@
|
|
1123
1026
|
"host": "whois.nic.vg"
|
1124
1027
|
},
|
1125
1028
|
".vi": {
|
1126
|
-
"host": null,
|
1127
1029
|
"adapter": "web",
|
1128
1030
|
"url": "http://www.nic.vi/whoisform.htm"
|
1129
1031
|
},
|
1130
1032
|
".vn": {
|
1131
|
-
"host": null,
|
1132
1033
|
"adapter": "web",
|
1133
1034
|
"url": "http://www.vnnic.vn/en/domain"
|
1134
1035
|
},
|
@@ -1145,7 +1046,6 @@
|
|
1145
1046
|
"host": "whois.nic.xxx"
|
1146
1047
|
},
|
1147
1048
|
".ye": {
|
1148
|
-
"host": null,
|
1149
1049
|
"adapter": "none"
|
1150
1050
|
},
|
1151
1051
|
".yt": {
|
@@ -1164,14 +1064,12 @@
|
|
1164
1064
|
"host": "org-whois.registry.net.za"
|
1165
1065
|
},
|
1166
1066
|
".za": {
|
1167
|
-
"host": null,
|
1168
1067
|
"adapter": "none"
|
1169
1068
|
},
|
1170
1069
|
".zm": {
|
1171
1070
|
"host": "whois.nic.zm"
|
1172
1071
|
},
|
1173
1072
|
".zw": {
|
1174
|
-
"host": null,
|
1175
1073
|
"adapter": "none"
|
1176
1074
|
},
|
1177
1075
|
|
@@ -1230,6 +1128,9 @@
|
|
1230
1128
|
".social": {
|
1231
1129
|
"host": "whois.unitedtld.com"
|
1232
1130
|
},
|
1131
|
+
".protection": {
|
1132
|
+
"host": "whois.centralnic.com"
|
1133
|
+
},
|
1233
1134
|
".ink": {
|
1234
1135
|
"host": "whois.nic.ink"
|
1235
1136
|
},
|
@@ -1239,15 +1140,18 @@
|
|
1239
1140
|
".security": {
|
1240
1141
|
"host": "whois.nic.security"
|
1241
1142
|
},
|
1242
|
-
".protection": {
|
1243
|
-
"host": "whois.centralnic.com"
|
1244
|
-
},
|
1245
1143
|
".stc": {
|
1246
1144
|
"host": "whois.centralnic.com"
|
1247
1145
|
},
|
1248
1146
|
".stcgroup": {
|
1249
1147
|
"host": "whois.centralnic.com"
|
1250
1148
|
},
|
1149
|
+
".xyz": {
|
1150
|
+
"host": "whois.nic.xyz"
|
1151
|
+
},
|
1152
|
+
".space": {
|
1153
|
+
"host": "whois.nic.space"
|
1154
|
+
},
|
1251
1155
|
".viva": {
|
1252
1156
|
"host": "whois.centralnic.com"
|
1253
1157
|
},
|
@@ -1860,9 +1764,27 @@
|
|
1860
1764
|
".xn--fjq720a": {
|
1861
1765
|
"host": "whois.donuts.co"
|
1862
1766
|
},
|
1767
|
+
".audi": {
|
1768
|
+
"host": "whois.afilias-srs.net"
|
1769
|
+
},
|
1770
|
+
".travelers": {
|
1771
|
+
"host": "whois.afilias-srs.net"
|
1772
|
+
},
|
1773
|
+
".bugatti": {
|
1774
|
+
"host": "whois.afilias-srs.net"
|
1775
|
+
},
|
1776
|
+
".lamborghini": {
|
1777
|
+
"host": "whois.afilias-srs.net"
|
1778
|
+
},
|
1779
|
+
".boehringer": {
|
1780
|
+
"host": "whois.afilias-srs.net"
|
1781
|
+
},
|
1863
1782
|
".beats": {
|
1864
1783
|
"host": "whois.afilias-srs.net"
|
1865
1784
|
},
|
1785
|
+
".creditunion": {
|
1786
|
+
"host": "whois.afilias-srs.net"
|
1787
|
+
},
|
1866
1788
|
".apple": {
|
1867
1789
|
"host": "whois.afilias-srs.net"
|
1868
1790
|
},
|
@@ -2022,6 +1944,9 @@
|
|
2022
1944
|
".hermes": {
|
2023
1945
|
"host": "whois.afilias-srs.net"
|
2024
1946
|
},
|
1947
|
+
".buy": {
|
1948
|
+
"host": "whois.afilias-srs.net"
|
1949
|
+
},
|
2025
1950
|
".temasek": {
|
2026
1951
|
"host": "whois.afilias-srs.net"
|
2027
1952
|
},
|
@@ -2151,6 +2076,9 @@
|
|
2151
2076
|
".melbourne": {
|
2152
2077
|
"host": "whois.aridnrs.net.au"
|
2153
2078
|
},
|
2079
|
+
".physio": {
|
2080
|
+
"host": "whois.nic.physio"
|
2081
|
+
},
|
2154
2082
|
".krd": {
|
2155
2083
|
"host": "whois.aridnrs.net.au"
|
2156
2084
|
},
|
@@ -2385,6 +2313,27 @@
|
|
2385
2313
|
".kddi": {
|
2386
2314
|
"host": "whois.nic.kddi"
|
2387
2315
|
},
|
2316
|
+
".fairwinds": {
|
2317
|
+
"host": "whois.nic.fairwinds"
|
2318
|
+
},
|
2319
|
+
".verisign": {
|
2320
|
+
"host": "whois.nic.verisign"
|
2321
|
+
},
|
2322
|
+
".insurance": {
|
2323
|
+
"host": "whois.nic.insurance"
|
2324
|
+
},
|
2325
|
+
".med": {
|
2326
|
+
"host": "whois.nic.med"
|
2327
|
+
},
|
2328
|
+
".norton": {
|
2329
|
+
"host": "whois.nic.norton"
|
2330
|
+
},
|
2331
|
+
".symantec": {
|
2332
|
+
"host": "whois.nic.symantec"
|
2333
|
+
},
|
2334
|
+
".tab": {
|
2335
|
+
"host": "whois.nic.tab"
|
2336
|
+
},
|
2388
2337
|
".lotte": {
|
2389
2338
|
"host": "whois.nic.lotte"
|
2390
2339
|
},
|
@@ -2403,9 +2352,24 @@
|
|
2403
2352
|
".mtpc": {
|
2404
2353
|
"host": "whois.nic.gmo"
|
2405
2354
|
},
|
2355
|
+
".sharp": {
|
2356
|
+
"host": "whois.nic.gmo"
|
2357
|
+
},
|
2406
2358
|
".nissan": {
|
2407
2359
|
"host": "whois.nic.gmo"
|
2408
2360
|
},
|
2361
|
+
".shia": {
|
2362
|
+
"host": "whois.agitsys.net"
|
2363
|
+
},
|
2364
|
+
".tci": {
|
2365
|
+
"host": "whois.agitsys.net"
|
2366
|
+
},
|
2367
|
+
".nowruz": {
|
2368
|
+
"host": "whois.agitsys.net"
|
2369
|
+
},
|
2370
|
+
".vip": {
|
2371
|
+
"host": "whois-dub.mm-registry.com"
|
2372
|
+
},
|
2409
2373
|
".surf": {
|
2410
2374
|
"host": "whois-dub.mm-registry.com"
|
2411
2375
|
},
|
@@ -2478,6 +2442,9 @@
|
|
2478
2442
|
".gop": {
|
2479
2443
|
"host": "whois-cl01.mm-registry.com"
|
2480
2444
|
},
|
2445
|
+
".broadway": {
|
2446
|
+
"host": "whois-cl01.mm-registry.com"
|
2447
|
+
},
|
2481
2448
|
".bradesco": {
|
2482
2449
|
"host": "whois-cl01.mm-registry.com"
|
2483
2450
|
},
|
@@ -2547,6 +2514,9 @@
|
|
2547
2514
|
".xn--nqv7fs00ema": {
|
2548
2515
|
"host": "whois.publicinterestregistry.net"
|
2549
2516
|
},
|
2517
|
+
".bostik": {
|
2518
|
+
"host": "whois-bostik.nic.fr"
|
2519
|
+
},
|
2550
2520
|
".frogans": {
|
2551
2521
|
"host": "whois-frogans.nic.fr"
|
2552
2522
|
},
|
@@ -2703,6 +2673,15 @@
|
|
2703
2673
|
".java": {
|
2704
2674
|
"host": "whois.nic.java"
|
2705
2675
|
},
|
2676
|
+
".comsec": {
|
2677
|
+
"host": "whois.nic.comsec"
|
2678
|
+
},
|
2679
|
+
".vana": {
|
2680
|
+
"host": "whois.nic.vana"
|
2681
|
+
},
|
2682
|
+
".lifestyle": {
|
2683
|
+
"host": "whois.nic.lifestyle"
|
2684
|
+
},
|
2706
2685
|
".oracle": {
|
2707
2686
|
"host": "whois.nic.oracle"
|
2708
2687
|
},
|
@@ -2730,6 +2709,9 @@
|
|
2730
2709
|
".spreadbetting": {
|
2731
2710
|
"host": "whois.nic.spreadbetting"
|
2732
2711
|
},
|
2712
|
+
".cityeats": {
|
2713
|
+
"host": "whois.nic.cityeats"
|
2714
|
+
},
|
2733
2715
|
".trading": {
|
2734
2716
|
"host": "whois.nic.trading"
|
2735
2717
|
},
|
@@ -2844,9 +2826,6 @@
|
|
2844
2826
|
".versicherung": {
|
2845
2827
|
"host": "whois.nic.versicherung"
|
2846
2828
|
},
|
2847
|
-
".space": {
|
2848
|
-
"host": "whois.nic.space"
|
2849
|
-
},
|
2850
2829
|
".website": {
|
2851
2830
|
"host": "whois.nic.website"
|
2852
2831
|
},
|
@@ -2865,9 +2844,6 @@
|
|
2865
2844
|
".brussels": {
|
2866
2845
|
"host": "whois.nic.brussels"
|
2867
2846
|
},
|
2868
|
-
".physio": {
|
2869
|
-
"host": "whois.nic.physio"
|
2870
|
-
},
|
2871
2847
|
".ceo": {
|
2872
2848
|
"host": "whois.nic.ceo"
|
2873
2849
|
},
|
@@ -2949,9 +2925,6 @@
|
|
2949
2925
|
".sky": {
|
2950
2926
|
"host": "whois.nic.sky"
|
2951
2927
|
},
|
2952
|
-
".xyz": {
|
2953
|
-
"host": "whois.nic.xyz"
|
2954
|
-
},
|
2955
2928
|
".quebec": {
|
2956
2929
|
"host": "whois.nic.quebec"
|
2957
2930
|
},
|
@@ -2967,6 +2940,9 @@
|
|
2967
2940
|
".kyoto": {
|
2968
2941
|
"host": "whois.nic.kyoto"
|
2969
2942
|
},
|
2943
|
+
".one": {
|
2944
|
+
"host": "whois.nic.one"
|
2945
|
+
},
|
2970
2946
|
".eurovision": {
|
2971
2947
|
"host": "whois.nic.eurovision"
|
2972
2948
|
},
|
@@ -3255,6 +3231,69 @@
|
|
3255
3231
|
".aaa": {
|
3256
3232
|
"adapter": "none"
|
3257
3233
|
},
|
3234
|
+
".smile": {
|
3235
|
+
"adapter": "none"
|
3236
|
+
},
|
3237
|
+
".got": {
|
3238
|
+
"adapter": "none"
|
3239
|
+
},
|
3240
|
+
".salon": {
|
3241
|
+
"adapter": "none"
|
3242
|
+
},
|
3243
|
+
".safe": {
|
3244
|
+
"adapter": "none"
|
3245
|
+
},
|
3246
|
+
".room": {
|
3247
|
+
"adapter": "none"
|
3248
|
+
},
|
3249
|
+
".read": {
|
3250
|
+
"adapter": "none"
|
3251
|
+
},
|
3252
|
+
".zero": {
|
3253
|
+
"adapter": "none"
|
3254
|
+
},
|
3255
|
+
".pin": {
|
3256
|
+
"adapter": "none"
|
3257
|
+
},
|
3258
|
+
".like": {
|
3259
|
+
"adapter": "none"
|
3260
|
+
},
|
3261
|
+
".joy": {
|
3262
|
+
"adapter": "none"
|
3263
|
+
},
|
3264
|
+
".jot": {
|
3265
|
+
"adapter": "none"
|
3266
|
+
},
|
3267
|
+
".call": {
|
3268
|
+
"adapter": "none"
|
3269
|
+
},
|
3270
|
+
".fast": {
|
3271
|
+
"adapter": "none"
|
3272
|
+
},
|
3273
|
+
".cirle": {
|
3274
|
+
"adapter": "none"
|
3275
|
+
},
|
3276
|
+
".firestone": {
|
3277
|
+
"adapter": "none"
|
3278
|
+
},
|
3279
|
+
".author": {
|
3280
|
+
"adapter": "none"
|
3281
|
+
},
|
3282
|
+
".book": {
|
3283
|
+
"adapter": "none"
|
3284
|
+
},
|
3285
|
+
".bot": {
|
3286
|
+
"adapter": "none"
|
3287
|
+
},
|
3288
|
+
".sfr": {
|
3289
|
+
"adapter": "none"
|
3290
|
+
},
|
3291
|
+
".grainger": {
|
3292
|
+
"adapter": "none"
|
3293
|
+
},
|
3294
|
+
".rocher": {
|
3295
|
+
"adapter": "none"
|
3296
|
+
},
|
3258
3297
|
".moi": {
|
3259
3298
|
"adapter": "none"
|
3260
3299
|
},
|