-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.go
1098 lines (916 loc) · 29.7 KB
/
client.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Package viewdns contains a viewdns.info API client.
package viewdns
import (
"context"
"encoding/json"
"fmt"
"io"
"net/http"
"net/url"
"strconv"
"time"
)
const defaultBaseURL = "https://api.viewdns.info"
// Client is a ViewDNS API client.
type Client struct {
apiKey string
baseURL *url.URL
HTTPClient *http.Client
}
// NewClient creates a new Client.
func NewClient(apiKey string) *Client {
baseURL, _ := url.Parse(defaultBaseURL)
return &Client{
apiKey: apiKey,
baseURL: baseURL,
HTTPClient: &http.Client{Timeout: 5 * time.Second},
}
}
// AbuseLookup Used to find the abuse contact address for a domain name.
// This is where you would send complaints about spam originating from that domain.
//
// URL:
//
// https://api.viewdns.info/abuselookup/
//
// Parameters
// - `domain` - the domain name to find the abuse contact for
// - `output` - the output format required ('xml' or 'json')
// - `apikey` - your api key
//
// GET https://api.viewdns.info/abuselookup/?domain=twitter.com&apikey=yourapikey&output=output_type
func (c Client) AbuseLookup(ctx context.Context, domain string) (string, error) {
endpoint := c.baseURL.JoinPath("abuselookup")
query := endpoint.Query()
query.Set("domain", domain)
query.Set("apikey", c.apiKey)
query.Set("output", "json")
endpoint.RawQuery = query.Encode()
req, err := http.NewRequestWithContext(ctx, http.MethodGet, endpoint.String(), http.NoBody)
if err != nil {
return "", err
}
resp, err := c.HTTPClient.Do(req)
if err != nil {
return "", err
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
data, _ := io.ReadAll(resp.Body)
return "", fmt.Errorf("%d: %s", resp.StatusCode, string(data))
}
var apiResp AbuseLookupResponse
err = json.NewDecoder(resp.Body).Decode(&apiResp)
if err != nil {
return "", err
}
return apiResp.Response.Abusecontact, nil
}
// ChineseFirewall Checks whether a site is blocked by the Great Firewall of China.
//
// This test checks across a number of servers from various locations in mainland China
// to determine if access to the site provided is possible from behind the Great Firewall of China.
//
// This test checks for symptoms of DNS poisoning, one of the more common methods used by the Chinese government to block access to websites.
//
// URL:
//
// https://api.viewdns.info/chinesefirewall/
//
// Parameters:
// - `domain` - the domain name to test
// - `output` - the output format required ('xml' or 'json')
// - `apikey` - your api key
//
// GET https://api.viewdns.info/chinesefirewall/?domain=test.com&apikey=yourapikey&output=output_type
func (c Client) ChineseFirewall(ctx context.Context, domain string) (*ChineseFirewall, error) {
endpoint := c.baseURL.JoinPath("chinesefirewall")
query := endpoint.Query()
query.Set("domain", domain)
query.Set("apikey", c.apiKey)
query.Set("output", "json")
endpoint.RawQuery = query.Encode()
req, err := http.NewRequestWithContext(ctx, http.MethodGet, endpoint.String(), http.NoBody)
if err != nil {
return nil, err
}
resp, err := c.HTTPClient.Do(req)
if err != nil {
return nil, err
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
data, _ := io.ReadAll(resp.Body)
return nil, fmt.Errorf("%d: %s", resp.StatusCode, string(data))
}
var apiResp ChineseFirewallResponse
err = json.NewDecoder(resp.Body).Decode(&apiResp)
if err != nil {
return nil, err
}
return &apiResp.Response, nil
}
// DNSPropagationChecker Check whether recent changes to DNS entries have propagated to DNS servers all over the world.
//
// Useful in troubleshooting DNS issues that appear to be isolated to one geographic region.
// Provides a status report on DNS propagation globally.
//
// URL:
//
// https://api.viewdns.info/propagation/
//
// Parameters:
// - `domain` - the domain name to test
// - `output` - the output format required ('xml' or 'json')
// - `apikey` - your api key
//
// GET https://api.viewdns.info/propagation/?domain=test.com&apikey=yourapikey&output=output_type
func (c Client) DNSPropagationChecker(ctx context.Context, domain string) ([]Server, error) {
endpoint := c.baseURL.JoinPath("propagation")
query := endpoint.Query()
query.Set("domain", domain)
query.Set("apikey", c.apiKey)
query.Set("output", "json")
endpoint.RawQuery = query.Encode()
req, err := http.NewRequestWithContext(ctx, http.MethodGet, endpoint.String(), http.NoBody)
if err != nil {
return nil, err
}
resp, err := c.HTTPClient.Do(req)
if err != nil {
return nil, err
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
data, _ := io.ReadAll(resp.Body)
return nil, fmt.Errorf("%d: %s", resp.StatusCode, string(data))
}
var apiResp DNSPropagationCheckerResponse
err = json.NewDecoder(resp.Body).Decode(&apiResp)
if err != nil {
return nil, err
}
return apiResp.Response.Servers, nil
}
// DNSRecordLookup View all configured DNS records (A, MX, CNAME etc.) for a specified domain name.
//
// URL:
//
// https://api.viewdns.info/dnsrecord/
//
// Parameters:
// - `domain` - the domain name to lookup DNS records for
// - `recordtype` - the type of DNS record you wish to retrieve (default 'ANY')
// - `output` - the output format required ('xml' or 'json')
// - `apikey` - your api key
//
// GET https://api.viewdns.info/dnsrecord/?domain=twitter.com&recordtype=A&apikey=yourapikey&output=output_type
func (c Client) DNSRecordLookup(ctx context.Context, domain, recordType string) ([]DNSRecord, error) {
endpoint := c.baseURL.JoinPath("dnsrecord")
query := endpoint.Query()
query.Set("domain", domain)
query.Set("recordtype", recordType)
query.Set("apikey", c.apiKey)
query.Set("output", "json")
endpoint.RawQuery = query.Encode()
req, err := http.NewRequestWithContext(ctx, http.MethodGet, endpoint.String(), http.NoBody)
if err != nil {
return nil, err
}
resp, err := c.HTTPClient.Do(req)
if err != nil {
return nil, err
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
data, _ := io.ReadAll(resp.Body)
return nil, fmt.Errorf("%d: %s", resp.StatusCode, string(data))
}
var apiResp DNSRecordLookupResponse
err = json.NewDecoder(resp.Body).Decode(&apiResp)
if err != nil {
return nil, err
}
return apiResp.Response.Records, nil
}
// Whois Domain / IP Whois.
//
// Displays owner/contact information for a domain name. Can also be used to determine if a domain name is registered or not.
//
// Note:
//
// This tool is not available to free API key users.
// Access is restricted to paid API keys only.
//
// URL:
//
// https://api.viewdns.info/whois/
//
// Parameters:
// - `domain` - the domain or ip to perform a whois lookup on
// - `output` - the output format required ('xml' or 'json')
// - `apikey` - your api key
//
// GET https://api.viewdns.info/whois/?domain=twitter.com&apikey=yourapikey&output=output_type
func (c Client) Whois(ctx context.Context, domainOrIP string) (*Whois, error) {
endpoint := c.baseURL.JoinPath("whois")
query := endpoint.Query()
query.Set("domain", domainOrIP)
query.Set("apikey", c.apiKey)
query.Set("output", "json")
endpoint.RawQuery = query.Encode()
req, err := http.NewRequestWithContext(ctx, http.MethodGet, endpoint.String(), http.NoBody)
if err != nil {
return nil, err
}
resp, err := c.HTTPClient.Do(req)
if err != nil {
return nil, err
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
data, _ := io.ReadAll(resp.Body)
return nil, fmt.Errorf("%d: %s", resp.StatusCode, string(data))
}
var apiResp WhoisResponse
err = json.NewDecoder(resp.Body).Decode(&apiResp)
if err != nil {
return nil, err
}
return &apiResp.Response, nil
}
// FreeEmailLookup Find out if a domain name provides free email addresses.
//
// Search is performed on a custom made list of thousands of known free email hosts.
//
// URL:
//
// https://api.viewdns.info/freeemail/
//
// Parameters
// - `domain` - the domain name to test for free email services
// - `output` - the output format required ('xml' or 'json')
// - `apikey` - your api key
//
// GET https://api.viewdns.info/freeemail/?domain=test.com&apikey=yourapikey&output=output_type
func (c Client) FreeEmailLookup(ctx context.Context, domain string) (string, error) {
endpoint := c.baseURL.JoinPath("freeemail")
query := endpoint.Query()
query.Set("domain", domain)
query.Set("apikey", c.apiKey)
query.Set("output", "json")
endpoint.RawQuery = query.Encode()
req, err := http.NewRequestWithContext(ctx, http.MethodGet, endpoint.String(), http.NoBody)
if err != nil {
return "", err
}
resp, err := c.HTTPClient.Do(req)
if err != nil {
return "", err
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
data, _ := io.ReadAll(resp.Body)
return "", fmt.Errorf("%d: %s", resp.StatusCode, string(data))
}
var apiResp FreeEmailLookupResponse
err = json.NewDecoder(resp.Body).Decode(&apiResp)
if err != nil {
return "", err
}
return apiResp.Response.Result, nil
}
// GetHTTPHeaders Retrieves the HTTP headers of a remote domain.
//
// Useful in determining the web server (and version) in use and much more.
//
// URL:
//
// https://api.viewdns.info/httpheaders/
//
// Parameters;
//
// - `domain` - the domain to retrieve the HTTP headers for
// - `output` - the output format required ('xml' or 'json')
// - `apikey` - your api key
//
// GET https://api.viewdns.info/httpheaders/?domain=twitter.com&apikey=yourapikey&output=output_type
func (c Client) GetHTTPHeaders(ctx context.Context, domain string) ([]Header, error) {
endpoint := c.baseURL.JoinPath("httpheaders")
query := endpoint.Query()
query.Set("domain", domain)
query.Set("apikey", c.apiKey)
query.Set("output", "json")
endpoint.RawQuery = query.Encode()
req, err := http.NewRequestWithContext(ctx, http.MethodGet, endpoint.String(), http.NoBody)
if err != nil {
return nil, err
}
resp, err := c.HTTPClient.Do(req)
if err != nil {
return nil, err
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
data, _ := io.ReadAll(resp.Body)
return nil, fmt.Errorf("%d: %s", resp.StatusCode, string(data))
}
var apiResp GetHTTPHeadersResponse
err = json.NewDecoder(resp.Body).Decode(&apiResp)
if err != nil {
return nil, err
}
return apiResp.Response.Headers, nil
}
// GooglePagerankChecker Instantly check the Google Pagerank of any domain
// without the need to install the Google toolbar or any other software.
//
// Google Pagerank is a measurement of the importance of your site obtained by looking at the importance of all sites linking to it.
//
// There is debate as to whether focusing on obtaining a higher Google Pagerank is important for Search Engine Optimisation (SEO) or not,
// but generally speaking it is agreed that the higher your sites Google Pagerank, the better.
//
// The possible values for Google Pagerank are 1-10 with 10 being the best Google Pagerank possible.
//
// URL:
//
// https://api.viewdns.info/pagerank/
//
// Parameters:
// - `domain` - the domain to check the pagerank for
// - `output` - the output format required ('xml' or 'json')
// - `apikey` - your api key
//
// GET https://api.viewdns.info/pagerank/?domain=twitter.com&apikey=yourapikey&output=output_type
func (c Client) GooglePagerankChecker(ctx context.Context, domain string) (string, error) {
endpoint := c.baseURL.JoinPath("pagerank")
query := endpoint.Query()
query.Set("domain", domain)
query.Set("apikey", c.apiKey)
query.Set("output", "json")
endpoint.RawQuery = query.Encode()
req, err := http.NewRequestWithContext(ctx, http.MethodGet, endpoint.String(), http.NoBody)
if err != nil {
return "", err
}
resp, err := c.HTTPClient.Do(req)
if err != nil {
return "", err
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
data, _ := io.ReadAll(resp.Body)
return "", fmt.Errorf("%d: %s", resp.StatusCode, string(data))
}
var apiResp GooglePagerankCheckerResponse
err = json.NewDecoder(resp.Body).Decode(&apiResp)
if err != nil {
return "", err
}
return apiResp.Response.Pagerank, nil
}
// IPHistory Shows a historical list of IP addresses a given domain name has been hosted
// on as well as where that IP address is geographically located,
// and the owner of that IP address.
//
// URL:
//
// https://api.viewdns.info/iphistory/
//
// Parameters:
// - `domain` - the domain to find historical IP addresses for
// - `output` - the output format required ('xml' or 'json')
// - `apikey` - your api key
//
// GET https://api.viewdns.info/iphistory/?domain=example.com&apikey=yourapikey&output=output_type
func (c Client) IPHistory(ctx context.Context, domain string) ([]IPRecord, error) {
endpoint := c.baseURL.JoinPath("iphistory")
query := endpoint.Query()
query.Set("domain", domain)
query.Set("apikey", c.apiKey)
query.Set("output", "json")
endpoint.RawQuery = query.Encode()
req, err := http.NewRequestWithContext(ctx, http.MethodGet, endpoint.String(), http.NoBody)
if err != nil {
return nil, err
}
resp, err := c.HTTPClient.Do(req)
if err != nil {
return nil, err
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
data, _ := io.ReadAll(resp.Body)
return nil, fmt.Errorf("%d: %s", resp.StatusCode, string(data))
}
var apiResp IPHistoryResponse
err = json.NewDecoder(resp.Body).Decode(&apiResp)
if err != nil {
return nil, err
}
return apiResp.Response.Records, nil
}
// IPLocationFinder This tool will display geographic information about a supplied IP address
// including city, country, latitude, longitude and more.
//
// URL:
//
// https://api.viewdns.info/iplocation/
//
// Parameters:
// - `ip` - the ip address to find the location of
// - `output` - the output format required ('xml' or 'json')
// - `apikey` - your api key
//
// GET https://api.viewdns.info/iplocation/?ip=11.11.11.11&apikey=yourapikey&output=output_type
func (c Client) IPLocationFinder(ctx context.Context, ip string) (*IPLocation, error) {
endpoint := c.baseURL.JoinPath("iplocation")
query := endpoint.Query()
query.Set("ip", ip)
query.Set("apikey", c.apiKey)
query.Set("output", "json")
endpoint.RawQuery = query.Encode()
req, err := http.NewRequestWithContext(ctx, http.MethodGet, endpoint.String(), http.NoBody)
if err != nil {
return nil, err
}
resp, err := c.HTTPClient.Do(req)
if err != nil {
return nil, err
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
data, _ := io.ReadAll(resp.Body)
return nil, fmt.Errorf("%d: %s", resp.StatusCode, string(data))
}
var apiResp IPLocationFinderResponse
err = json.NewDecoder(resp.Body).Decode(&apiResp)
if err != nil {
return nil, err
}
return &apiResp.Response, nil
}
// IranFirewall Test if any website is accessible using the Internet in Iran in real-time.
//
// URL:
//
// https://api.viewdns.info/iranfirewall/
//
// Parameters
// - `siteurl` - the URL to test
// - `output` - the output format required ('xml' or 'json')
// - `apikey` - your api key
//
// GET https://api.viewdns.info/iranfirewall/?siteurl=http://www.test.com&apikey=yourapikey&output=output_type
func (c Client) IranFirewall(ctx context.Context, site string) (string, error) {
endpoint := c.baseURL.JoinPath("iranfirewall")
query := endpoint.Query()
query.Set("siteurl", site)
query.Set("apikey", c.apiKey)
query.Set("output", "json")
endpoint.RawQuery = query.Encode()
req, err := http.NewRequestWithContext(ctx, http.MethodGet, endpoint.String(), http.NoBody)
if err != nil {
return "", err
}
resp, err := c.HTTPClient.Do(req)
if err != nil {
return "", err
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
data, _ := io.ReadAll(resp.Body)
return "", fmt.Errorf("%d: %s", resp.StatusCode, string(data))
}
var apiResp IranFirewallResponse
err = json.NewDecoder(resp.Body).Decode(&apiResp)
if err != nil {
return "", err
}
return apiResp.Response.Result, nil
}
// MACAddressLookup This tool will display the name of the company that manufactured a specific network device based on its MAC Address.
//
// URL:
//
// https://api.viewdns.info/maclookup/
//
// Parameters:
// - `mac` - the MAC address to lookup
// - `output` - the output format required ('xml' or 'json')
// - `apikey` - your api key
//
// GET https://api.viewdns.info/maclookup/?mac=00-05-02-34-56-78&apikey=yourapikey&output=output_type
func (c Client) MACAddressLookup(ctx context.Context, mac string) (string, error) {
endpoint := c.baseURL.JoinPath("maclookup")
query := endpoint.Query()
query.Set("mac", mac)
query.Set("apikey", c.apiKey)
query.Set("output", "json")
endpoint.RawQuery = query.Encode()
req, err := http.NewRequestWithContext(ctx, http.MethodGet, endpoint.String(), http.NoBody)
if err != nil {
return "", err
}
resp, err := c.HTTPClient.Do(req)
if err != nil {
return "", err
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
data, _ := io.ReadAll(resp.Body)
return "", fmt.Errorf("%d: %s", resp.StatusCode, string(data))
}
var apiResp MACAddressLookupResponse
err = json.NewDecoder(resp.Body).Decode(&apiResp)
if err != nil {
return "", err
}
return apiResp.Response.Manufacturer, nil
}
// Ping Test how long a response from remote system takes to reach the ViewDNS server.
//
// Useful for detecting latency issues on network connections.
//
// URL:
// https://api.viewdns.info/ping/
//
// Parameters:
// - `host` - the domain or IP address to perform a ping on
// - `output` - the output format required ('xml' or 'json')
// - `apikey` - your api key
//
// GET https://api.viewdns.info/ping/?host=twitter.com&apikey=yourapikey&output=output_type
func (c Client) Ping(ctx context.Context, host string) ([]Reply, error) {
endpoint := c.baseURL.JoinPath("ping")
query := endpoint.Query()
query.Set("host", host)
query.Set("apikey", c.apiKey)
query.Set("output", "json")
endpoint.RawQuery = query.Encode()
req, err := http.NewRequestWithContext(ctx, http.MethodGet, endpoint.String(), http.NoBody)
if err != nil {
return nil, err
}
resp, err := c.HTTPClient.Do(req)
if err != nil {
return nil, err
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
data, _ := io.ReadAll(resp.Body)
return nil, fmt.Errorf("%d: %s", resp.StatusCode, string(data))
}
var apiResp PingResponse
err = json.NewDecoder(resp.Body).Decode(&apiResp)
if err != nil {
return nil, err
}
return apiResp.Response.Replies, nil
}
// PortScanner This web based port scanner will test whether common ports are open on a server.
//
// Useful in determining if a specific service (e.g. HTTP) is up or down on a specific server.
//
// Ports scanned are: 21, 22, 23, 25, 80, 110, 139, 143, 445, 1433, 1521, 3306 and 3389
//
// URL:
//
// https://api.viewdns.info/portscan/
//
// Parameters:
// - `host` - the host to perform the port scanner on (domain or IP address)
// - `output` - the output format required ('xml' or 'json')
// - `apikey` - your api key
//
// GET https://api.viewdns.info/portscan/?host=viewdns.info&apikey=yourapikey&output=output_type
func (c Client) PortScanner(ctx context.Context, host string) ([]Port, error) {
endpoint := c.baseURL.JoinPath("portscan")
query := endpoint.Query()
query.Set("host", host)
query.Set("apikey", c.apiKey)
query.Set("output", "json")
endpoint.RawQuery = query.Encode()
req, err := http.NewRequestWithContext(ctx, http.MethodGet, endpoint.String(), http.NoBody)
if err != nil {
return nil, err
}
resp, err := c.HTTPClient.Do(req)
if err != nil {
return nil, err
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
data, _ := io.ReadAll(resp.Body)
return nil, fmt.Errorf("%d: %s", resp.StatusCode, string(data))
}
var apiResp PortScannerResponse
err = json.NewDecoder(resp.Body).Decode(&apiResp)
if err != nil {
return nil, err
}
return apiResp.Response.Ports, nil
}
// ReverseDNSLookup Find the reverse DNS entry (PTR) for a given IP. This is generally the server or host name.
//
// URL:
//
// https://api.viewdns.info/reversedns/
//
// Parameters:
// - `ip` - the IP address to retrieve the reverse DNS record for
// - `output` - the output format required ('xml' or 'json')
// - `apikey` - your api key
//
// GET https://api.viewdns.info/reversedns/?ip=199.59.148.10&apikey=yourapikey&output=output_type
func (c Client) ReverseDNSLookup(ctx context.Context, ip string) (string, error) {
endpoint := c.baseURL.JoinPath("reversedns")
query := endpoint.Query()
query.Set("ip", ip)
query.Set("apikey", c.apiKey)
query.Set("output", "json")
endpoint.RawQuery = query.Encode()
req, err := http.NewRequestWithContext(ctx, http.MethodGet, endpoint.String(), http.NoBody)
if err != nil {
return "", err
}
resp, err := c.HTTPClient.Do(req)
if err != nil {
return "", err
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
data, _ := io.ReadAll(resp.Body)
return "", fmt.Errorf("%d: %s", resp.StatusCode, string(data))
}
var apiResp ReverseDNSLookupResponse
err = json.NewDecoder(resp.Body).Decode(&apiResp)
if err != nil {
return "", err
}
return apiResp.Response.Rdns, nil
}
// ReverseIPLookup Takes a domain or IP address and quickly shows all other domains hosted from the same server.
//
// Useful for finding phishing sites or identifying other sites on the same shared hosting server.
// By default, the first 10,000 results are returned.
//
// URL:
//
// https://api.viewdns.info/reverseip/
//
// Parameters:
// - `host` - the domain or IP address to find all hosted domains on
// - `output` - the output format required ('xml' or 'json')
// - `apikey` - your api key
// - `page` - view further pages of results (e.g. '2' to view results 10,001 to 20,000) - optional
//
// GET https://api.viewdns.info/reverseip/?host=199.59.148.10&apikey=yourapikey&output=output_type
func (c Client) ReverseIPLookup(ctx context.Context, host string, page int) (*ReverseIPLookup, error) {
endpoint := c.baseURL.JoinPath("reverseip")
query := endpoint.Query()
query.Set("host", host)
query.Set("apikey", c.apiKey)
query.Set("output", "json")
if page > 1 {
query.Set("page", strconv.Itoa(page))
}
endpoint.RawQuery = query.Encode()
req, err := http.NewRequestWithContext(ctx, http.MethodGet, endpoint.String(), http.NoBody)
if err != nil {
return nil, err
}
resp, err := c.HTTPClient.Do(req)
if err != nil {
return nil, err
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
data, _ := io.ReadAll(resp.Body)
return nil, fmt.Errorf("%d: %s", resp.StatusCode, string(data))
}
var apiResp ReverseIPLookupResponse
err = json.NewDecoder(resp.Body).Decode(&apiResp)
if err != nil {
return nil, err
}
return &apiResp.Response, nil
}
// ReverseMXLookup Takes a mail server (e.g. mail.google.com)
// and quickly shows all other domains that use the same mail server.
//
// # Useful for identifying domains that are used as email aliases
//
// URL:
//
// https://api.viewdns.info/reversemx/
//
// Parameters:
// - `mx` - the mail server to query
// - `output` - the output format required ('xml' or 'json')
// - `apikey` - your api key
// - `page` - view further pages of results (e.g. '2' to view results 10,001 to 20,000) - optional
//
// GET https://api.viewdns.info/reversemx/?mx=mail.google.com&apikey=yourapikey&output=output_type
func (c Client) ReverseMXLookup(ctx context.Context, mx string, page int) (*ReverseMXLookup, error) {
endpoint := c.baseURL.JoinPath("reversemx")
query := endpoint.Query()
query.Set("mx", mx)
query.Set("apikey", c.apiKey)
query.Set("output", "json")
if page > 1 {
query.Set("page", strconv.Itoa(page))
}
endpoint.RawQuery = query.Encode()
req, err := http.NewRequestWithContext(ctx, http.MethodGet, endpoint.String(), http.NoBody)
if err != nil {
return nil, err
}
resp, err := c.HTTPClient.Do(req)
if err != nil {
return nil, err
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
data, _ := io.ReadAll(resp.Body)
return nil, fmt.Errorf("%d: %s", resp.StatusCode, string(data))
}
var apiResp ReverseMXLookupResponse
err = json.NewDecoder(resp.Body).Decode(&apiResp)
if err != nil {
return nil, err
}
return &apiResp.Response, nil
}
// ReverseNSLookup Takes a nameserver (e.g. ns.example.com) and quickly shows all other domains that share the same nameserver.
// Useful for identifying other domains that share the same web server or hosting company.
//
// URL:
//
// https://api.viewdns.info/reversens/
//
// Parameters:
// - `ns` - the nameserver to query
// - `output` - the output format required ('xml' or 'json')
// - `apikey` - your api key
// - `page` - view further pages of results (e.g. '2' to view results 10,001 to 20,000) - optional
//
// GET https://api.viewdns.info/reversens/?ns=ns1.websitewelcome.com&apikey=yourapikey&output=output_type
func (c Client) ReverseNSLookup(ctx context.Context, ns string, page int) (*ReverseNSLookup, error) {
endpoint := c.baseURL.JoinPath("reversens")
query := endpoint.Query()
query.Set("ns", ns)
query.Set("apikey", c.apiKey)
query.Set("output", "json")
if page > 1 {
query.Set("page", strconv.Itoa(page))
}
endpoint.RawQuery = query.Encode()
req, err := http.NewRequestWithContext(ctx, http.MethodGet, endpoint.String(), http.NoBody)
if err != nil {
return nil, err
}
resp, err := c.HTTPClient.Do(req)
if err != nil {
return nil, err
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
data, _ := io.ReadAll(resp.Body)
return nil, fmt.Errorf("%d: %s", resp.StatusCode, string(data))
}
var apiResp ReverseNSLookupResponse
err = json.NewDecoder(resp.Body).Decode(&apiResp)
if err != nil {
return nil, err
}
return &apiResp.Response, nil
}
// ReverseWhoisLookup This tool will allow you to find domain names owned by an individual person or company.
//
// Simply provide the email address or name of the person or company to find other domains registered using those same details.
// Returns 1,000 results at a time.
//
// Note:
//
// This tool is not available to free API key users. Access is restricted to paid API keys only.
//
// URL:
//
// https://api.viewdns.info/reversewhois/
//
// Parameters:
// - `q` - the registrant name or email address to search for
// - `output` - the output format required ('xml' or 'json')
// - `apikey` - your api key
// - `page` - view further pages of results (e.g. '2' to view results 1,001 to 2,000) - optional
//
// GET https://api.viewdns.info/reversewhois/?q=domain@example.com&apikey=yourapikey&output=output_type
func (c Client) ReverseWhoisLookup(ctx context.Context, q string, page int) (*ReverseWhoisLookup, error) {
endpoint := c.baseURL.JoinPath("reversewhois")
query := endpoint.Query()
query.Set("q", q)
query.Set("apikey", c.apiKey)
query.Set("output", "json")
if page > 1 {
query.Set("page", strconv.Itoa(page))
}
endpoint.RawQuery = query.Encode()
req, err := http.NewRequestWithContext(ctx, http.MethodGet, endpoint.String(), http.NoBody)
if err != nil {
return nil, err
}
resp, err := c.HTTPClient.Do(req)
if err != nil {
return nil, err
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
data, _ := io.ReadAll(resp.Body)
return nil, fmt.Errorf("%d: %s", resp.StatusCode, string(data))
}
var apiResp ReverseWhoisLookupResponse
err = json.NewDecoder(resp.Body).Decode(&apiResp)
if err != nil {
return nil, err