device_detector 1.0.1 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (95) hide show
  1. checksums.yaml +5 -5
  2. data/.rubocop.yml +49 -0
  3. data/.ruby-version +1 -0
  4. data/.travis.yml +5 -10
  5. data/CHANGELOG.md +14 -1
  6. data/README.md +6 -6
  7. data/Rakefile +20 -13
  8. data/device_detector.gemspec +1 -0
  9. data/lib/device_detector.rb +30 -26
  10. data/lib/device_detector/bot.rb +2 -2
  11. data/lib/device_detector/client.rb +3 -2
  12. data/lib/device_detector/device.rb +46 -20
  13. data/lib/device_detector/memory_cache.rb +26 -19
  14. data/lib/device_detector/metadata_extractor.rb +7 -8
  15. data/lib/device_detector/model_extractor.rb +3 -3
  16. data/lib/device_detector/name_extractor.rb +2 -2
  17. data/lib/device_detector/os.rb +121 -111
  18. data/lib/device_detector/parser.rb +22 -9
  19. data/lib/device_detector/version.rb +3 -1
  20. data/lib/device_detector/version_extractor.rb +2 -3
  21. data/regexes/bots.yml +442 -19
  22. data/regexes/client/browser_engine.yml +7 -1
  23. data/regexes/client/browsers.yml +773 -103
  24. data/regexes/client/feed_readers.yml +14 -8
  25. data/regexes/client/libraries.yml +43 -2
  26. data/regexes/client/mediaplayers.yml +21 -5
  27. data/regexes/client/mobile_apps.yml +131 -1
  28. data/regexes/client/pim.yml +6 -1
  29. data/regexes/device/cameras.yml +1 -1
  30. data/regexes/device/car_browsers.yml +7 -3
  31. data/regexes/device/consoles.yml +3 -3
  32. data/regexes/device/mobiles.yml +11365 -791
  33. data/regexes/device/notebooks.yml +114 -0
  34. data/regexes/device/portable_media_player.yml +2 -2
  35. data/regexes/device/televisions.yml +17 -3
  36. data/regexes/oss.yml +115 -47
  37. data/regexes/vendorfragments.yml +6 -2
  38. data/spec/device_detector/concrete_user_agent_spec.rb +16 -17
  39. data/spec/device_detector/detector_fixtures_spec.rb +30 -35
  40. data/spec/device_detector/device_spec.rb +28 -48
  41. data/spec/device_detector/memory_cache_spec.rb +60 -28
  42. data/spec/device_detector/model_extractor_spec.rb +3 -3
  43. data/spec/device_detector/version_extractor_spec.rb +5 -6
  44. data/spec/device_detector_spec.rb +49 -78
  45. data/spec/fixtures/client/browser.yml +1521 -406
  46. data/spec/fixtures/client/feed_reader.yml +39 -51
  47. data/spec/fixtures/client/library.yml +72 -11
  48. data/spec/fixtures/client/mediaplayer.yml +29 -40
  49. data/spec/fixtures/client/mobile_app.yml +172 -32
  50. data/spec/fixtures/client/pim.yml +32 -19
  51. data/spec/fixtures/detector/bots.yml +854 -19
  52. data/spec/fixtures/detector/camera.yml +22 -2
  53. data/spec/fixtures/detector/car_browser.yml +60 -0
  54. data/spec/fixtures/detector/console.yml +43 -3
  55. data/spec/fixtures/detector/desktop.yml +2860 -1527
  56. data/spec/fixtures/detector/feature_phone.yml +69 -1
  57. data/spec/fixtures/detector/feed_reader.yml +158 -130
  58. data/spec/fixtures/detector/mediaplayer.yml +113 -39
  59. data/spec/fixtures/detector/mobile_apps.yml +262 -89
  60. data/spec/fixtures/detector/phablet.yml +3444 -663
  61. data/spec/fixtures/detector/portable_media_player.yml +57 -0
  62. data/spec/fixtures/detector/smart_speaker.yml +55 -0
  63. data/spec/fixtures/detector/smartphone-1.yml +4739 -4765
  64. data/spec/fixtures/detector/smartphone-10.yml +9973 -0
  65. data/spec/fixtures/detector/smartphone-11.yml +10015 -0
  66. data/spec/fixtures/detector/smartphone-12.yml +9897 -0
  67. data/spec/fixtures/detector/smartphone-13.yml +9912 -0
  68. data/spec/fixtures/detector/smartphone-14.yml +9935 -0
  69. data/spec/fixtures/detector/smartphone-15.yml +6595 -0
  70. data/spec/fixtures/detector/smartphone-16.yml +10021 -0
  71. data/spec/fixtures/detector/smartphone-17.yml +9408 -0
  72. data/spec/fixtures/detector/smartphone-2.yml +4265 -4238
  73. data/spec/fixtures/detector/smartphone-3.yml +4487 -4391
  74. data/spec/fixtures/detector/smartphone-4.yml +4210 -4179
  75. data/spec/fixtures/detector/smartphone-5.yml +5794 -2901
  76. data/spec/fixtures/detector/smartphone-6.yml +10114 -0
  77. data/spec/fixtures/detector/smartphone-7.yml +9975 -0
  78. data/spec/fixtures/detector/smartphone-8.yml +9897 -0
  79. data/spec/fixtures/detector/smartphone-9.yml +9880 -0
  80. data/spec/fixtures/detector/smartphone.yml +4152 -4048
  81. data/spec/fixtures/detector/tablet-1.yml +3997 -3991
  82. data/spec/fixtures/detector/tablet-2.yml +6820 -1935
  83. data/spec/fixtures/detector/tablet-3.yml +9968 -0
  84. data/spec/fixtures/detector/tablet-4.yml +7113 -0
  85. data/spec/fixtures/detector/tablet.yml +3789 -3804
  86. data/spec/fixtures/detector/tv.yml +3889 -1495
  87. data/spec/fixtures/detector/unknown.yml +45 -179
  88. data/spec/fixtures/detector/wearable.yml +61 -0
  89. data/spec/fixtures/device/camera.yml +4 -3
  90. data/spec/fixtures/device/car_browser.yml +9 -2
  91. data/spec/fixtures/device/console.yml +15 -14
  92. data/spec/fixtures/device/notebook.yml +7 -0
  93. data/spec/fixtures/parser/oss.yml +177 -0
  94. data/spec/fixtures/parser/vendorfragments.yml +6 -0
  95. metadata +57 -7
@@ -1,110 +1,250 @@
1
- -
1
+ ---
2
+ -
2
3
  user_agent: Pulse/4.0.5 (iPhone; iOS 7.0.6; Scale/2.00)
3
4
  client:
4
5
  type: mobile app
5
6
  name: Pulse
6
7
  version: "4.0.5"
7
- -
8
+ -
8
9
  user_agent: Mozilla/5.0 (Linux; Android 4.4.4; SM-G7509 Build/KTU84P) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/33.0.0.0 Mobile Safari/537.36 MicroMessenger/6.0.2.56_r958800.520 NetType/WIFI
9
10
  client:
10
11
  type: mobile app
11
12
  name: WeChat
12
13
  version: "6.0.2.56.r958800.520"
13
14
  -
15
+ user_agent: Mozilla/5.0 (iPad; CPU OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Mobile/15D100 AliApp(DingTalk/5.1.12) com.laiwang.DingTalk/13441885 Channel/201200 Pad/iPad language/zh-Hans-CN UT4Aplus/0.0.6 WK
16
+ client:
17
+ type: mobile app
18
+ name: DingTalk
19
+ version: 5.1.12
20
+ -
14
21
  user_agent: Mozilla/5.0 (Linux; U; Android 4.0.4; en-us; ZTE U807N Build/IMM76D) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 Weibo (ZTE-ZTE U807N__weibo__5.0.0__android__android4.0.4)
15
22
  client:
16
23
  type: mobile app
17
24
  name: Sina Weibo
18
25
  version: "5.0.0"
19
- -
26
+ -
20
27
  user_agent: FeedR/1.0 (Android)
21
28
  client:
22
29
  type: mobile app
23
30
  name: FeedR
24
31
  version: "1.0"
25
- -
32
+ -
26
33
  user_agent: Pinterest/3.3.3 CFNetwork/609.1.4 Darwin/13.0.0
27
34
  client:
28
35
  type: mobile app
29
36
  name: Pinterest
30
37
  version: "3.3.3"
31
- -
38
+ -
32
39
  user_agent: Instacast/5.0a8 CFNetwork/711.1.11 Darwin/13.4.0
33
40
  client:
34
41
  type: mobile app
35
42
  name: Instacast
36
- version: 5.0a8
37
- -
43
+ version: "5.0a8"
44
+ -
38
45
  user_agent: InstacastHD/1.1.2 CFNetwork/711.0.6 Darwin/14.0.0
39
46
  client:
40
47
  type: mobile app
41
48
  name: Instacast
42
- version: 1.1.2
43
- -
49
+ version: "1.1.2"
50
+ -
44
51
  user_agent: Podcasts/2.1.2
45
52
  client:
46
53
  type: mobile app
47
54
  name: Podcasts
48
- version: 2.1.2
49
- -
55
+ version: "2.1.2"
56
+ -
50
57
  user_agent: Shifty Jelly Pocket Casts, Android v4.4.3.1
51
58
  client:
52
59
  type: mobile app
53
60
  name: Pocket Casts
54
- version: 4.4.3.1
55
- -
61
+ version: "4.4.3.1"
62
+ -
56
63
  user_agent: Pocket Casts
57
64
  client:
58
65
  type: mobile app
59
66
  name: Pocket Casts
60
- version:
61
-
62
- -
67
+ version: ""
68
+ -
63
69
  user_agent: Mozilla/5.0 (Linux; U; en-us; BeyondPod)
64
70
  client:
65
71
  type: mobile app
66
72
  name: BeyondPod
67
- version:
68
- -
73
+ version: ""
74
+ -
69
75
  user_agent: AntennaPod/0.9.9.1
70
76
  client:
71
77
  type: mobile app
72
78
  name: AntennaPod
73
- version: 0.9.9.1
74
- -
79
+ version: "0.9.9.1"
80
+ -
75
81
  user_agent: AntennaPod/
76
82
  client:
77
83
  type: mobile app
78
84
  name: AntennaPod
79
- version:
80
-
81
- -
85
+ version: ""
86
+ -
82
87
  user_agent: Overcast/1.0 (+http://overcast.fm/; iOS podcast app)
83
88
  client:
84
89
  type: mobile app
85
90
  name: Overcast
86
- version: 1.0
87
- -
91
+ version: "1.0"
92
+ -
88
93
  user_agent: Podkicker/1.9.4
89
94
  client:
90
95
  type: mobile app
91
96
  name: Podkicker
92
- version: 1.9.4
93
- -
97
+ version: "1.9.4"
98
+ -
94
99
  user_agent: Podkicker Pro/1.9.4
95
100
  client:
96
101
  type: mobile app
97
102
  name: Podkicker
98
- version: 1.9.4
99
- -
103
+ version: "1.9.4"
104
+ -
100
105
  user_agent: Castro/64 CFNetwork/672.1.15 Darwin/14.0.0
101
106
  client:
102
107
  type: mobile app
103
108
  name: Castro
104
- version: 64
105
- -
109
+ version: "64"
110
+ -
106
111
  user_agent: Mozilla/5.0 (Linux; U; Windows NT 6.1; en-us; dream) DoggCatcher
107
112
  client:
108
113
  type: mobile app
109
114
  name: DoggCatcher
110
- version:
115
+ version: ""
116
+ -
117
+ user_agent: Mozilla/5.0 (Linux; U; Android 4.2.2; ja-jp; SOL22 Build/10.3.1.D.0.257) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 YJApp-ANDROID jp.co.yahoo.android.yjtop/3.15.1
118
+ client:
119
+ type: mobile app
120
+ name: Yahoo! Japan
121
+ version: "3.15.1"
122
+ -
123
+ user_agent: RSSRadio/9220 (iPad;iOS;12.3.1)
124
+ client:
125
+ type: mobile app
126
+ name: RSSRadio
127
+ version: "9220"
128
+ -
129
+ user_agent: RSSRadio/9252
130
+ client:
131
+ type: mobile app
132
+ name: RSSRadio
133
+ version: "9252"
134
+ -
135
+ user_agent: RSSRadio/
136
+ client:
137
+ type: mobile app
138
+ name: RSSRadio
139
+ version: ""
140
+ -
141
+ user_agent: Mozilla/5.0 (Linux; Android 7.0; JMM-AL00 Build/HONORJMM-AL00; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/62.0.3202.84 Mobile Safari/537.36 SogouSearch Android1.0 version3.0 AppVersion/6002
142
+ client:
143
+ type: mobile app
144
+ name: SogouSearch App
145
+ version: "3.0"
146
+ -
147
+ user_agent: Dalvik/2.1.0 (Linux; U; Android 6.0.1; MI 4LTE MIUI/V7.3.2.0.MXDCNDD) NewsArticle/5.1.3
148
+ client:
149
+ type: mobile app
150
+ name: NewsArticle App
151
+ version: "5.1.3"
152
+ -
153
+ user_agent: Mozilla/5.0 (Linux; Android 5.1; m2 note) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/33.0.0.0 Mobile Safari/537.36 baidubrowser/5.3.4.0 (Baidu; P1 4.3.1) tieba/6.7.2 BMW
154
+ client:
155
+ type: mobile app
156
+ name: tieba
157
+ version: "6.7.2"
158
+ -
159
+ user_agent: com.douban.group/2.2.0(220) Mozilla/5.0 (Linux; U; Android 4.1.1; zh-cn; MI 2A Build/JRO03L) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30
160
+ client:
161
+ type: mobile app
162
+ name: douban App
163
+ version: "2.2.0"
164
+ -
165
+ user_agent: Mozilla/5.0 (Linux; Android 7.0; VIE-L09 Build/HUAWEIVIE-L09; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/59.0.3071.125 Mobile Safari/537.36 BingWeb/6.9.25207603
166
+ client:
167
+ type: mobile app
168
+ name: BingWebApp
169
+ version: "6.9.25207603"
170
+ -
171
+ user_agent: Mozilla/5.0 (Linux; U; Android 4.1.2; fr-ca; LT30a Build/9.1.A.0.489) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 GSA/3.3.11.1069658.arm
172
+ client:
173
+ type: mobile app
174
+ name: Google Search App
175
+ version: "3.3.11.1069658"
176
+ -
177
+ user_agent: Mozilla/5.0 (Linux; U; Android 2.3.4; ru-ru; WT19i Build/4.0.2.A.0.58) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 Flipboard/2.1.2/854,2.1.2.854,2013-12-05 11:59, +0300
178
+ client:
179
+ type: mobile app
180
+ name: Flipboard App
181
+ version: "2.1.2"
182
+ -
183
+ user_agent: Mozilla/5.0 (Linux; Android 6.0.1; ASUS_Z011D Build/MMB29P; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/67.0.3396.87 Mobile Safari/537.36 Instagram 53.0.0.13.84 Android (23/6.0.1; 480dpi; 1080x1920; asus; ASUS_Z011D; ASUS_Z011; qcom; fr_FR; 116756948)
184
+ client:
185
+ type: mobile app
186
+ name: Instagram App
187
+ version: "53.0.0.13.84"
188
+ -
189
+ user_agent: TCL J706T_TD/1.0 Linux/3.4.5 Android/4.1.2 Release/08.27.2013 Browser/AppleWebKit534.30 Profile/MIDP-2.0 Configuration/CLDC-1.1 baiduboxapp/4.2 (Baidu; P1 4.1.2)
190
+ client:
191
+ type: mobile app
192
+ name: Baidu Box App
193
+ version: "4.2"
194
+ -
195
+ user_agent: Mozilla/5.0 (Linux; Android 4.4.4; GT-I9195I Build/KTU84P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.130 Crosswalk/14.43.343.17 Mobile Safari/537.36
196
+ client:
197
+ type: mobile app
198
+ name: CrosswalkApp
199
+ version: "14.43.343.17"
200
+ -
201
+ user_agent: Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.2.10 (KHTML, like Gecko) Mobile/15A372 Twitter for iPhone/7.52
202
+ client:
203
+ type: mobile app
204
+ name: Twitter
205
+ version: "7.52"
206
+ -
207
+ user_agent: Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Mobile/11A465 Twitter for iPhone
208
+ client:
209
+ type: mobile app
210
+ name: Twitter
211
+ version: ""
212
+ -
213
+ user_agent: Mozilla/5.0 (Linux; Android 5.1; HTC Desire 628 Build/LMY47D; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/78.0.3904.108 Mobile Safari/537.36 JsSdk/2 TopBuzz/10.2.1 NetType/3G
214
+ client:
215
+ type: mobile app
216
+ name: TopBuzz
217
+ version: 10.2.1
218
+ -
219
+ user_agent: Mozilla/5.0 (iPhone; CPU iPhone OS 13_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.5 Mobile/15E148 Snapchat/10.77.0.54 (like Safari/604.1)
220
+ client:
221
+ type: mobile app
222
+ name: Snapchat
223
+ version: 10.77.0.54
224
+
225
+ -
226
+ user_agent: Siri/1 CFNetwork/1128.0.1 Darwin/19.6.0
227
+ client:
228
+ type: mobile app
229
+ name: Siri
230
+ version: "1.0"
231
+
232
+ -
233
+ user_agent: LinkedIn/9.7.1681 CFNetwork/808.1.4 Darwin/16.1.0
234
+ client:
235
+ type: mobile app
236
+ name: LinkedIn
237
+ version: "9.7.1681"
238
+
239
+ -
240
+ user_agent: Twitter/7.57 CFNetwork/978.0.7 Darwin/18.7.0
241
+ client:
242
+ type: mobile app
243
+ name: Twitter
244
+ version: "7.57"
245
+ -
246
+ user_agent: Mozilla/5.0 (Linux; Android 9; SM-G950F Build/PPR1.180610.011; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/80.0.3987.117 Mobile Safari/537.36 TwitterAndroid
247
+ client:
248
+ type: mobile app
249
+ name: Twitter
250
+ version: ""
@@ -1,102 +1,115 @@
1
- -
1
+ ---
2
+ -
2
3
  user_agent: Outlook-Express/7.0 (MSIE 7.0; Windows NT 6.1; WOW64; Trident/6.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; AskTbORJ/5.15.9.29495; .NET4.0E; TmstmpExt)
3
4
  client:
4
5
  type: pim
5
6
  name: Outlook Express
6
7
  version: "7.0"
7
- -
8
+ -
8
9
  user_agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Win64; x64; Trident/7.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; InfoPath.3; .NET CLR 1.1.4322; FDM; Tablet PC 2.0; .NET4.0E; Microsoft Outlook 14.0.7113; ms-office; MSOffice 14)
9
10
  client:
10
11
  type: pim
11
12
  name: Microsoft Outlook
12
13
  version: "14.0.7113"
13
- -
14
+ -
14
15
  user_agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130330 Thunderbird/17.0.5
15
16
  client:
16
17
  type: pim
17
18
  name: Thunderbird
18
19
  version: "17.0.5"
19
- -
20
+ -
20
21
  user_agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 Lightning/2.6.4
21
22
  client:
22
23
  type: pim
23
24
  name: Thunderbird
24
25
  version: "24.4.0"
25
- -
26
+ -
26
27
  user_agent: Airmail 1.4 rv:238 (Macintosh; Mac OS X 10.9.2; hr_HR)
27
28
  client:
28
29
  type: pim
29
30
  name: Airmail
30
31
  version: "1.4"
31
- -
32
+ -
32
33
  user_agent: Airmail 1.3.3 rv:237 (Macintosh; Mac OS X 10.9.2; en_US)
33
34
  client:
34
35
  type: pim
35
36
  name: Airmail
36
37
  version: "1.3.3"
37
- -
38
+ -
38
39
  user_agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Icedove/24.4.0
39
40
  client:
40
41
  type: pim
41
42
  name: Thunderbird
42
43
  version: "24.4.0"
43
- -
44
+ -
44
45
  user_agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Icedove/24.4.0 Lightning/2.6.5
45
46
  client:
46
47
  type: pim
47
48
  name: Thunderbird
48
49
  version: "24.4.0"
49
- -
50
+ -
50
51
  user_agent: Mozilla/4.0 (compatible; Lotus-Notes/6.0; Windows-NT)
51
52
  client:
52
53
  type: pim
53
54
  name: Lotus Notes
54
55
  version: "6.0"
55
- -
56
+ -
56
57
  user_agent: Barca/2.8.4400
57
58
  client:
58
59
  type: pim
59
60
  name: Barca
60
61
  version: "2.8.4400"
61
- -
62
+ -
62
63
  user_agent: BarcaPro/1.4 L.1001
63
64
  client:
64
65
  type: pim
65
66
  name: Barca
66
67
  version: "1.4"
67
- -
68
+ -
68
69
  user_agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.1.8) Gecko/20100317 Postbox/1.1.3
69
70
  client:
70
71
  type: pim
71
72
  name: Postbox
72
73
  version: "1.1.3"
73
- -
74
+ -
74
75
  user_agent: Postbox 1.0b14 (Windows/2009072715)
75
76
  client:
76
77
  type: pim
77
78
  name: Postbox
78
79
  version: "1.0"
79
- -
80
+ -
80
81
  user_agent: MailBar/1.3.2 (Mac OS X Version 10.11.1 (Build 15B42))
81
82
  client:
82
83
  type: pim
83
84
  name: MailBar
84
- version: 1.3.2
85
- -
85
+ version: "1.3.2"
86
+ -
86
87
  user_agent: The Bat! 4.0.0.22
87
88
  client:
88
89
  type: pim
89
90
  name: The Bat!
90
91
  version: "4.0.0.22"
91
- -
92
+ -
92
93
  user_agent: The Bat! Voyager 4.0.18.4
93
94
  client:
94
95
  type: pim
95
96
  name: The Bat!
96
97
  version: "4.0.18.4"
97
- -
98
+ -
98
99
  user_agent: DAVdroid/1.6.2-ose (2017/06/23; dav4android; okhttp3) Android/7.0
99
100
  client:
100
101
  type: pim
101
102
  name: DAVdroid
102
- version: "1.6.2"
103
+ version: "1.6.2"
104
+ -
105
+ user_agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.12) Gecko/20130823 Firefox/10.0.11esrpre Iceape/2.7.12
106
+ client:
107
+ type: pim
108
+ name: SeaMonkey
109
+ version: "2.7.12"
110
+ -
111
+ user_agent: Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0 SeaMonkey/2.26a1 Lightning/3.1a1
112
+ client:
113
+ type: pim
114
+ name: SeaMonkey
115
+ version: "2.26"
@@ -75,6 +75,31 @@
75
75
  producer:
76
76
  name: Alexa Internet
77
77
  url: http://www.alexa.com
78
+ -
79
+ user_agent: Mozilla/5.0 (compatible; alexa site audit/1.0; http://www.alexa.com/help/webmasters; )
80
+ bot:
81
+ name: Alexa Site Audit
82
+ category: Site Monitor
83
+ url: http://www.alexa.com/help/webmasters
84
+ producer:
85
+ name: Alexa Internet
86
+ url: http://www.alexa.com
87
+ -
88
+ user_agent: Amazon Route 53 Health Check Service; ref:xxxxxxxx-xxxx-xxxxxxxxx-xxxxxxxxxxxx; report http://amzn.to/xxxxxxx
89
+ bot:
90
+ name: Amazon Route53 Health Check
91
+ category: Service Agent
92
+ producer:
93
+ name: Amazon Web Services
94
+ url: https://aws.amazon.com/
95
+ -
96
+ user_agent: Amazon-Route53-Health-Check-Service (ref b0eb04d5-cb5e-40e7-839b-558e52fc3f0d; report http://amzn.to/1vsZADi)
97
+ bot:
98
+ name: Amazon Route53 Health Check
99
+ category: Service Agent
100
+ producer:
101
+ name: Amazon Web Services
102
+ url: https://aws.amazon.com/
78
103
  -
79
104
  user_agent: AmorankSpider/0.1; +http://amorank.com/webcrawler.html
80
105
  bot:
@@ -120,6 +145,15 @@
120
145
  producer:
121
146
  name: Apple Inc
122
147
  url: http://www.apple.com
148
+ -
149
+ user_agent: Arachni/v1.5.1
150
+ bot:
151
+ name: Arachni
152
+ category: Security Checker
153
+ url: http://www.arachni-scanner.com
154
+ producer:
155
+ name: Sarosys LLC
156
+ url: http://www.sarosys.com/
123
157
  -
124
158
  user_agent: Mozilla/2.0 (compatible; Ask Jeeves/Teoma)
125
159
  bot:
@@ -129,6 +163,42 @@
129
163
  producer:
130
164
  name: Ask Jeeves Inc.
131
165
  url: http://www.ask.com
166
+ -
167
+ user_agent: Mozilla/5.0 (compatible;AspiegelBot)
168
+ bot:
169
+ name: AspiegelBot
170
+ category: Crawler
171
+ url: https://aspiegel.com/
172
+ producer:
173
+ name: Huawei
174
+ url: https://www.huawei.com/
175
+ -
176
+ user_agent: Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)
177
+ bot:
178
+ name: AspiegelBot
179
+ category: Crawler
180
+ url: https://aspiegel.com/
181
+ producer:
182
+ name: Huawei
183
+ url: https://www.huawei.com/
184
+ -
185
+ user_agent: AwarioRssBot/1.0 (+https://awario.com/bots.html; bots@awario.com)
186
+ bot:
187
+ name: Awario
188
+ category: Feed Fetcher
189
+ url: https://awario.com/bots.html
190
+ producer:
191
+ name: Awario
192
+ url: https://awario.com/
193
+ -
194
+ user_agent: AwarioSmartBot/1.0 (+https://awario.com/bots.html; bots@awario.com)
195
+ bot:
196
+ name: Awario
197
+ category: Search bot
198
+ url: https://awario.com/bots.html
199
+ producer:
200
+ name: Awario
201
+ url: https://awario.com/
132
202
  -
133
203
  user_agent: Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)
134
204
  bot:
@@ -345,6 +415,23 @@
345
415
  producer:
346
416
  name: Blogtrottr Ltd
347
417
  url: https://blogtrottr.com/
418
+ -
419
+ user_agent: BoardReader Favicon Fetcher /1.0 info@boardreader.com
420
+ bot:
421
+ name: BoardReader
422
+ category: Search bot
423
+ url: http://boardreader.com/
424
+ producer:
425
+ name: Effyis Inc
426
+ url: http://boardreader.com/
427
+ -
428
+ user_agent: BoardReader Blog Indexer(http://boardreader.com)
429
+ bot:
430
+ name: BoardReader Blog Indexer
431
+ category: Crawler
432
+ producer:
433
+ name: BoardReader
434
+ url: http://boardreader.com/
348
435
  -
349
436
  user_agent: Mozilla/5.0 (compatible; BountiiBot/1.1; +http://bountii.com/contact.php)
350
437
  bot:
@@ -354,6 +441,15 @@
354
441
  producer:
355
442
  name: Bountii Inc.
356
443
  url: http://bountii.com
444
+ -
445
+ user_agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:41.0) Gecko/20100101 Firefox/55.0 BrandVerity/1.0 (http://www.brandverity.com/why-is-brandverity-visiting-me)
446
+ bot:
447
+ name: BrandVerity
448
+ category: Crawler
449
+ url: https://www.brandverity.com/why-is-brandverity-visiting-me
450
+ producer:
451
+ name: BrandVerity, Inc.
452
+ url: https://www.brandverity.com/
357
453
  -
358
454
  user_agent: Browsershots
359
455
  bot:
@@ -363,6 +459,15 @@
363
459
  producer:
364
460
  name: Browsershots.org
365
461
  url: http://browsershots.org
462
+ -
463
+ user_agent: Buck/2.2; (+https://app.hypefactors.com/media-monitoring/about.html)
464
+ bot:
465
+ name: Buck
466
+ category: Search bot
467
+ url: https://hypefactors.com/
468
+ producer:
469
+ name: Hypefactors A/S
470
+ url: https://hypefactors.com/
366
471
  -
367
472
  user_agent: Mozilla/5.0 (compatible; Butterfly/1.0; +http://labs.topsy.com/butterfly/) Gecko/2009032608 Firefox/3.0.8
368
473
  bot:
@@ -381,6 +486,24 @@
381
486
  producer:
382
487
  name: Topsy Labs
383
488
  url: http://labs.topsy.com
489
+ -
490
+ user_agent: Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.5668.1446 Mobile Safari/537.36; Bytespider;bytespider@bytedance.com
491
+ bot:
492
+ name: Bytespider
493
+ category: Search bot
494
+ url: https://bytedance.com/
495
+ producer:
496
+ name: ByteDance Ltd.
497
+ url: https://bytedance.com/
498
+ -
499
+ user_agent: CATExplorador/1.0beta (sistemes at domini dot cat; http://domini.cat/catexplorador.html)
500
+ bot:
501
+ name: CATExplorador
502
+ category: Search bot
503
+ url: https://fundacio.cat/ca/domini/
504
+ producer:
505
+ name: Fundació puntCAT
506
+ url: https://fundacio.cat/ca/domini/
384
507
  -
385
508
  user_agent: Mozilla/5.0 (compatible; CareerBot/1.1; +http://www.career-x.de/bot.html)
386
509
  bot:
@@ -430,8 +553,8 @@
430
553
  user_agent: collectd/5.5.1
431
554
  bot:
432
555
  name: Collectd
433
- category: Site Monitor
434
556
  url: https://collectd.org/
557
+ category: Site Monitor
435
558
  producer:
436
559
  name: Collectd
437
560
  url: https://collectd.org/
@@ -444,15 +567,78 @@
444
567
  producer:
445
568
  name: ""
446
569
  url: ""
570
+ -
571
+ user_agent: coccocbot-web/1.0 (+http://help.coccoc.com/searchengine)
572
+ bot:
573
+ name: Cốc Cốc Bot
574
+ category: Search bot
575
+ url: https://help.coccoc.com/en/search-engine/coccoc-robots
576
+ producer:
577
+ name: Cốc Cốc
578
+ url: https://coccoc.com/
447
579
  -
448
580
  user_agent: Mozilla/5.0 (compatible; coccoc/1.0; +http://help.coccoc.com/)
449
581
  bot:
450
582
  name: Cốc Cốc Bot
451
- url: http://help.coccoc.com/
452
583
  category: Search bot
584
+ url: https://help.coccoc.com/en/search-engine/coccoc-robots
585
+ producer:
586
+ name: Cốc Cốc
587
+ url: https://coccoc.com/
588
+ -
589
+ user_agent: Mozilla/5.0 (compatible; coccocbot-ads/1.0; +http://help.coccoc.com/searchengine)
590
+ bot:
591
+ name: Cốc Cốc Bot
592
+ category: Search bot
593
+ url: https://help.coccoc.com/en/search-engine/coccoc-robots
594
+ producer:
595
+ name: Cốc Cốc
596
+ url: https://coccoc.com/
597
+ -
598
+ user_agent: Mozilla/5.0 (compatible; coccocbot-fast/1.0; +http://help.coccoc.com/searchengine)
599
+ bot:
600
+ name: Cốc Cốc Bot
601
+ category: Search bot
602
+ url: https://help.coccoc.com/en/search-engine/coccoc-robots
603
+ producer:
604
+ name: Cốc Cốc
605
+ url: https://coccoc.com/
606
+ -
607
+ user_agent: Mozilla/5.0 (compatible; coccocbot-image/1.0; +http://help.coccoc.com/searchengine)
608
+ bot:
609
+ name: Cốc Cốc Bot
610
+ category: Search bot
611
+ url: https://help.coccoc.com/en/search-engine/coccoc-robots
612
+ producer:
613
+ name: Cốc Cốc
614
+ url: https://coccoc.com/
615
+ -
616
+ user_agent: Mozilla/5.0 (compatible; coccocbot-shopping/1.0; +http://help.coccoc.com/searchengine)
617
+ bot:
618
+ name: Cốc Cốc Bot
619
+ category: Search bot
620
+ url: https://help.coccoc.com/en/search-engine/coccoc-robots
621
+ producer:
622
+ name: Cốc Cốc
623
+ url: https://coccoc.com/
624
+ -
625
+ user_agent: Mozilla/5.0 (compatible; coccocbot-web/1.0; +http://help.coccoc.com/searchengine)
626
+ bot:
627
+ name: Cốc Cốc Bot
628
+ category: Search bot
629
+ url: https://help.coccoc.com/en/search-engine/coccoc-robots
453
630
  producer:
454
631
  name: Cốc Cốc
455
- url: http://coccoc.com/
632
+ url: https://coccoc.com/
633
+ -
634
+ user_agent: Mozilla/5.0 (compatible; coccocbot/1.0; +http://help.coccoc.com/searchengine)
635
+ bot:
636
+ name: Cốc Cốc Bot
637
+ category: Search bot
638
+ url: https://help.coccoc.com/en/search-engine/coccoc-robots
639
+ producer:
640
+ name: Cốc Cốc
641
+ url: https://coccoc.com/
456
642
  -
457
643
  user_agent: Datadog Agent/5.10.1
458
644
  bot:
@@ -462,6 +648,15 @@
462
648
  producer:
463
649
  name: Datadog
464
650
  url: https://www.datadoghq.com/
651
+ -
652
+ user_agent: Mozilla/5.0 (X11; Datanyze; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36
653
+ bot:
654
+ name: Datanyze
655
+ url: ""
656
+ category: Crawler
657
+ producer:
658
+ name: Datanyze
659
+ url: https://www.datanyze.com
465
660
  -
466
661
  user_agent: Mozilla/5.0 (compatible; Dataprovider/6.92; +https://www.dataprovider.com/)
467
662
  bot:
@@ -534,6 +729,15 @@
534
729
  producer:
535
730
  name: SEOmoz, Inc.
536
731
  url: http://moz.com/
732
+ -
733
+ user_agent: DuckDuckBot/1.0; (+http://duckduckgo.com/duckduckbot.html)
734
+ bot:
735
+ name: DuckDuckGo Bot
736
+ category: Search bot
737
+ url: https://duckduckgo.com/duckduckbot
738
+ producer:
739
+ name: DuckDuckGo
740
+ url: https://duckduckgo.com/
537
741
  -
538
742
  user_agent: Mozilla/5.0 (compatible; DuckDuckGo-Favicons-Bot/1.0; +http://duckduckgo.com)
539
743
  bot:
@@ -570,6 +774,15 @@
570
774
  producer:
571
775
  name: easou ICP
572
776
  url: http://www.easou.com
777
+ -
778
+ user_agent: Mozilla/5.0 (compatible; Embedly/0.2; +http://support.embed.ly/)
779
+ bot:
780
+ name: Embedly
781
+ category: Crawler
782
+ url: https://support.embed.ly/hc/en-us
783
+ producer:
784
+ name: A Medium, Corp.
785
+ url: https://medium.com/
573
786
  -
574
787
  user_agent: Mozilla/5.0 (compatible; Exabot/3.0 (BiggerBetter); +http://www.exabot.com/go/robot)
575
788
  bot:
@@ -624,6 +837,15 @@
624
837
  producer:
625
838
  name: Facebook
626
839
  url: http://www.facebook.com
840
+ -
841
+ user_agent: facebookexternalua
842
+ bot:
843
+ name: Facebook External Hit
844
+ category: Social Media Agent
845
+ url: https://www.facebook.com/externalhit_uatext.php
846
+ producer:
847
+ name: Facebook
848
+ url: http://www.facebook.com
627
849
  -
628
850
  user_agent: facebookplatform/1.0 (+http://developers.facebook.com)
629
851
  bot:
@@ -738,18 +960,59 @@
738
960
  producer:
739
961
  name: Flipboard
740
962
  url: http://flipboard.com/
963
+ -
964
+ user_agent: freshrss/0.8-dev (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS
965
+ bot:
966
+ name: FreshRSS
967
+ category: Feed Fetcher
968
+ url: https://freshrss.org/
969
+ -
970
+ user_agent: FreshRSS/1.12.0 (Linux; https://freshrss.org)
971
+ bot:
972
+ name: FreshRSS
973
+ category: Feed Fetcher
974
+ url: https://freshrss.org/
975
+ -
976
+ user_agent: Mozilla/5.0 (X11; Linux x86_64; GTmetrix https://gtmetrix.com/) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36
977
+ bot:
978
+ name: GTmetrix
979
+ category: Crawler
980
+ url: https://gtmetrix.com/
981
+ producer:
982
+ name: Carbon60 Operating Co. Ltd.
983
+ url: https://www.carbon60.com/
984
+ -
985
+ user_agent: 7Siters/1.07 (+https://7ooo.ru/siters/)
986
+ bot:
987
+ name: Generic Bot
741
988
  -
742
989
  user_agent: COMODO SSL Checker
743
990
  bot:
744
991
  name: Generic Bot
992
+ -
993
+ user_agent: help@dataminr.com
994
+ bot:
995
+ name: Generic Bot
745
996
  -
746
997
  user_agent: 'HybridBot (hybrid.ru/about. If our bot caused problems please contact us. Contact email: m.lyashkov@targetix.net)'
747
998
  bot:
748
999
  name: Generic Bot
1000
+ -
1001
+ user_agent: 'Mozilla/5.0 (compatible; +centuryb.o.t9[at]gmail.com)'
1002
+ bot:
1003
+ name: Generic Bot
1004
+ -
1005
+ user_agent: Mozilla/5.0 (compatible; +http://tweetedtimes.com)
1006
+ bot:
1007
+ name: Generic Bot
749
1008
  -
750
1009
  user_agent: Mozilla/5.0 (compatible; Shareaholicbot/2.0; +http://www.shareaholic.com/bot)
751
1010
  bot:
752
1011
  name: Generic Bot
1012
+ -
1013
+ user_agent: Mozilla/5.0 (compatible; TrendsmapResolver/0.1)
1014
+ bot:
1015
+ name: Generic Bot
753
1016
  -
754
1017
  user_agent: niki-bot
755
1018
  bot:
@@ -758,6 +1021,14 @@
758
1021
  user_agent: PHPCrawl
759
1022
  bot:
760
1023
  name: Generic Bot
1024
+ -
1025
+ user_agent: robots
1026
+ bot:
1027
+ name: Generic Bot
1028
+ -
1029
+ user_agent: SeopultContentAnalyzer/1.0
1030
+ bot:
1031
+ name: Generic Bot
761
1032
  -
762
1033
  user_agent: Mozilla/5.0 (compatible; Genieo/1.0 http://www.genieo.com/webfilter.html)
763
1034
  bot:
@@ -803,6 +1074,11 @@
803
1074
  producer:
804
1075
  name: NTT Resonant
805
1076
  url: http://goo.ne.jp
1077
+ -
1078
+ user_agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon
1079
+ bot:
1080
+ name: Google Favicon
1081
+ category: Crawler
806
1082
  -
807
1083
  user_agent: Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_0_1 like Mac OS X; en-us) AppleWebKit/537.4 (KHTML, like Gecko; Google Page Speed Insights) Version/4.0.5 Mobile/8A306 Safari/6531.22.7
808
1084
  bot:
@@ -821,6 +1097,15 @@
821
1097
  producer:
822
1098
  name: Google Inc.
823
1099
  url: http://www.google.com
1100
+ -
1101
+ user_agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko; Google Search Console) Chrome/41.0.2272.118 Safari/537.36
1102
+ bot:
1103
+ name: Google Search Console
1104
+ category: Crawler
1105
+ url: https://search.google.com/search-console/about
1106
+ producer:
1107
+ name: Google Inc.
1108
+ url: http://www.google.com
824
1109
  -
825
1110
  user_agent: Google-Structured-Data-Testing-Tool +https://search.google.com/structured-data/testing-tool)
826
1111
  bot:
@@ -848,6 +1133,15 @@
848
1133
  producer:
849
1134
  name: Google Inc.
850
1135
  url: http://www.google.com
1136
+ -
1137
+ user_agent: APIs-Google (+https://developers.google.com/webmasters/APIs-Google.html)
1138
+ bot:
1139
+ name: Googlebot
1140
+ category: Search bot
1141
+ url: http://www.google.com/bot.html
1142
+ producer:
1143
+ name: Google Inc.
1144
+ url: http://www.google.com
851
1145
  -
852
1146
  user_agent: DoCoMo/2.0 N905i(c100;TB;W24H16) (compatible; Googlebot-Mobile/2.1; +http://www.google.com/bot.html)
853
1147
  bot:
@@ -884,6 +1178,15 @@
884
1178
  producer:
885
1179
  name: Google Inc.
886
1180
  url: http://www.google.com
1181
+ -
1182
+ user_agent: Google-AdWords-Express
1183
+ bot:
1184
+ name: Googlebot
1185
+ category: Search bot
1186
+ url: http://www.google.com/bot.html
1187
+ producer:
1188
+ name: Google Inc.
1189
+ url: http://www.google.com
887
1190
  -
888
1191
  user_agent: Google-Adwords-Instant (+http://www.google.com/adsbot.html)
889
1192
  bot:
@@ -893,6 +1196,15 @@
893
1196
  producer:
894
1197
  name: Google Inc.
895
1198
  url: http://www.google.com
1199
+ -
1200
+ user_agent: Google-speakr
1201
+ bot:
1202
+ name: Googlebot
1203
+ category: Search bot
1204
+ url: http://www.google.com/bot.html
1205
+ producer:
1206
+ name: Google Inc.
1207
+ url: http://www.google.com
896
1208
  -
897
1209
  user_agent: Googlebot (gocrawl v0.4)
898
1210
  bot:
@@ -974,6 +1286,15 @@
974
1286
  producer:
975
1287
  name: Google Inc.
976
1288
  url: http://www.google.com
1289
+ -
1290
+ user_agent: Mozilla/5.0 (compatible; Google-Youtube-Links)
1291
+ bot:
1292
+ name: Googlebot
1293
+ category: Search bot
1294
+ url: http://www.google.com/bot.html
1295
+ producer:
1296
+ name: Google Inc.
1297
+ url: http://www.google.com
977
1298
  -
978
1299
  user_agent: Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
979
1300
  bot:
@@ -983,6 +1304,24 @@
983
1304
  producer:
984
1305
  name: Google Inc.
985
1306
  url: http://www.google.com
1307
+ -
1308
+ user_agent: Mozilla/5.0 (en-US) AppleWebKit/537.36 (KHTML, like Gecko; Google-Assess) Chrome/34.0.1847.116 Safari/537.36
1309
+ bot:
1310
+ name: Googlebot
1311
+ category: Search bot
1312
+ url: http://www.google.com/bot.html
1313
+ producer:
1314
+ name: Google Inc.
1315
+ url: http://www.google.com
1316
+ -
1317
+ user_agent: Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/41.0.2272.118Safari/537.36
1318
+ bot:
1319
+ name: Googlebot
1320
+ category: Search bot
1321
+ url: http://www.google.com/bot.html
1322
+ producer:
1323
+ name: Google Inc.
1324
+ url: http://www.google.com
986
1325
  -
987
1326
  user_agent: Mozilla/5.0 (iPhone; CPU iPhone OS 6_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A5376e Safari/8536.25 (compatible; Googlebot-Mobile/2.1; +http://www.google.com/bot.html)
988
1327
  bot:
@@ -1001,6 +1340,33 @@
1001
1340
  producer:
1002
1341
  name: Google Inc.
1003
1342
  url: http://www.google.com
1343
+ -
1344
+ user_agent: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Google-AMPHTML)
1345
+ bot:
1346
+ name: Googlebot
1347
+ category: Search bot
1348
+ url: http://www.google.com/bot.html
1349
+ producer:
1350
+ name: Google Inc.
1351
+ url: http://www.google.com
1352
+ -
1353
+ user_agent: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Google-Read-Aloud; +https://support.google.com/webmasters/answer/1061943)
1354
+ bot:
1355
+ name: Googlebot
1356
+ category: Search bot
1357
+ url: http://www.google.com/bot.html
1358
+ producer:
1359
+ name: Google Inc.
1360
+ url: http://www.google.com
1361
+ -
1362
+ user_agent: Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012; DuplexWeb-Google/1.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.131 Mobile Safari/537.36
1363
+ bot:
1364
+ name: Googlebot
1365
+ category: Search bot
1366
+ url: http://www.google.com/bot.html
1367
+ producer:
1368
+ name: Google Inc.
1369
+ url: http://www.google.com
1004
1370
  -
1005
1371
  user_agent: Mozilla/5.0 (Windows NT 6.1; rv:6.0) Gecko/20110814 Firefox/6.0 Google (+https://developers.google.com/+/web/snippet/)
1006
1372
  bot:
@@ -1010,6 +1376,15 @@
1010
1376
  producer:
1011
1377
  name: Google Inc.
1012
1378
  url: http://www.google.com
1379
+ -
1380
+ user_agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453 Safari/537.36 (compatible; Google-HotelAdsVerifier/2.0)
1381
+ bot:
1382
+ name: Googlebot
1383
+ category: Search bot
1384
+ url: http://www.google.com/bot.html
1385
+ producer:
1386
+ name: Google Inc.
1387
+ url: http://www.google.com
1013
1388
  -
1014
1389
  user_agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview) Chrome/27.0.1453 Safari/537.36
1015
1390
  bot:
@@ -1180,6 +1555,15 @@
1180
1555
  producer:
1181
1556
  name: ""
1182
1557
  url: ""
1558
+ -
1559
+ user_agent: IDG/IT (http://spaziodati.eu/)
1560
+ bot:
1561
+ name: IDG/IT
1562
+ category: Search bot
1563
+ url: https://spaziodati.eu/
1564
+ producer:
1565
+ name: SpazioDati S.r.l.
1566
+ url: https://spaziodati.eu/
1183
1567
  -
1184
1568
  user_agent: iisbot/1.0 (+http://www.iis.net/iisbot.html)
1185
1569
  bot:
@@ -1206,6 +1590,15 @@
1206
1590
  producer:
1207
1591
  name: VeriSign, Inc
1208
1592
  url: http://www.verisign.com/
1593
+ -
1594
+ user_agent: Kaspersky Lab CFR link resolver cfradmins@kaspersky.com
1595
+ bot:
1596
+ name: Kaspersky
1597
+ category: Security Checker
1598
+ url: https://www.kaspersky.com/
1599
+ producer:
1600
+ name: AO Kaspersky Lab
1601
+ url: https://www.kaspersky.com/
1209
1602
  -
1210
1603
  user_agent: kouio.com RSS reader
1211
1604
  bot:
@@ -1224,6 +1617,15 @@
1224
1617
  producer:
1225
1618
  name: ""
1226
1619
  url: ""
1620
+ -
1621
+ user_agent: LCC (+http://corpora.informatik.uni-leipzig.de/crawler_faq.html)
1622
+ bot:
1623
+ name: LCC
1624
+ category: Search bot
1625
+ url: https://corpora.uni-leipzig.de/crawler_faq.html
1626
+ producer:
1627
+ name: Universität Leipzig
1628
+ url: https://www.uni-leipzig.de/
1227
1629
  -
1228
1630
  user_agent: 'ltx71 - (http://ltx71.com/)'
1229
1631
  bot:
@@ -1340,6 +1742,16 @@
1340
1742
  producer:
1341
1743
  name: Mail.Ru Group
1342
1744
  url: http://corp.mail.ru
1745
+ -
1746
+ user_agent: http.rb/2.2.2 (Mastodon/1.6.1; +https://mathtod.online/)
1747
+ bot:
1748
+ name: Mastodon Bot
1749
+ category: Social Media Agent
1750
+ -
1751
+ user_agent: http.rb/3.2.0 (Mastodon/2.4.3; +https://uwu.social/)
1752
+ bot:
1753
+ name: Mastodon Bot
1754
+ category: Social Media Agent
1343
1755
  -
1344
1756
  user_agent: Mozilla/5.0 (compatible; meanpathbot/1.0; +http://www.meanpath.com/meanpathbot.html)
1345
1757
  bot:
@@ -1665,10 +2077,27 @@
1665
2077
  producer:
1666
2078
  name: The Apache Software Foundation
1667
2079
  url: http://www.apache.org/foundation/
2080
+ -
2081
+ user_agent: Nuzzel
2082
+ bot:
2083
+ name: Nuzzel
2084
+ category: Crawler
2085
+ producer:
2086
+ name: Nuzzel
2087
+ url: https://www.nuzzel.com/
1668
2088
  -
1669
2089
  user_agent: Octopus 1.0.2
1670
2090
  bot:
1671
2091
  name: Octopus
2092
+ -
2093
+ user_agent: omgili/0.5 +http://omgili.com
2094
+ bot:
2095
+ name: Omgili bot
2096
+ category: Search bot
2097
+ url: http://www.omgili.com/Crawler.html
2098
+ producer:
2099
+ name: Omgili
2100
+ url: http://www.omgili.com
1672
2101
  -
1673
2102
  user_agent: omgilibot/0.3 +http://www.omgili.com/Crawler.html
1674
2103
  bot:
@@ -1801,11 +2230,20 @@
1801
2230
  producer:
1802
2231
  name: Pingdom AB
1803
2232
  url: https://www.pingdom.com
2233
+ -
2234
+ user_agent: Mozilla/5.0 (compatible; Pinterestbot/1.0; http://www.pinterest.com/bot.html)
2235
+ bot:
2236
+ name: Pinterest
2237
+ url: http://www.pinterest.com/bot.html
2238
+ category: Crawler
2239
+ producer:
2240
+ name: Pinterest
2241
+ url: http://www.pinterest.com/
1804
2242
  -
1805
2243
  user_agent: Pinterest/0.2 (+http://www.pinterest.com/)
1806
2244
  bot:
1807
2245
  name: Pinterest
1808
- url: ""
2246
+ url: http://www.pinterest.com/bot.html
1809
2247
  category: Crawler
1810
2248
  producer:
1811
2249
  name: Pinterest
@@ -1837,6 +2275,15 @@
1837
2275
  producer:
1838
2276
  name: QueryEye Inc.
1839
2277
  url: http://queryeye.com
2278
+ -
2279
+ user_agent: Quora Link Preview/1.0 (http://www.quora.com)
2280
+ bot:
2281
+ name: Quora Link Preview
2282
+ category: Crawler
2283
+ url: ""
2284
+ producer:
2285
+ name: Quora
2286
+ url: http://www.quora.com
1840
2287
  -
1841
2288
  user_agent: 'Mozilla/5.0 (compatible; Qwantify/2.2w; +https://www.qwant.com/)/*'
1842
2289
  bot:
@@ -1855,6 +2302,10 @@
1855
2302
  producer:
1856
2303
  name: Roihunter a.s.
1857
2304
  url: http://roihunter.com/
2305
+ -
2306
+ user_agent: RSSRadio (Push Notification Scanner;support@dorada.co.uk)
2307
+ bot:
2308
+ name: RSSRadio Bot
1858
2309
  -
1859
2310
  user_agent: Rainmeter WebParser plugin
1860
2311
  bot:
@@ -1933,6 +2384,42 @@
1933
2384
  producer:
1934
2385
  name: SISTRIX GmbH
1935
2386
  url: http://www.sistrix.de
2387
+ -
2388
+ user_agent: Mozilla/5.0 (compatible; Optimizer)
2389
+ bot:
2390
+ name: SISTRIX Optimizer
2391
+ category: Crawler
2392
+ url: https://optimizer.sistrix.com
2393
+ producer:
2394
+ name: SISTRIX GmbH
2395
+ url: http://www.sistrix.de
2396
+ -
2397
+ user_agent: Mozilla/5.0 (compatible; SISTRIX Optimizer)
2398
+ bot:
2399
+ name: SISTRIX Optimizer
2400
+ category: Crawler
2401
+ url: https://optimizer.sistrix.com
2402
+ producer:
2403
+ name: SISTRIX GmbH
2404
+ url: http://www.sistrix.de
2405
+ -
2406
+ user_agent: Mozilla/5.0 (compatible; SISTRIX Optimizer; Uptime; +https://www.sistrix.com/faq/uptime)
2407
+ bot:
2408
+ name: SISTRIX Optimizer
2409
+ category: Crawler
2410
+ url: https://optimizer.sistrix.com
2411
+ producer:
2412
+ name: SISTRIX GmbH
2413
+ url: http://www.sistrix.de
2414
+ -
2415
+ user_agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.75 Safari/537.36 (compatible; SMTBot/1.0; +http://www.similartech.com/smtbot)
2416
+ bot:
2417
+ name: SMTBot
2418
+ category: Search bot
2419
+ url: https://www.similartech.com/smtbot
2420
+ producer:
2421
+ name: SimilarTech Ltd.
2422
+ url: https://www.similartech.com/
1936
2423
  -
1937
2424
  user_agent: SSL Labs (https://www.ssllabs.com/about/assessment.html)
1938
2425
  bot:
@@ -2082,6 +2569,15 @@
2082
2569
  producer:
2083
2570
  name: ShopWiki Corp.
2084
2571
  url: http://www.shopwiki.com
2572
+ -
2573
+ user_agent: shopify-partner-homepage-scraper
2574
+ bot:
2575
+ name: Shopify Partner
2576
+ category: Crawler
2577
+ url: https://www.shopify.com/partners
2578
+ producer:
2579
+ name: Shopify
2580
+ url: https://www.shopify.com/
2085
2581
  -
2086
2582
  user_agent: SilverReader/1.0; http://silverreader.com
2087
2583
  bot:
@@ -2091,15 +2587,6 @@
2091
2587
  producer:
2092
2588
  name: ""
2093
2589
  url: ""
2094
- -
2095
- user_agent: freshrss/0.8-dev (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS
2096
- bot:
2097
- name: SimplePie
2098
- url: http://www.simplepie.org
2099
- category: Feed Parser
2100
- producer:
2101
- name: ""
2102
- url: ""
2103
2590
  -
2104
2591
  user_agent: SimplePie/1.2.1-dev (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20130514092120
2105
2592
  bot:
@@ -2133,6 +2620,24 @@
2133
2620
  name: SiteSucker
2134
2621
  category: Crawler
2135
2622
  url: http://ricks-apps.com/osx/sitesucker/
2623
+ -
2624
+ user_agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.0) Match by Siteimprove.com
2625
+ bot:
2626
+ name: Siteimprove
2627
+ category: Search bot
2628
+ url: https://siteimprove.com/
2629
+ producer:
2630
+ name: Siteimprove GmbH
2631
+ url: https://siteimprove.com/
2632
+ -
2633
+ user_agent: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0) LinkCheck by Siteimprove.com
2634
+ bot:
2635
+ name: Siteimprove
2636
+ category: Search bot
2637
+ url: https://siteimprove.com/
2638
+ producer:
2639
+ name: Siteimprove GmbH
2640
+ url: https://siteimprove.com/
2136
2641
  -
2137
2642
  user_agent: sixy.ch/1.0
2138
2643
  bot:
@@ -2160,6 +2665,15 @@
2160
2665
  producer:
2161
2666
  name: Slack Technologies
2162
2667
  url: http://slack.com
2668
+ -
2669
+ user_agent: 'AppEngine-Google; (+http://code.google.com/appengine; appid: s~snapchat-proxy)'
2670
+ bot:
2671
+ name: Snapchat Proxy
2672
+ category: Crawler
2673
+ url: https://www.snapchat.com
2674
+ producer:
2675
+ name: Snapchat Inc.
2676
+ url: https://www.snapchat.com
2163
2677
  -
2164
2678
  user_agent: New-Sogou-Spider/1.0 (compatible; MSIE 5.5; Windows 98)
2165
2679
  bot:
@@ -2220,6 +2734,13 @@
2220
2734
  producer:
2221
2735
  name: Tailrank Inc
2222
2736
  url: http://spinn3r.com
2737
+ -
2738
+ user_agent: Spotify/1.0
2739
+ bot:
2740
+ name: Spotify
2741
+ producer:
2742
+ name: Spotify
2743
+ url: https://www.spotify.com
2223
2744
  -
2224
2745
  user_agent: Mozilla/5.0 (compatible; SputnikBot/2.2)
2225
2746
  bot:
@@ -2238,6 +2759,15 @@
2238
2759
  producer:
2239
2760
  name: ""
2240
2761
  url: ""
2762
+ -
2763
+ user_agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/536.30.1 (KHTML, like Gecko) (compatible; Startpagina-Linkchecker/1.0; +https://www.startpagina.nl/linkchecker)
2764
+ bot:
2765
+ name: Startpagina Linkchecker
2766
+ category: Search bot
2767
+ url: https://www.startpagina.nl/linkchecker
2768
+ producer:
2769
+ name: Startpagina B.V.
2770
+ url: https://www.startpagina.nl/
2241
2771
  -
2242
2772
  user_agent: Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/98 Safari/537.4 (StatusCake)
2243
2773
  bot:
@@ -2283,8 +2813,13 @@
2283
2813
  -
2284
2814
  user_agent: TelegramBot (like TwitterBot)
2285
2815
  bot:
2286
- name: TelgramBot
2816
+ name: TelegramBot
2287
2817
  url: https://telegram.org/blog/bot-revolution
2818
+ -
2819
+ user_agent: The Knowledge AI
2820
+ bot:
2821
+ name: The Knowledge AI
2822
+ category: Crawler
2288
2823
  -
2289
2824
  user_agent: TinEye-bot/0.02 (see http://www.tineye.com/crawler.html)
2290
2825
  bot:
@@ -2312,6 +2847,15 @@
2312
2847
  producer:
2313
2848
  name: ""
2314
2849
  url: ""
2850
+ -
2851
+ user_agent: Mozilla/5.0 (compatible; tracemyfile/1.0)
2852
+ bot:
2853
+ name: TraceMyFile
2854
+ category: Search bot
2855
+ url: https://www.tracemyfile.com/
2856
+ producer:
2857
+ name: Idee Inc.
2858
+ url: http://ideeinc.com/
2315
2859
  -
2316
2860
  user_agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.0; trendictionbot0.5.0; trendiction search; http://www.trendiction.de/bot; please let us know of any problems; web at trendiction.com) Gecko/20071127 Firefox/3.0.0.11
2317
2861
  bot:
@@ -2357,6 +2901,14 @@
2357
2901
  producer:
2358
2902
  name: Mediasift
2359
2903
  url: ""
2904
+ -
2905
+ user_agent: Mozilla/5.0 (compatible; Twingly Recon; twingly.com)
2906
+ bot:
2907
+ name: Twingly Recon
2908
+ category: Crawler
2909
+ producer:
2910
+ name: Twingly
2911
+ url: https://www.twingly.com
2360
2912
  -
2361
2913
  user_agent: Twitterbot/1.0
2362
2914
  bot:
@@ -2411,6 +2963,15 @@
2411
2963
  producer:
2412
2964
  name: Uptime
2413
2965
  url: https://uptime.com
2966
+ -
2967
+ user_agent: Mozilla/5.0 (compatible; vkShare; +http://vk.com/dev/Share)
2968
+ bot:
2969
+ name: VK Share Button
2970
+ category: Crawler
2971
+ url: http://vk.com/dev/Share
2972
+ producer:
2973
+ name: VK
2974
+ url: http://vk.com/
2414
2975
  -
2415
2976
  user_agent: 'Mozilla/4.0 (compatible; Vagabondo/4.0; http://webagent.wise-guys.nl/; http://www.wise-guys.nl/)'
2416
2977
  bot:
@@ -2527,6 +3088,12 @@
2527
3088
  producer:
2528
3089
  name: WeSEE Ltd
2529
3090
  url: http://www.wesee.com
3091
+ -
3092
+ user_agent: Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/180829.190838
3093
+ bot:
3094
+ name: WebPageTest
3095
+ category: Site Monitor
3096
+ url: https://www.webpagetest.org
2530
3097
  -
2531
3098
  user_agent: websitepulse checker/1.1 (compatible; MSIE 5.5; Netscape 4.75; Linux)
2532
3099
  bot:
@@ -2545,6 +3112,42 @@
2545
3112
  producer:
2546
3113
  name: Steve Webb
2547
3114
  url: http://badcheese.com
3115
+ -
3116
+ user_agent: weborama-fetcher (+http://www.weborama.com)
3117
+ bot:
3118
+ name: Weborama
3119
+ category: Search bot
3120
+ url: https://weborama.com/
3121
+ producer:
3122
+ name: Weborama SA
3123
+ url: https://weborama.com/
3124
+ -
3125
+ user_agent: WikiDo/1.1 (http://wikido.com; crawler@wikido.com)
3126
+ bot:
3127
+ name: WikiDo
3128
+ category: Search bot
3129
+ url: https://www.wikido.com/
3130
+ producer:
3131
+ name: Fotolitografie Fiorentine di Becchi Antonio s.n.c.
3132
+ url: https://www.wikido.com/
3133
+ -
3134
+ user_agent: Mozilla/5.0 (compatible; woorankreview/2.0; +https://www.woorank.com/)
3135
+ bot:
3136
+ name: WooRank
3137
+ category: Search bot
3138
+ url: https://www.woorank.com/
3139
+ producer:
3140
+ name: WooRank sprl
3141
+ url: https://www.woorank.com/
3142
+ -
3143
+ user_agent: Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1 (compatible; woorankreview/2.0; +https://www.woorank.com/)
3144
+ bot:
3145
+ name: WooRank
3146
+ category: Search bot
3147
+ url: https://www.woorank.com/
3148
+ producer:
3149
+ name: WooRank sprl
3150
+ url: https://www.woorank.com/
2548
3151
  -
2549
3152
  user_agent: WordPress/4.7.2; https://example.com
2550
3153
  bot:
@@ -2563,6 +3166,15 @@
2563
3166
  producer:
2564
3167
  name: Wotbox
2565
3168
  url: http://www.wotbox.com
3169
+ -
3170
+ user_agent: XenForo/2.x (https://www.example.com)
3171
+ bot:
3172
+ name: XenForo
3173
+ category: Service Agent
3174
+ url: https://xenforo.com/
3175
+ producer:
3176
+ name: XenForo Ltd.
3177
+ url: https://xenforo.com/
2566
3178
  -
2567
3179
  user_agent: yacybot (freeworld/global; amd64 Linux 3.2.0-4-amd64; java 1.7.0_25; Europe/en) http://yacy.net/bot.html
2568
3180
  bot:
@@ -2590,6 +3202,15 @@
2590
3202
  producer:
2591
3203
  name: Yahoo! Inc.
2592
3204
  url: http://www.yahoo.com
3205
+ -
3206
+ user_agent: Y!J-BRW/1.0 (https://www.yahoo-help.jp/app/answers/detail/p/595/a_id/42716)
3207
+ bot:
3208
+ name: Yahoo! Japan BRW
3209
+ category: Crawler
3210
+ url: https://www.yahoo-help.jp/app/answers/detail/p/595/a_id/42716/~/ウェブページにアクセスするシステムのユーザーエージェントについて
3211
+ producer:
3212
+ name: Yahoo! Japan Corp.
3213
+ url: https://www.yahoo.co.jp/
2593
3214
  -
2594
3215
  user_agent: Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html)
2595
3216
  bot:
@@ -2734,6 +3355,15 @@
2734
3355
  producer:
2735
3356
  name: Yandex LLC
2736
3357
  url: http://company.yandex.com
3358
+ -
3359
+ user_agent: Mozilla/5.0 (compatible; YandexMobileScreenShotBot/1.0; +http://yandex.com/bots)
3360
+ bot:
3361
+ name: Yandex Bot
3362
+ category: Search bot
3363
+ url: http://www.yandex.com/bots
3364
+ producer:
3365
+ name: Yandex LLC
3366
+ url: http://company.yandex.com
2737
3367
  -
2738
3368
  user_agent: Mozilla/5.0 (compatible; YandexNews/3.0; +http://yandex.com/bots)
2739
3369
  bot:
@@ -2752,6 +3382,87 @@
2752
3382
  producer:
2753
3383
  name: Yandex LLC
2754
3384
  url: http://company.yandex.com
3385
+ -
3386
+ user_agent: Mozilla/5.0 (compatible; YandexOntoDB/1.0; +http://yandex.com/bots)
3387
+ bot:
3388
+ name: Yandex Bot
3389
+ category: Search bot
3390
+ url: http://www.yandex.com/bots
3391
+ producer:
3392
+ name: Yandex LLC
3393
+ url: http://company.yandex.com
3394
+ -
3395
+ user_agent: Mozilla/5.0 (compatible; YandexOntoDBAPI/1.0; +http://yandex.com/bots)
3396
+ bot:
3397
+ name: Yandex Bot
3398
+ category: Search bot
3399
+ url: http://www.yandex.com/bots
3400
+ producer:
3401
+ name: Yandex LLC
3402
+ url: http://company.yandex.com
3403
+ -
3404
+ user_agent: Mozilla/5.0 (compatible; YandexPartner/3.0; +http://yandex.com/bots)
3405
+ bot:
3406
+ name: Yandex Bot
3407
+ category: Search bot
3408
+ url: http://www.yandex.com/bots
3409
+ producer:
3410
+ name: Yandex LLC
3411
+ url: http://company.yandex.com
3412
+ -
3413
+ user_agent: Mozilla/5.0 (compatible; YandexRCA/1.0; +http://yandex.com/bots)
3414
+ bot:
3415
+ name: Yandex Bot
3416
+ category: Search bot
3417
+ url: http://www.yandex.com/bots
3418
+ producer:
3419
+ name: Yandex LLC
3420
+ url: http://company.yandex.com
3421
+ -
3422
+ user_agent: Mozilla/5.0 (compatible; YandexSearchShop/1.0; +http://yandex.com/bots)
3423
+ bot:
3424
+ name: Yandex Bot
3425
+ category: Search bot
3426
+ url: http://www.yandex.com/bots
3427
+ producer:
3428
+ name: Yandex LLC
3429
+ url: http://company.yandex.com
3430
+ -
3431
+ user_agent: Mozilla/5.0 (compatible; YandexTracker/1.0; +http://yandex.com/bots)
3432
+ bot:
3433
+ name: Yandex Bot
3434
+ category: Search bot
3435
+ url: http://www.yandex.com/bots
3436
+ producer:
3437
+ name: Yandex LLC
3438
+ url: http://company.yandex.com
3439
+ -
3440
+ user_agent: Mozilla/5.0 (compatible; YandexTurbo/1.0; +http://yandex.com/bots)
3441
+ bot:
3442
+ name: Yandex Bot
3443
+ category: Search bot
3444
+ url: http://www.yandex.com/bots
3445
+ producer:
3446
+ name: Yandex LLC
3447
+ url: http://company.yandex.com
3448
+ -
3449
+ user_agent: Mozilla/5.0 (compatible; YandexVerticals/1.0; http://yandex.com/bots)
3450
+ bot:
3451
+ name: Yandex Bot
3452
+ category: Search bot
3453
+ url: http://www.yandex.com/bots
3454
+ producer:
3455
+ name: Yandex LLC
3456
+ url: http://company.yandex.com
3457
+ -
3458
+ user_agent: Mozilla/5.0 (compatible; NaverJapan/1.0; +http://corp.naver.jp/)
3459
+ bot:
3460
+ name: Yeti/Naverbot
3461
+ category: Search bot
3462
+ url: http://help.naver.com/robots/
3463
+ producer:
3464
+ name: Naver
3465
+ url: http://www.naver.com
2755
3466
  -
2756
3467
  user_agent: Yeti/1.1 (Naver Corp.; http://help.naver.com/robots/)
2757
3468
  bot:
@@ -2808,6 +3519,15 @@
2808
3519
  bot:
2809
3520
  name: Zao
2810
3521
  category: Crawler
3522
+ -
3523
+ user_agent: zelist.ro feed parser (+http://www.zelist.ro)
3524
+ bot:
3525
+ name: Ze List
3526
+ category: Feed Fetcher
3527
+ url: https://www.zelist.ro/
3528
+ producer:
3529
+ name: Treeworks SRL
3530
+ url: https://www.tree.ro/
2811
3531
  -
2812
3532
  user_agent: Zookabot/2.5;++http://zookabot.com
2813
3533
  bot:
@@ -2943,6 +3663,23 @@
2943
3663
  producer:
2944
3664
  name: reddit inc.
2945
3665
  url: http://www.reddit.com
3666
+ -
3667
+ user_agent: Mozilla/5.0 eCairn-Grabber/1.0 (+http://ecairn.com/grabber)
3668
+ bot:
3669
+ name: eCairn-Grabber
3670
+ category: Crawler
3671
+ producer:
3672
+ name: eCairn
3673
+ url: https://ecairn.com
3674
+ -
3675
+ user_agent: eZ Publish Link Validator
3676
+ bot:
3677
+ name: eZ Publish Link Validator
3678
+ category: Crawler
3679
+ url: https://ez.no/
3680
+ producer:
3681
+ name: eZ Systems AS
3682
+ url: https://ez.no/
2946
3683
  -
2947
3684
  user_agent: Mozilla/5.0 (compatible; evc-batch/2.0)
2948
3685
  bot:
@@ -2952,15 +3689,35 @@
2952
3689
  producer:
2953
3690
  name: eVenture Capital Partners II, LLC
2954
3691
  url: http://www.eventures.vc/
3692
+ -
3693
+ user_agent: Mozilla/5.0 (compatible; inoreader.com; 2 subscribers)
3694
+ bot:
3695
+ name: inoreader
3696
+ category: Feed Reader
3697
+ url: https://www.inoreader.com
2955
3698
  -
2956
3699
  user_agent: masscan/1.0 (https://github.com/robertdavidgraham/masscan)
2957
3700
  bot:
2958
3701
  name: masscan
2959
- category: Crawler
2960
3702
  url: https://github.com/robertdavidgraham/masscan
3703
+ category: Crawler
2961
3704
  producer:
2962
3705
  name: Robert Graham
2963
3706
  url: https://github.com/robertdavidgraham
3707
+ -
3708
+ user_agent: 'Mozilla/5.0/Firefox/42.0 - nbertaupete95(at)gmail.com'
3709
+ bot:
3710
+ name: nbertaupete95
3711
+ category: Crawler
3712
+ -
3713
+ user_agent: Mozilla/5.0 (compatible; oBot/2.3.1; http://www.xforce-security.com/crawler/)
3714
+ bot:
3715
+ name: oBot
3716
+ category: Search bot
3717
+ url: http://www.xforce-security.com/crawler/
3718
+ producer:
3719
+ name: 'IBM Germany Research & Development GmbH'
3720
+ url: https://exchange.xforce.ibmcloud.com/
2964
3721
  -
2965
3722
  user_agent: 'sqlmap/1.1.8.2#dev (http://sqlmap.org)'
2966
3723
  bot:
@@ -2971,8 +3728,86 @@
2971
3728
  name: sqlmap
2972
3729
  url: http://sqlmap.org/
2973
3730
  -
2974
- user_agent: Mozilla/5.0 zgrab/0.x
3731
+ user_agent: Mozilla/5.0 (compatible; theoldreader.com; 1 subscribers; feed-id=aaa)
2975
3732
  bot:
2976
- name: zgrab
2977
- category: Security Checker
2978
- url: https://github.com/zmap/zgrab
3733
+ name: theoldreader
3734
+ category: Feed Reader
3735
+ url: https://theoldreader.com
3736
+
3737
+ -
3738
+ user_agent: Seobility
3739
+ bot:
3740
+ name: Seobility
3741
+ category: Crawler
3742
+ url: 'https://www.seobility.net/en/faq/?category=crawling#!aboutourbot'
3743
+
3744
+ -
3745
+ user_agent: Vercelbot (+https://vercel.com)
3746
+ bot:
3747
+ name: Vercel Bot
3748
+ category: Service bot
3749
+ url: https://vercel.com
3750
+
3751
+ -
3752
+ user_agent: Grammarly/1.0 (http://www.grammarly.com)
3753
+ bot:
3754
+ name: Grammarly
3755
+ category: Service bot
3756
+ url: http://www.grammarly.com
3757
+
3758
+ -
3759
+ user_agent: Robozilla/1.0
3760
+ bot:
3761
+ name: Robozilla
3762
+ category: Crawler
3763
+
3764
+ -
3765
+ user_agent: Mozilla/5.0 (compatible; Domains Project/1.1.0; +https://domainsproject.org)
3766
+ bot:
3767
+ name: Domains Project
3768
+ category: Crawler
3769
+ url: https://domainsproject.org
3770
+
3771
+ -
3772
+ user_agent: Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)
3773
+ bot:
3774
+ name: Petal Bot
3775
+ category: Crawler
3776
+ url: https://aspiegel.com/petalbot
3777
+
3778
+ -
3779
+ user_agent: SerendeputyBot/0.8.6 (http://serendeputy.com/about/serendeputy-bot)
3780
+ bot:
3781
+ name: Serendeputy Bot
3782
+ category: Crawler
3783
+ url: http://serendeputy.com/about/serendeputy-bot
3784
+
3785
+ -
3786
+ user_agent: ias-va/3.1 (+https://www.admantx.com/service-fetcher.html)
3787
+ bot:
3788
+ name: ADmantX Service Fetcher
3789
+ category: Service bot
3790
+ url: https://www.admantx.com/service-fetcher.html
3791
+
3792
+ -
3793
+ user_agent: Mozilla/5.0 (compatible) SemanticScholarBot (+https://www.semanticscholar.org/crawler)
3794
+ bot:
3795
+ name: Semantic Scholar Bot
3796
+ category: Crawler
3797
+ url: https://www.semanticscholar.org/crawler
3798
+
3799
+ -
3800
+ user_agent: Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)
3801
+ bot:
3802
+ name: Velen Public Web Crawler
3803
+ category: Crawler
3804
+ url: https://hunter.io/robot
3805
+
3806
+ -
3807
+ user_agent: Barkrowler/0.9 (+http://www.exensa.com/crawl)
3808
+ bot:
3809
+ name: Barkrowler
3810
+ category: Crawler
3811
+ url: http://www.exensa.com/crawl
3812
+
3813
+