forked from matomo-org/device-detector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bots.yml
3222 lines (2769 loc) · 74.7 KB
/
bots.yml
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
###############
# Device Detector - The Universal Device Detection library for parsing User Agents
#
# @link https://matomo.org
# @license http://www.gnu.org/licenses/lgpl.html LGPL v3 or later
###############
- regex: 'monitoring360bot'
name: '360 Monitoring'
category: 'Site Monitor'
url: 'https://www.360monitoring.io'
producer:
name: 'Plesk International GmbH'
url: 'https://www.plesk.com'
- regex: '360Spider'
name: '360Spider'
category: 'Search bot'
url: 'https://www.so.com/help/help_3_2.html'
producer:
name: 'Online Media Group, Inc.'
url: ''
- regex: 'Aboundex'
name: 'Aboundexbot'
category: 'Search bot'
url: 'http://www.aboundex.com/crawler/'
producer:
name: 'Aboundex.com'
url: 'http://www.aboundex.com'
- regex: 'AcoonBot'
name: 'Acoon'
category: 'Search bot'
url: 'http://www.acoon.de/robot.asp'
producer:
name: 'Acoon GmbH'
url: 'http://www.acoon.de'
- regex: 'AddThis\.com'
name: 'AddThis.com'
category: 'Social Media Agent'
url: ''
producer:
name: 'Clearspring Technologies, Inc.'
url: 'http://www.clearspring.com'
- regex: 'AhrefsBot'
name: 'aHrefs Bot'
category: 'Crawler'
url: 'https://ahrefs.com/robot'
producer:
name: 'Ahrefs Pte Ltd'
url: 'https://ahrefs.com/robot'
- regex: 'AhrefsSiteAudit/([\d+.]+)'
name: 'AhrefsSiteAudit'
category: 'Site Monitor'
url: 'https://ahrefs.com/robot/site-audit'
producer:
name: 'Ahrefs Pte Ltd'
url: 'https://ahrefs.com/'
- regex: 'ia_archiver|alexabot|verifybot'
name: 'Alexa Crawler'
category: 'Search bot'
url: 'https://support.alexa.com/hc/en-us/sections/200100794-Crawlers'
producer:
name: 'Alexa Internet'
url: 'https://www.alexa.com'
- regex: 'alexa site audit'
name: 'Alexa Site Audit'
category: 'Site Monitor'
url: 'https://support.alexa.com/hc/en-us/articles/200450194'
producer:
name: 'Alexa Internet'
url: 'https://www.alexa.com'
- regex: 'Amazonbot'
name: 'Amazon Bot'
category: 'Crawler'
url: 'https://developer.amazon.com/support/amazonbot'
producer:
name: 'Amazon.com, Inc.'
url: 'https://www.amazon.com/'
- regex: 'Amazon[ -]Route ?53[ -]Health[ -]Check[ -]Service'
name: 'Amazon Route53 Health Check'
category: 'Service Agent'
producer:
name: 'Amazon Web Services'
url: 'https://aws.amazon.com/'
- regex: 'AmorankSpider'
name: 'Amorank Spider'
category: 'Crawler'
url: 'http://amorank.com/webcrawler.html'
producer:
name: 'Amorank'
url: 'http://www.amorank.com'
- regex: 'ApacheBench'
name: 'ApacheBench'
category: 'Benchmark'
url: 'https://httpd.apache.org/docs/2.4/programs/ab.html'
producer:
name: 'The Apache Software Foundation'
url: 'https://www.apache.org/foundation/'
- regex: 'Applebot'
name: 'Applebot'
category: 'Crawler'
url: 'https://support.apple.com/en-us/HT204683'
producer:
name: 'Apple Inc'
url: 'https://www.apple.com'
- regex: 'AppSignalBot'
name: 'AppSignalBot'
category: 'Site Monitor'
url: 'https://docs.appsignal.com/uptime-monitoring/'
producer:
name: 'AppSignal'
url: 'https://appsignal.com/'
- regex: 'Arachni'
name: 'Arachni'
category: 'Security Checker'
url: 'https://www.arachni-scanner.com/'
producer:
name: 'Sarosys LLC'
url: 'https://www.sarosys.com/'
- regex: 'AspiegelBot'
name: 'AspiegelBot'
category: 'Crawler'
url: 'https://aspiegel.com/'
producer:
name: 'Huawei'
url: 'https://www.huawei.com/'
- regex: 'Castro 2, Episode Duration Lookup'
name: 'Castro 2'
category: 'Service Agent'
url: 'http://supertop.co/castro/'
producer:
name: 'Supertop'
url: 'http://supertop.co'
- regex: 'Curious George'
name: 'Analytics SEO Crawler'
category: 'Crawler'
url: 'http://www.analyticsseo.com/crawler'
producer:
name: 'Analytics SEO'
url: 'http://www.analyticsseo.com'
- regex: 'archive\.org_bot|special_archiver'
name: 'archive.org bot'
category: 'Crawler'
url: 'https://archive.org/details/archive.org_bot'
producer:
name: 'The Internet Archive'
url: 'https://archive.org'
- regex: 'Ask Jeeves/Teoma'
name: 'Ask Jeeves'
category: 'Search bot'
url: ''
producer:
name: 'Ask Jeeves Inc.'
url: 'http://www.ask.com'
- regex: 'Backlink-Check\.de'
name: 'Backlink-Check.de'
category: 'Crawler'
url: 'http://www.backlink-check.de/bot.html'
producer:
name: 'Mediagreen Medienservice'
url: 'http://www.backlink-check.de'
- regex: 'BacklinkCrawler'
name: 'BacklinkCrawler'
category: 'Crawler'
url: 'http://www.backlinktest.com/crawler.html'
producer:
name: '2.0Promotion GbR'
url: 'http://www.backlinktest.com'
- regex: 'Baidu.*spider|baidu Transcoder'
name: 'Baidu Spider'
category: 'Search bot'
url: 'http://www.baidu.com/search/spider.htm'
producer:
name: 'Baidu'
url: 'http://www.baidu.com'
- regex: 'BazQux'
name: 'BazQux Reader'
url: 'https://bazqux.com/fetcher'
category: 'Feed Fetcher'
producer:
name: ''
url: ''
- regex: 'Better Uptime Bot'
name: 'Better Uptime Bot'
category: 'Site Monitor'
url: 'https://betteruptime.com/faq'
producer:
name: 'Better Uptime'
url: 'https://betteruptime.com/'
- regex: 'MSNBot|msrbot|bingbot|BingPreview|msnbot-(UDiscovery|NewsBlogs)|adidxbot'
name: 'BingBot'
category: 'Search bot'
url: 'http://search.msn.com/msnbot.htmn'
producer:
name: 'Microsoft Corporation'
url: 'http://www.microsoft.com'
- regex: 'Blekkobot'
name: 'Blekkobot'
category: 'Search bot'
url: 'http://blekko.com/about/blekkobot'
producer:
name: 'Blekko'
url: 'http://blekko.com'
- regex: 'BLEXBot'
name: 'BLEXBot Crawler'
category: 'Crawler'
url: 'http://webmeup-crawler.com'
producer:
name: 'WebMeUp'
url: 'http://webmeup.com'
- regex: 'Bloglovin'
name: 'Bloglovin'
url: 'http://www.bloglovin.com'
category: 'Feed Fetcher'
producer:
name: ''
url: ''
- regex: 'Blogtrottr'
name: 'Blogtrottr'
url: ''
category: 'Feed Fetcher'
producer:
name: 'Blogtrottr Ltd'
url: 'https://blogtrottr.com/'
- regex: 'BoardReader Blog Indexer'
name: 'BoardReader Blog Indexer'
category: 'Crawler'
producer:
name: 'BoardReader'
url: 'https://boardreader.com/'
- regex: 'BountiiBot'
name: 'Bountii Bot'
category: 'Search bot'
url: 'http://bountii.com/contact.php'
producer:
name: 'Bountii Inc.'
url: 'http://bountii.com'
- regex: 'Browsershots'
name: 'Browsershots'
category: 'Service Agent'
url: 'http://browsershots.org/faq'
producer:
name: 'Browsershots.org'
url: 'http://browsershots.org'
- regex: 'BUbiNG'
name: 'BUbiNG'
category: 'Crawler'
url: 'http://law.di.unimi.it/BUbiNG.html'
producer:
name: 'The Laboratory for Web Algorithmics (LAW)'
url: 'http://law.di.unimi.it/software.php#buging'
- regex: '(?<!HTC)[ _]Butterfly/'
name: 'Butterfly Robot'
category: 'Search bot'
url: 'http://labs.topsy.com/butterfly'
producer:
name: 'Topsy Labs'
url: 'http://labs.topsy.com'
- regex: 'CareerBot'
name: 'CareerBot'
category: 'Crawler'
url: 'http://www.career-x.de/bot.html'
producer:
name: 'career-x GmbH'
url: 'http://www.career-x.de'
- regex: 'CCBot'
name: 'ccBot crawler'
category: 'Crawler'
url: 'http://commoncrawl.org/faq/'
producer:
name: 'reddit inc.'
url: 'http://www.reddit.com'
- regex: 'Cliqzbot'
name: 'Cliqzbot'
category: 'Crawler'
url: 'http://cliqz.com/company/cliqzbot'
producer:
name: '10betterpages GmbH'
url: 'http://cliqz.com'
- regex: 'Cloudflare-AMP'
name: 'CloudFlare AMP Fetcher'
category: 'Crawler'
url: 'https://amp.cloudflare.com/doc/fetcher.html'
producer:
name: 'CloudFlare'
url: 'http://www.cloudflare.com'
- regex: 'CloudflareDiagnostics'
name: 'Cloudflare Diagnostics'
category: 'Site Monitor'
url: 'https://www.cloudflare.com/'
producer:
name: 'Cloudflare'
url: 'https://www.cloudflare.com'
- regex: 'CloudFlare-AlwaysOnline'
name: 'CloudFlare Always Online'
category: 'Site Monitor'
url: 'http://www.cloudflare.com/always-online'
producer:
name: 'CloudFlare'
url: 'http://www.cloudflare.com'
- regex: 'coccoc.com'
name: 'Cốc Cốc Bot'
url: 'https://help.coccoc.com/en/search-engine/coccoc-robots'
category: 'Search bot'
producer:
name: 'Cốc Cốc'
url: 'https://coccoc.com/'
- regex: 'collectd'
name: 'Collectd'
url: 'https://collectd.org/'
category: 'Site Monitor'
producer:
name: 'Collectd'
url: 'https://collectd.org/'
- regex: 'CommaFeed'
name: 'CommaFeed'
url: 'http://www.commafeed.com'
category: 'Feed Fetcher'
producer:
name: ''
url: ''
- regex: 'CSS Certificate Spider'
name: 'CSS Certificate Spider'
category: 'Crawler'
url: 'http://www.css-security.com/certificatespider/'
producer:
name: 'Certified Security Solutions'
url: 'https://www.css-security.com/company/about-us/'
- regex: 'Datadog Agent|Datadog/?Synthetics'
name: 'Datadog Agent'
url: 'https://github.com/DataDog/dd-agent'
category: 'Site Monitor'
producer:
name: 'Datadog'
url: 'https://www.datadoghq.com/'
- regex: 'Datanyze'
name: 'Datanyze'
url: ''
category: 'Crawler'
producer:
name: 'Datanyze'
url: 'https://www.datanyze.com'
- regex: 'Dataprovider'
name: 'Dataprovider'
category: 'Crawler'
url: ''
producer:
name: 'Dataprovider B.V.'
url: 'https://www.dataprovider.com/'
- regex: 'Daum(oa)?[ /][0-9]'
name: 'Daum'
category: 'Search bot'
url: 'http://tab.search.daum.net/aboutWebSearch_en.html'
producer:
name: 'Daum Communications Corp.'
url: 'http://www.kakaocorp.com/main'
- regex: 'Dazoobot'
name: 'Dazoobot'
category: 'Search bot'
url: ''
producer:
name: 'DAZOO.FR'
url: 'http://dazoo.fr'
- regex: 'discobot'
name: 'Discobot'
category: 'Search bot'
url: 'http://discoveryengine.com/discobot.html'
producer:
name: 'Discovery Engine'
url: 'http://discoveryengine.com'
- regex: 'Domain Re-Animator Bot|[email protected]'
name: 'Domain Re-Animator Bot'
category: 'Crawler'
url: ''
producer:
name: 'Domain Re-Animator, LLC'
url: 'http://domainreanimator.com'
- regex: 'DotBot'
name: 'DotBot'
category: 'Crawler'
url: 'http://www.opensiteexplorer.org/dotbot'
producer:
name: 'SEOmoz, Inc.'
url: 'http://moz.com/'
- regex: 'DuckDuck(?:Go-Favicons-)?Bot'
name: 'DuckDuckGo Bot'
category: 'Search bot'
url: 'https://duckduckgo.com/duckduckbot'
producer:
name: 'DuckDuckGo'
url: 'https://duckduckgo.com/'
- regex: 'EasouSpider'
name: 'Easou Spider'
category: 'Search bot'
url: 'http://www.easou.com/search/spider.html'
producer:
name: 'easou ICP'
url: 'http://www.easou.com'
- regex: 'eCairn-Grabber'
name: 'eCairn-Grabber'
category: 'Crawler'
producer:
name: 'eCairn'
url: 'https://ecairn.com'
- regex: 'EMail Exractor'
name: 'EMail Exractor'
category: 'Crawler'
url: ''
producer:
name: ''
url: ''
- regex: 'evc-batch'
name: 'evc-batch'
category: 'Crawler'
url: ''
producer:
name: 'eVenture Capital Partners II, LLC'
url: 'http://www.eventures.vc/'
- regex: 'Exabot|ExaleadCloudview'
name: 'ExaBot'
category: 'Crawler'
url: 'http://www.exabot.com/go/robot'
producer:
name: 'Dassault Systèmes'
url: 'http://www.3ds.com'
- regex: 'ExactSeek Crawler'
name: 'ExactSeek Crawler'
category: 'Search bot'
url: 'http://www.exactseek.com'
producer:
name: 'Jayde Online, Inc.'
url: 'http://www.jaydeonlineinc.com'
- regex: 'Ezooms'
name: 'Ezooms'
category: 'Crawler'
url: ''
producer:
name: 'SEOmoz, Inc.'
url: 'http://moz.com/'
- regex: 'facebookexternalhit|facebookplatform|facebookexternalua|facebookcatalog'
name: 'Facebook External Hit'
category: 'Social Media Agent'
url: 'https://www.facebook.com/externalhit_uatext.php'
producer:
name: 'Facebook'
url: 'http://www.facebook.com'
- regex: 'Feedbin'
name: 'Feedbin'
url: 'http://feedbin.com/'
category: 'Feed Fetcher'
producer:
name: ''
url: ''
- regex: 'FeedBurner'
name: 'FeedBurner'
url: 'http://www.feedburner.com'
category: 'Feed Fetcher'
producer:
name: ''
url: ''
- regex: 'Feed Wrangler'
name: 'Feed Wrangler'
url: 'https://feedwrangler.net/'
category: 'Feed Fetcher'
producer:
name: 'David Smith & Developing Perspective, LLC'
url: 'https://david-smith.org'
- regex: 'Feedly'
name: 'Feedly'
url: 'http://www.feedly.com'
category: 'Feed Fetcher'
producer:
name: ''
url: ''
- regex: 'Feedspot'
name: 'Feedspot'
url: 'http://www.feedspot.com'
category: 'Feed Fetcher'
producer:
name: ''
url: ''
- regex: 'Fever/[0-9]'
name: 'Fever'
url: 'http://feedafever.com/'
category: 'Feed Fetcher'
producer:
name: ''
url: ''
- regex: 'FlipboardProxy|FlipboardRSS'
name: 'Flipboard'
url: 'http://flipboard.com/browserproxy'
category: 'Feed Fetcher'
producer:
name: 'Flipboard'
url: 'http://flipboard.com/'
- regex: 'Findxbot'
name: 'Findxbot'
category: 'Crawler'
url: 'http://www.findxbot.com'
- regex: 'FreshRSS'
name: 'FreshRSS'
category: 'Feed Fetcher'
url: 'https://freshrss.org/'
- regex: 'Genieo'
name: 'Genieo Web filter'
category: ''
url: 'http://www.genieo.com/webfilter.html'
producer:
name: 'Genieo'
url: 'http://www.genieo.com'
- regex: 'GigablastOpenSource'
name: 'Gigablast'
category: 'Search bot'
url: 'https://github.com/gigablast/open-source-search-engine'
producer:
name: 'Matt Wells'
url: 'http://www.gigablast.com/faq.html'
- regex: 'Gluten Free Crawler'
name: 'Gluten Free Crawler'
category: 'Crawler'
url: 'http://glutenfreepleasure.com/'
producer:
name: ''
url: ''
- regex: 'gobuster'
name: 'Gobuster'
url: 'https://github.com/OJ/gobuster'
- regex: 'ichiro/mobile goo'
name: 'Goo'
category: 'Search bot'
url: 'http://search.goo.ne.jp/option/use/sub4/sub4-1'
producer:
name: 'NTT Resonant'
url: 'http://goo.ne.jp'
- regex: 'Storebot-Google'
name: 'Google StoreBot'
category: 'Crawler'
- regex: 'Google Favicon'
name: 'Google Favicon'
category: 'Crawler'
- regex: 'Google Search Console'
name: 'Google Search Console'
category: 'Crawler'
url: 'https://search.google.com/search-console/about'
producer:
name: 'Google Inc.'
url: 'http://www.google.com'
- regex: 'Google Page Speed Insights'
name: 'Google PageSpeed Insights'
category: 'Site Monitor'
url: 'http://developers.google.com/speed/pagespeed/insights/'
producer:
name: 'Google Inc.'
url: 'http://www.google.com'
- regex: 'google_partner_monitoring'
name: 'Google Partner Monitoring'
category: 'Site Monitor'
url: ''
producer:
name: 'Google Inc.'
url: 'http://www.google.com'
- regex: 'Google-Cloud-Scheduler'
name: 'Google Cloud Scheduler'
category: 'Crawler'
url: 'https://cloud.google.com/scheduler'
producer:
name: 'Google Inc.'
url: 'https://www.google.com'
- regex: 'Google-Structured-Data-Testing-Tool'
name: 'Google Structured Data Testing Tool'
category: 'Validator'
url: 'https://search.google.com/structured-data/testing-tool'
producer:
name: 'Google Inc.'
url: 'http://www.google.com'
- regex: 'GoogleStackdriverMonitoring'
name: 'Google Stackdriver Monitoring'
category: 'Site Monitor'
url: 'https://cloud.google.com/monitoring'
producer:
name: 'Google Inc.'
url: 'https://www.google.com'
- regex: 'via ggpht\.com GoogleImageProxy'
name: 'Gmail Image Proxy'
category: 'Crawler'
url: ''
producer:
name: 'Google Inc.'
url: 'http://www.google.com'
- regex: 'SeznamEmailProxy'
name: 'Seznam Email Proxy'
category: 'Crawler'
url: ''
producer:
name: 'Seznam.cz, a.s.'
url: 'http://www.seznam.cz/'
- regex: 'Seznam-Zbozi-robot'
name: 'Seznam Zbozi.cz'
category: 'Crawler'
url: ''
producer:
name: 'Seznam.cz, a.s.'
url: 'https://www.zbozi.cz/'
- regex: 'Heurekabot-Feed'
name: 'Heureka Feed'
category: 'Crawler'
url: 'https://sluzby.heureka.cz/napoveda/heurekabot/'
producer:
name: 'Heureka.cz, a.s.'
url: 'https://www.heureka.cz/'
- regex: 'ShopAlike'
name: 'ShopAlike'
category: 'Crawler'
url: ''
producer:
name: 'Visual Meta'
url: 'https://www.shopalike.cz/'
- regex: 'AdsBot-Google|Adwords-(DisplayAds|Express|Instant)|Google Web Preview|Google[ -]Publisher[ -]Plugin|Google-(Ads-Conversions|Ads-Qualify|Adwords|AMPHTML|Assess|HotelAdsVerifier|Read-Aloud|Shopping-Quality|Site-Verification|speakr|Stale-Content-Probe|Test|Youtube-Links)|(APIs|DuplexWeb|Feedfetcher|Mediapartners)-Google|Googlebot|Google(?:AdSenseInfeed|AssociationService|Producer)|Google.*/\+/web/snippet'
name: 'Googlebot'
category: 'Search bot'
url: 'http://www.google.com/bot.html'
producer:
name: 'Google Inc.'
url: 'http://www.google.com'
- regex: 'heritrix'
name: 'Heritrix'
category: 'Crawler'
url: 'https://webarchive.jira.com/wiki/display/Heritrix/Heritrix'
producer:
name: 'The Internet Archive'
url: 'https://archive.org'
- regex: 'HubSpot '
name: 'HubSpot'
category: 'Crawler'
producer:
name: 'HubSpot Inc.'
url: 'https://www.hubspot.com'
- regex: 'HTTPMon'
name: 'HTTPMon'
category: 'Site Monitor'
url: 'http://www.httpmon.com'
producer:
name: 'towards GmbH'
url: 'http://www.towards.ch/'
- regex: 'ICC-Crawler'
name: 'ICC-Crawler'
category: 'Crawler'
url: 'http://www.nict.go.jp/en/univ-com/plan/crawl.html'
producer:
name: ''
url: ''
- regex: 'inoreader.com'
name: 'inoreader'
category: 'Feed Reader'
url: 'https://www.inoreader.com'
- regex: 'iisbot'
name: 'IIS Site Analysis'
category: 'Crawler'
url: 'http://www.iis.net/iisbot.html'
producer:
name: 'Microsoft Corporation'
url: 'http://www.microsoft.com'
- regex: 'ips-agent'
name: 'IPS Agent'
category: 'Crawler'
producer:
name: 'VeriSign, Inc'
url: 'http://www.verisign.com/'
- regex: 'IP-Guide\.com'
name: 'IP-Guide Crawler'
category: 'Crawler'
url: ''
producer:
name: ''
url: 'https://ip-guide.com'
- regex: 'k6/[0-9\.]+'
name: 'K6'
url: 'https://k6.io/'
- regex: 'kouio'
name: 'Kouio'
url: 'http://kouio.com/'
category: 'Feed Fetcher'
producer:
name: ''
url: ''
- regex: 'larbin'
name: 'Larbin web crawler'
category: 'Crawler'
url: 'http://larbin.sourceforge.net'
producer:
name: ''
url: ''
- regex: '([A-z0-9]*)-Lighthouse'
name: 'Lighthouse'
category: 'Site Monitor'
url: 'https://developers.google.com/web/tools/lighthouse'
producer:
name: 'Lighthouse'
url: 'https://developers.google.com/web/tools/lighthouse'
- regex: 'last-modified\.com'
name: 'LastMod Bot'
category: 'Site Monitor'
url: 'https://last-modified.com/en/about'
producer:
name: ''
url: 'https://last-modified.com/en'
- regex: 'linkdexbot|linkdex\.com'
name: 'Linkdex Bot'
category: 'Search bot'
url: 'http://www.linkdex.com/bots'
producer:
name: 'Mojeek Ltd.'
url: 'http://www.mojeek.com'
- regex: 'LinkedInBot'
name: 'LinkedIn Bot'
category: 'Social Media Agent'
url: 'http://www.linkedin.com'
producer:
name: 'LinkedIn'
url: 'http://www.linkedin.com'
- regex: 'ltx71'
name: 'LTX71'
url: 'http://ltx71.com/'
producer:
name: ''
url: ''
- regex: 'Mail\.RU'
name: 'Mail.Ru Bot'
category: 'Search bot'
url: 'http://help.mail.ru/webmaster/indexing/robots/types_robots'
producer:
name: 'Mail.Ru Group'
url: 'http://corp.mail.ru'
- regex: 'magpie-crawler'
name: 'Magpie-Crawler'
category: 'Social Media Agent'
url: 'http://www.brandwatch.com/magpie-crawler/'
producer:
name: 'Brandwatch'
url: 'http://www.brandwatch.com'
- regex: 'MagpieRSS'
name: 'MagpieRSS'
url: 'http://magpierss.sourceforge.net/'
category: 'Feed Parser'
producer:
name: ''
url: ''
- regex: 'masscan-ng/([\d+.]+)'
name: 'masscan-ng'
url: 'https://github.com/bi-zone/masscan-ng'
category: 'Crawler'
producer:
name: 'BIZON, OOO'
url: 'https://bi.zone/'
- regex: 'masscan'
name: 'masscan'
url: 'https://github.com/robertdavidgraham/masscan'
category: 'Crawler'
producer:
name: 'Robert Graham'
url: 'https://github.com/robertdavidgraham'
- regex: 'Mastodon/'
name: 'Mastodon Bot'
category: 'Social Media Agent'
- regex: 'meanpathbot'
name: 'Meanpath Bot'
category: 'Search bot'
url: 'http://www.meanpath.com/meanpathbot.html'
producer:
name: 'Meanpath'
url: 'http://www.meanpath.com'
- regex: 'MetaJobBot'
name: 'MetaJobBot'
category: 'Crawler'
url: 'http://www.metajob.at/the/crawler'
producer:
name: 'MetaJob'
url: 'http://www.metajob.at'
- regex: 'MetaInspector'
name: 'MetaInspector'
category: 'Crawler'
url: 'https://github.com/jaimeiniesta/metainspector'
- regex: 'MixrankBot'
name: 'Mixrank Bot'
category: 'Crawler'
url: 'http://mixrank.com'
producer:
name: 'Online Media Group, Inc.'
url: ''
- regex: 'MJ12bot'
name: 'MJ12 Bot'
category: 'Search bot'
url: 'http://majestic12.co.uk/bot.php'
producer:
name: 'Majestic-12'
url: 'http://majestic12.co.uk'
- regex: 'Mnogosearch'
name: 'Mnogosearch'
category: 'Search bot'
url: 'http://www.mnogosearch.org/'
producer:
name: 'Lavtech.Com Corp.'
url: ''
- regex: 'MojeekBot'
name: 'MojeekBot'
category: 'Search bot'
url: 'http://www.mojeek.com/bot.html'
producer:
name: 'Mojeek Ltd.'
url: 'http://www.mojeek.com'
- regex: 'munin'
name: 'Munin'
category: 'Site Monitor'
url: 'http://munin-monitoring.org/'
producer:
name: 'Munin'
url: 'http://munin-monitoring.org/'
- regex: 'NalezenCzBot'
name: 'NalezenCzBot'
category: 'Crawler'
url: 'http://www.nalezen.cz/about-crawler'
producer:
name: 'Jaroslav Kuboš'
url: ''
- regex: 'check_http/v'
name: 'Nagios check_http'
category: 'Site Monitor'
url: 'https://nagios.org'
producer:
name: 'Nagios Plugins Development Team'
url: 'https://nagios.org'
- regex: 'nbertaupete95\(at\)gmail.com'
name: 'nbertaupete95'
category: 'Crawler'
- regex: 'Netcraft( Web Server Survey| SSL Server Survey|SurveyAgent)'
name: 'Netcraft Survey Bot'
category: 'Search bot'
url: ''
producer:
name: 'Netcraft'
url: 'http://www.netcraft.com'
- regex: 'netEstate NE Crawler'
name: 'netEstate'
category: 'Crawler'
url: 'http://www.website-datenbank.de/Impressum'
producer:
name: 'netEstate GmbH'
url: 'https://www.netestate.de/en/'
- regex: 'Netvibes'
name: 'Netvibes'
url: 'http://www.netvibes.com/'
category: 'Feed Fetcher'
producer:
name: ''
url: ''
- regex: 'NewsBlur .*(Fetcher|Finder)'
name: 'NewsBlur'
url: 'http://www.newsblur.com'
category: 'Feed Fetcher'
producer:
name: ''
url: ''
- regex: 'NewsGatorOnline'
name: 'NewsGator'
url: 'http://www.newsgator.com'
category: 'Feed Fetcher'
producer:
name: ''
url: ''
- regex: 'nlcrawler'
name: 'NLCrawler'
category: 'Crawler'
url: ''