forked from opawg/user-agents-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbots.json
1305 lines (1305 loc) · 36.7 KB
/
bots.json
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
{
"comments": [
"Look for User-Agent matches in this file order: 'bots', 'apps', 'libraries', 'browsers', and return the first entry matched, processing each entry in order in which they appear in the file."
],
"$schema": "https://raw.githubusercontent.com/opawg/user-agents-v2/master/schemas/patterns.schema.json",
"entries": [
{
"name": "AAABot - unknown bot",
"pattern": "AAABot",
"examples": [
"AAABot"
]
},
{
"name": "Adswizz",
"pattern": "^AIS VirtualListener",
"urls": [
"https://www.adswizz.com/publishers/insertion-suite/"
],
"examples": [
"AIS VirtualListener"
]
},
{
"name": "AhrefsBot",
"pattern": "AhrefsBot/",
"urls": [
"http://ahrefs.com/robot/"
],
"examples": [
"Mozilla/5.0 (compatible; AhrefsBot/7.0; http://ahrefs.com/robot/)",
"Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)"
]
},
{
"name": "AirableBot",
"pattern": "AirableBot-Podcast/",
"description": "An aggregator of internet radio and podcasts, for connected devices.",
"urls": [
"https://www.airablenow.com"
],
"examples": [
"AirableBot-Podcast/1.0 (+https//www.airablenow.com)",
"AirableBot-Podcast/1.0 ( https//www.airablenow.com)"
]
},
{
"name": "Alexa Flash Briefing cache",
"pattern": "^AmazonNewsContentService",
"description": "A service which downloads, caches and normalises audio for the Flash Briefing service on Alexa-enabled devices",
"svg": "amazon.svg",
"urls": [
"https://developer.amazon.com/docs/flashbriefing/flash-briefing-skill-api-feed-reference.html#performance-requirements"
],
"comments": "Stats are available within the Alexa skills dashboard."
},
{
"name": "AlignaBot",
"pattern": "^Alignabot",
"examples": [
"Alignabot 1.0 (https://www.alignable.com/)"
]
},
{
"name": "All Ears",
"pattern": "^AllEars/",
"examples": [
"AllEars/1.0; (+www.allears.ai)"
],
"urls": [
"https://allears.ai"
]
},
{
"name": "Amazon Music Podcasts Bot",
"pattern": "^Amazon Music Podcast",
"description": "A music and podcasts streaming app",
"svg": "amazon.svg",
"comments": "Backend ingestion service"
},
{
"name": "Anchor Importer",
"pattern": "AnchorImport",
"description": "Anchor's tool for importing podcasts",
"comments": "This useragent is used during a user importing a podcast to the Anchor platform",
"examples": [
"AnchorImport/1.0"
]
},
{
"name": "Apple Notes share extension",
"pattern": "^com.apple.(mobilenotes.SharingExtension|Notes.SharingExtension)/",
"examples": [
"com.apple.mobilenotes.SharingExtension/2511 CFNetwork/1494.0.7 Darwin/23.4.0",
"com.apple.Notes.SharingExtension/2812 CFNetwork/1494.0.7 Darwin/23.4.0"
]
},
{
"name": "Apple Podcasts (Watch)",
"pattern": "^atc/|\\(null\\) watchOS/",
"comments": "Verified (via stamping the audio URL with the RSS useragent) as being sourced from Apple Podcasts; and accordingly this is marked as a bot since these downloads are duplicated with the phone.",
"examples": [
"atc/1.0",
"atc/1.0 watchOS/6.2 model/Watch3,3 hwp/t8004 build/17T529 (6; dt:155)",
"atc/1.0 watchOS/6.2.8 model/Watch2,3 hwp/t8002 build/17U63 (6; dt:133)",
"atc/1.0 watchOS/6.2.8 model/Watch3,3 hwp/t8004 build/17U63 (6; dt:155)",
"atc/1.0 watchOS/6.2.8 model/Watch4,2 hwp/t8006 build/17U63 (6; dt:191)",
"atc/1.0 watchOS/7.0.2 model/Watch5,10 hwp/t8006 build/18R402 (6; dt:233)",
"atc/1.0 watchOS/7.0.2 model/Watch5,11 hwp/t8006 build/18R402 (6; dt:234)",
"atc/1.0 watchOS/7.1 model/Watch4,2 hwp/t8006 build/18R590 (6; dt:191)",
"atc/1.0 watchOS/7.1 model/Watch4,3 hwp/t8006 build/18R590 (6; dt:192)",
"atc/1.0 watchOS/7.1 model/Watch4,4 hwp/t8006 build/18R590 (6; dt:193)",
"atc/1.0 watchOS/7.1 model/Watch5,1 hwp/t8006 build/18R590 (6; dt:201)",
"atc/1.0 watchOS/7.1 model/Watch5,3 hwp/t8006 build/18R590 (6; dt:202)",
"atc/1.0 watchOS/7.1 model/Watch5,4 hwp/t8006 build/18R590 (6; dt:202)",
"(null)/(null) watchOS/5.0.1 model/Watch3,3 hwp/t8004 build/16R381 (6; dt:155)"
]
},
{
"name": "Apple Podcasts automated checks",
"pattern": "(iTMS|itunesstored|itms)"
},
{
"name": "Applebot",
"pattern": "^Applebot/",
"description": "Applebot is the web crawler for Apple. Products like Siri and Spotlight Suggestions use Applebot.",
"urls": [
"http://www.apple.com/go/applebot"
]
},
{
"name": "Archive.org",
"pattern": "archive\\.org_bot",
"description": "The Internet Archive is a nonprofit digital library that preserves web data and makes it available for research purposes through the Wayback Machine.",
"urls": [
"https://archive.org/details/archive.org_bot"
],
"examples": [
"Mozilla/5.0 (compatible; archive.org_bot http://archive.org/details/archive.org_bot)"
]
},
{
"name": "atheerfm",
"pattern": "^atheerfm/",
"examples": [
"atheerfm/1 CFNetwork/758.3.15 Darwin/15.3.0"
]
},
{
"name": "Audiomack",
"pattern": "^Audiomack Podcast Processor/",
"examples": [
"Audiomack Podcast Processor/1.0 (https://audiomack.com/)"
]
},
{
"name": "AudioWave feed parser",
"pattern": "^AudioWaveBot/1\\.0",
"urls": [
"https://audiowave.io"
],
"examples": [
"AudioWaveBot/1.0"
]
},
{
"name": "AwarioSmartBot",
"pattern": "^AwarioSmartBot/",
"examples": [
"AwarioSmartBot/1.0 (+https://awario.com/bots.html; bots@awario.com)"
]
},
{
"name": "Babbar",
"pattern": "Barkrowler/",
"urls": [
"https://beta.babbar.tech/crawler"
]
},
{
"name": "Baidu",
"pattern": "\\(ce\\.baidu\\.com",
"examples": [
"Baidu-YunGuanCe-SLABot(ce.baidu.com)"
]
},
{
"name": "bbot",
"pattern": "^bbot/",
"examples": [
"bbot/0.1"
]
},
{
"name": "Beacon Podcast Sync",
"pattern": "^Beacon/\\d",
"examples": [
"Beacon/1.0 Podcast Sync +https://getbeacons.com/"
],
"urls": [
"https://getbeacons.com/"
]
},
{
"name": "British Library",
"pattern": "^bl\\.uk_ldfc_bot",
"description": "British Library's legal deposit web crawler",
"urls": [
"http://www.bl.uk/aboutus/legaldeposit/websites/websites/faqswebmaster/index.html"
],
"examples": [
"bl.uk_ldfc_bot/3.4.0-20200518 ( http://www.bl.uk/aboutus/legaldeposit/websites/websites/faqswebmaster/index.html)"
]
},
{
"name": "Blubrry Migration Service",
"pattern": "^Blubrry Migration Service",
"examples": [
"Blubrry Migration Service"
]
},
{
"name": "Bullhorn Crawler",
"pattern": "^BullhornCrawler/",
"examples": [
"BullhornCrawler/unknown-version(+http://bullhorn.fm/)"
],
"urls": [
"https://bullhorn.fm/"
]
},
{
"name": "Buzzsprout Importer",
"pattern": "^Buzzsprout Importer",
"examples": [
"Buzzsprout Importer"
]
},
{
"name": "Bytespider.*bytedance",
"pattern": "Bytespider",
"examples": [
"Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com)"
]
},
{
"name": "CastFeedValidator",
"pattern": "^CastFeedValidator/",
"examples": [
"CastFeedValidator/3.0.5 (https://castfeedvalidator.com)"
]
},
{
"name": "Castopod",
"pattern": "Castopod/\\d",
"examples": [
"Castopod/1.0",
"Castopod/1.1.2"
]
},
{
"name": "Chartable",
"pattern": "^Trackable/",
"urls": [
"https://chartable.com/"
]
},
{
"name": "Clark-Crawler, unknown",
"pattern": "^clark-crawler2"
},
{
"name": "Claudebot",
"pattern": "ClaudeBot/",
"description": "Claude is a family of large language models developed by Anthropic and designed to revolutionize the way you interact with AI",
"urls": [
"https://docs.anthropic.com/claude/docs/intro-to-claude"
],
"examples": [
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
]
},
{
"name": "Critical Mention",
"pattern": "^Podcast-CriticalMention/",
"description": "Critical Mention is a business intelligence company, monitoring podcasts on the web for their clients",
"examples": [
"Podcast-CriticalMention/1.0"
]
},
{
"name": "curl",
"pattern": "^curl|^libcurl/|^PycURL/| curl/",
"examples": [
"libcurl/7.65.1",
"PycURL/7.43.0 libcurl/7.47.0 GnuTLS/3.4.10 zlib/1.2.8 libidn/1.32 librtmp/2.3",
"GuzzleHttp/6.1.0 curl/7.50.1 PHP/7.0.13-0ubuntu0.16.10.1"
]
},
{
"name": "DataforSEO",
"pattern": "DataForSeoBot/",
"description": "Working on the biggest available backlink database on the web that every single member of the community, including you, can use and benefit from.",
"urls": [
"https://dataforseo.com/dataforseo-bot"
],
"examples": [
"Mozilla/5.0 (compatible; DataForSeoBot/1.0; +https://dataforseo.com/dataforseo-bot)"
]
},
{
"name": "Datagnion Bot",
"pattern": "^datagnionbot"
},
{
"name": "dataprovider.com",
"pattern": "Dataprovider\\.com",
"examples": [
"Mozilla/5.0 (compatible; Dataprovider.com)"
]
},
{
"name": "Daum",
"pattern": "http://cs\\.daum\\.net",
"examples": [
"Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)"
]
},
{
"name": "Deezer Podcasters",
"pattern": "^Deezer Podcasters/1\\.0"
},
{
"name": "Digg",
"pattern": "^Digg ",
"examples": [
"Digg Mozilla/5.0 (Digg/1.0; support@digg.com)"
]
},
{
"name": "dorada",
"pattern": "support@dorada\\.co\\.uk"
},
{
"name": "DotBot",
"pattern": "DotBot",
"examples": [
"Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)",
"Mozilla/5.0 (compatible; DotBot/1.2; https://opensiteexplorer.org/dotbot; help@moz.com)"
]
},
{
"name": "Downcast Bot",
"pattern": "downcast feed consumer/",
"examples": [
"downcast feed consumer/0.0.175; (mode=dev; id=u2NgjBSPM6; downcast.fm)"
]
},
{
"name": "DuckDuckBot",
"pattern": "DuckDuckBot",
"examples": [
"Mozilla/5.0 (compatible; DuckDuckBot-Https/1.1; https://duckduckgo.com/duckduckbot)"
]
},
{
"name": "F-Secure Riddler",
"pattern": "^Riddler ",
"description": "an online research project which investigates algorithms for mapping the topology of the Internet",
"examples": [
"Riddler (http://riddler.io/about)"
]
},
{
"name": "Facebook Bot",
"pattern": "FacebookBot|f?acebookexternalhit/?|^podcastbot$|Facebot|facebookexternalua|^facebookplatform/",
"urls": [
"https://www.facebook.com/externalhit_uatext.php"
],
"comments": "The podcastbot UA appears to be part of Facebook Podcasts onboarding",
"examples": [
"facebookexternalhit/1.1 ( http://www.facebook.com/externalhit_uatext.php)",
"podcastbot",
"facebookexternalhit",
"Facebot",
"facebookexternalua",
"facebookplatform/1.0 (+http://developers.facebook.com)",
"acebookexternalhit/1.0 (+http://www.facebook.com/externalhit_uatext.php)"
]
},
{
"name": "Feedly",
"pattern": "^Feedly/",
"examples": [
"Feedly/1.0 (+http://www.feedly.com/fetcher.html; like FeedFetcher-Google)"
]
},
{
"name": "Feedspot Fetcher",
"pattern": "https://www\\.feedspot\\.com/fs/fetcher",
"description": "Feedspot Fetcher is how Feedspot fetches RSS/Atom feed when users add the feed to their Feedspot account.",
"urls": [
"https://www.feedspot.com/fs/fetcher"
],
"examples": [
"Mozilla/5.0 (compatible; Feedspot/1.0 (+https://www.feedspot.com/fs/fetcher; like FeedFetcher-Google)"
]
},
{
"name": "FlexGet",
"pattern": "^FlexGet/",
"examples": [
"FlexGet/3.3.4 (www.flexget.com)"
]
},
{
"name": "Flipboard Proxy",
"pattern": "FlipboardProxy/",
"examples": [
"Mozilla/5.0 (compatible; FlipboardProxy/1.1; +http://flipboard.com/browserproxy)"
]
},
{
"name": "Fyyd",
"pattern": "^fyyd-poll"
},
{
"name": "Go Storage Gateway V1",
"pattern": "^storagegw-v1-go$",
"comments": "Found coming from TikTok/ByteDance ASNs, along with Go Http Client.",
"examples": [
"storagegw-v1-go"
]
},
{
"name": "Goodpods Bot",
"pattern": "Goodpods/\\d+\\.\\d+",
"description": "The social podcasting app",
"svg": "goodpods.svg",
"urls": [
"https://www.goodpods.com/"
],
"comments": "RSS scraper / podcast verifier. Contact hello at goodpods dot com.",
"examples": [
"Goodpods/2.2"
]
},
{
"name": "Google Adsense Bot",
"pattern": "Mediapartners-Google",
"examples": [
"Mediapartners-Google"
],
"urls": [
"https://developers.google.com/search/docs/crawling-indexing/overview-google-crawlers"
]
},
{
"name": "Google AdsBot",
"pattern": "AdsBot-Google",
"urls": [
"http://www.google.com/adsbot.html"
]
},
{
"name": "Google Podcasts Manager",
"pattern": "Google-Podcast"
},
{
"name": "Googlebot",
"pattern": "Googlebot/|Googlebot-Video/|Googlebot-Image/|^Feedfetcher-Google|google-xrawler|^Googlebot-News|^Google-Safety$",
"description": "Google's search bots",
"urls": [
"http://www.google.com/bot.html"
],
"examples": [
"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; http://www.google.com/bot.html)",
"Googlebot-Image/1.0",
"Feedfetcher-Google; (+http://www.google.com/feedfetcher.html; 1 subscribers; feed-id=4653447469100830145)",
"google-xrawler",
"Googlebot-News Audio",
"Google-Safety"
]
},
{
"name": "Gumball",
"pattern": "^Gumball",
"description": "An attribution service (known as Gumshoe) from the Gumball network",
"examples": [
"Gumball.fm Analytics Prefix Checker"
]
},
{
"name": "Headliner",
"pattern": "^Headliner/.*\\+https://headliner\\.app$",
"comments": "Variety of tools to help promote and drive listens to a podcast.",
"examples": [
"Headliner/1.0.0 +https://headliner.app"
]
},
{
"name": "HubSpot Crawler",
"pattern": "HubSpot Crawler",
"examples": [
"Mozilla/5.0 (compatible; HubSpot Crawler; +https://www.hubspot.com)"
]
},
{
"name": "Internet Archive",
"pattern": "Archive-It;|web\\.archive\\.org",
"description": "Archive-It is a web archiving service that allows institutions to build and preserve collections of born digital content saving this content for future generations.",
"urls": [
"https://archive-it.org/files/site-owners-special.html"
],
"examples": [
"Mozilla/5.0 (compatible; special_archiver; Archive-It; http://archive-it.org/files/site-owners-special.html)",
"ia_archiver-web.archive.org"
]
},
{
"name": "iOS share menu",
"pattern": "^SharingUIService/",
"examples": [
"SharingUIService/1 CFNetwork/1467.1 Darwin/23.0.0",
"SharingUIService/1 CFNetwork/1490.0.4 Darwin/23.2.0"
],
"comments": "Found on iOS 17 e.g. when long-pressing an enclosure link from Safari and choosing Share..."
},
{
"name": "IPFS Podcasting Node",
"description": "Nodes downloading from the original source (before pinning to IPFS)",
"pattern": "^IPFS Podcasting Node/",
"examples": [
"IPFS Podcasting Node/0.6n (+https://ipfspodcasting.net)",
"IPFS Podcasting Node/0.7p,u,s (+https://ipfspodcasting.net)"
],
"urls": [
"https://ipfspodcasting.net"
]
},
{
"name": "Jaunt",
"pattern": "^Jaunt/",
"examples": [
"Jaunt/1.5"
]
},
{
"name": "l'Institut national de l'audiovisuel",
"pattern": "INA dlweb",
"urls": [
"https://institut.ina.fr/collecte-du-depot-legal-web"
],
"comments": "Institut National de l'Audiovisuel is a repository of all French radio and television audiovisual archives."
},
{
"name": "Library and Archives Canada",
"description": "The Web and Social Media Preservation Program at Library and Archives Canada (LAC) acquires Canadian web resources for the purposes of digital preservation and makes them available to the public via the Government of Canada Web Archive (GCWA) for future research.",
"pattern": "LAC_IAHarvester/",
"examples": [
"Mozilla/5.0 (compatible; LAC_IAHarvester/3.3.0; +https://library-archives.canada.ca/eng/services/government-canada/web-social-media-preservation-program/Pages/web-archive.aspx)"
],
"urls": [
"https://library-archives.canada.ca/eng/services/government-canada/web-social-media-preservation-program/Pages/web-archive.aspx"
]
},
{
"name": "Libsyn",
"pattern": "^Libsyn4",
"examples": [
"Libsyn4-Download"
]
},
{
"name": "libwww-perl",
"pattern": "^libwww-perl| libwww-perl",
"examples": [
"LWP::Simple/6.34 libwww-perl/6.34"
]
},
{
"name": "Livelap Crawler",
"pattern": "LivelapBot"
},
{
"name": "ListenNotes",
"pattern": "^ListenNotes/3\\.0 \\(",
"examples": [
"ListenNotes/3.0 (id=c1ef144e30174bf6ba1fedf9174ed908; +https://www.listennotes.com/about/)"
],
"urls": [
"https://www.listennotes.com/about/"
]
},
{
"name": "LTX71",
"pattern": "^ltx71 ",
"description": "We continuously scan the internet for security research purposes.",
"urls": [
"http://ltx71.com/"
],
"examples": [
"ltx71 - (http://ltx71.com/)"
]
},
{
"name": "MacOS share menu",
"pattern": "^ShareSheetUI/",
"examples": [
"ShareSheetUI/1 CFNetwork/1399.4 Darwin/22.1.0",
"ShareSheetUI/1 CFNetwork/1474 Darwin/23.0.0"
],
"comments": "Found on MacOS 13 (Ventura) and higher e.g. when right-clicking an enclosure link from Safari and choosing Share..."
},
{
"name": "MauiBot",
"pattern": "^MauiBot",
"examples": [
"MauiBot (crawler.feedback dc@gmail.com)"
]
},
{
"name": "Mastodon Bot",
"pattern": "rb/.*Mastodon/",
"examples": [
"http.rb/5.0.4 (Mastodon/3.5.3; +https://mastodon.xyz/) Bot"
]
},
{
"name": "Microsoft Bingbot",
"pattern": "(BingPreview/|adidxbot/|[bB]ingbot/)",
"urls": [
"https://www.bing.com/webmaster/help/which-crawlers-does-bing-use-8c184ec0"
],
"examples": [
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534 (KHTML, like Gecko) BingPreview/1.0b",
"Mozilla/5.0 (compatible; Bingbot/2.0; +http://www.bing.com/bingbot.htm)"
]
},
{
"name": "Microsoft Office",
"pattern": "ms-office; MSOffice",
"examples": [
"Mozilla/4.0 (compatible; ms-office; MSOffice 16)"
]
},
{
"name": "Mixcloud Podcast Importer",
"pattern": "^MixcloudPodcastImporter/",
"examples": [
"MixcloudPodcastImporter/2.0"
]
},
{
"name": "MJ12bot",
"pattern": ".*MJ12bot",
"examples": [
"Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)"
]
},
{
"name": "Mozilla Bot",
"pattern": "^'?Mozilla(/5\\.0(\\.\\.\\.)?)?$|^\\(Mozilla/5\\.0\\)$",
"examples": [
"Mozilla/5.0",
"Mozilla",
"Mozilla/5.0...",
"'Mozilla/5.0",
"(Mozilla/5.0)"
]
},
{
"name": "MSN Bot",
"pattern": "^msnbot/"
},
{
"name": "Neevabot",
"pattern": ".*Neevabot",
"urls": [
"https://neeva.com/neevabot"
],
"examples": [
"Mozilla/5.0 (compatible; Neevabot/1.0; https://neeva.com/neevabot)"
]
},
{
"name": "Netcraft Survey Agent",
"pattern": " NetcraftSurveyAgent/",
"examples": [
"Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)"
]
},
{
"name": "Newspaper",
"description": "News, full-text, and article metadata extraction in Python 3.",
"pattern": "^newspaper/\\d",
"examples": [
"newspaper/0.3.0"
],
"urls": [
"https://github.com/codelucas/newspaper"
]
},
{
"name": "OgScrper",
"pattern": "OgScrper",
"examples": [
"OgScrper"
]
},
{
"name": "OkDownload",
"pattern": "^OkDownload/"
},
{
"name": "OP3 Fetcher",
"pattern": "^op3-fetcher/",
"examples": [
"op3-fetcher/1.0 (https://op3.dev)"
],
"urls": [
"https://op3.dev"
]
},
{
"name": "Overcast feed parser",
"pattern": "^Overcast/1\\.0 Podcast Sync",
"comments": "Marco Arment says: when a new episode is detected, the servers fetch a copy of it to seed these values with an initial set of data to make the privacy screen more accurate.",
"examples": [
"Overcast/1.0 Podcast Sync"
]
},
{
"name": "Pandora RSS crawler",
"pattern": "^PandoraRSSCrawler"
},
{
"name": "PaperLi",
"pattern": "PaperLiBot/",
"examples": [
"Mozilla/5.0 (compatible; PaperLiBot/2.1; https://support.paper.li/entries/20023257-what-is-paper-li)"
]
},
{
"name": "PetalBot",
"pattern": "PetalBot",
"description": "PetalBot is an automatic program of the Petal search engine.",
"urls": [
"https://aspiegel.com/petalbot"
],
"examples": [
"Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot; https://aspiegel.com/petalbot)"
]
},
{
"name": "Pingdom",
"pattern": "^Pingdom"
},
{
"name": "PlayerFM Podcast Sync",
"pattern": "PlayerFM/.* Podcast Sync",
"examples": [
"PlayerFM/1.0 Podcast Sync (0 subscribers; url=https://player.fm/series/series-2567872)"
]
},
{
"name": "Podbean Importer",
"pattern": "^Podbean Importer",
"examples": [
"Podbean Importer"
]
},
{
"name": "Podcastindex.org",
"pattern": "^Podcastindex\\.org/",
"svg": "podcast-index.svg",
"urls": [
"https://podcastindex.org/"
],
"examples": [
"Podcastindex.org/v0.3.3 (Aggrivate)"
]
},
{
"name": "Podcast de facto Standard",
"description": "Dedicated to providing guidance and information on the conventions and standards used in podcasting",
"pattern": "^PodcastStandard/",
"examples": [
"PodcastStandard/0.1.0 (+https://podcast-standard.org)"
],
"urls": [
"https://podcast-standard.org/"
]
},
{
"name": "Podcast Archiver",
"pattern": "^Podcast%20Archiver/",
"urls": [
"https://www.fredrikblank.com/podcast-archiver/"
],
"examples": [
"Podcast%20Archiver/3000000003 CFNetwork/1406.0.4 Darwin/22.4.0"
]
},
{
"name": "PodCloud",
"pattern": "podCloud",
"description": "Le podcast, simplement. A French-language web-based podcast player.",
"urls": [
"https://podcloud.fr"
],
"comments": "This useragent is a bot, doing feed updates and downloading media files. It was observed every six hours. User plays will have a standard browser useragent with a referer of https://podcloud.fr/"
},
{
"name": "Podcorn",
"pattern": "Podcorn/",
"description": "The leading podcast influencer marketplace. Connecting unique voices to unique brands for native advertising.",
"urls": [
"https://podcorn.com/"
],
"examples": [
"Podcorn/1.0"
]
},
{
"name": "PodderBot",
"pattern": "PodderBot/",
"description": "PodderApp bot",
"urls": [
"https://www.podderapp.com/"
],
"comments": "PodderApp bot for RSS fetching / verification",
"examples": [
"PodderBot/1.0"
]
},
{
"name": "Podfollow",
"pattern": "podfollowbot/",
"description": "Podfollow, a service to help link to your podcast",
"urls": [
"https://podfollow.com"
],
"examples": [
"Mozilla/5.0 https://podfollow.com/crawling podfollowbot/1.0"
]
},
{
"name": "Podgrab",
"pattern": "^Podgrab$",
"description": "A self-hosted podcast manager to download episodes as soon as they become live",
"urls": [
"https://github.com/akhilrex/podgrab"
],
"examples": [
"Podgrab"
],
"comments": "Found used for automated archiving."
},
{
"name": "Podhound",
"pattern": "PodhoundBeta",
"description": "AI-powered podcast discovery",
"urls": [
"http://podhound.co"
],
"comments": "'It grabs it once to get the audio file length.', says the developer.",
"examples": [
"PodhoundBeta"
]
},
{
"name": "Podio Bot",
"pattern": "^Podio/",
"description": "Podcasts + Radio = Podio",
"urls": [
"https://podio.radio/"
],
"comments": "This useragent appears to download and cache audio",
"examples": [
"Podio/1.0"
]
},
{
"name": "Podnews",
"pattern": "PodnewsBot",
"description": "Podnews runs a number of bots to read and test RSS and audio files",
"urls": [
"http://podnews.net"
]
},
{
"name": "Podnods Bot",
"pattern": "(podnods-crawler|podnods)",
"description": "Podnods is a podcast discovery site. This user agent is for crawling podcast data.",
"urls": [
"https://podnods.com/about"
]
},
{
"name": "Podroll Analyzer",
"pattern": "^pdrl\\.fm ",
"examples": [
"pdrl.fm Analyzer / 1.0.0"
]
},
{
"name": "Podscan Bot",
"pattern": "^PodscanBot/",
"examples": [
"PodscanBot/1.1.0 Ubuntu/22.04 (Linux) +https://podscan.fm",
"PodscanBot/1.1.0 Ubuntu/22.04 (Linux) Podscan.fm"
],
"urls": [
"https://podscan.fm"
]
},
{
"name": "Podscribe",
"pattern": "(^Adswizz-podscribe/|^Podscribe/)",
"examples": [
"Adswizz-podscribe/1.0",
"Podscribe/1.1"
]
},
{
"name": "PodUptime",
"description": "Uptime Monitoring for the Podcast Industry",
"pattern": "PodUptime/\\d",
"examples": [
"Mozilla/5.0 (compatible; PodUptime/1.0; +https://poduptime.com)"
],
"urls": [
"https://poduptime.com/"
]
},
{
"name": "Podverse Feed Parser",
"pattern": "^Podverse/Feed Parser",
"description": "The Podverse feed parser.",
"urls": [
"https://podverse.fm"
],
"comments": "This service parses publicly-accessible RSS feeds on a timer, then stores parsed data in the Podverse database."
},
{
"name": "PodvineBot",
"pattern": "^PodvineBot/",
"examples": [
"PodvineBot/4.0.1 (www.podvine.com)"
]
},
{
"name": "PostRank Bot",
"pattern": "^PostRank/",
"examples": [
"PostRank/2.0 (postrank.com; 1 subscribers)"
],
"comments": "Acquired by Google, https://en.wikipedia.org/wiki/PostRank"
},
{
"name": "PodwatchPro",
"pattern": "Podwatch-Pro Crawler",
"examples": [
"Podwatch-Pro Crawler"
],
"description": "PodwatchPro is a podcast analytics software. This user agent is for crawling podcast data.",
"urls": [ "https://www.agma-mmc.de/media-analyse/ma-podcast" ]
},
{
"name": "Puppeteer",
"pattern": " HeadlessChrome/\\d",
"examples": [
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/105.0.5173.0 Safari/537.36"
],
"urls": [
"https://pptr.dev/"
]
},
{
"name": "python-requests",
"pattern": "python-requests"
},
{
"name": "Qiniu spider",
"pattern": "qiniu.*spider",
"examples": [
"z0-qiniu-imgstg-spider-1.0"
]
},
{
"name": "Radioline Stream Monitoring",
"pattern": "^Radioline Stream Monitoring",
"examples": [
"Radioline Stream Monitoring (tech@radioline.co)"
]
},
{
"name": "RedCircle",
"pattern": "RedCircle",