virustotal_api_compat 0.1.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.github/CODE_OF_CONDUCT.md +46 -0
- data/.github/CONTRIBUTING.md +7 -0
- data/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- data/.github/pull_request_template.md +11 -0
- data/.github/workflows/ruby.yml +46 -0
- data/.gitignore +18 -0
- data/.rubocop.yml +39 -0
- data/CHANGELOG.md +70 -0
- data/Gemfile +5 -0
- data/LICENSE.txt +22 -0
- data/README.md +253 -0
- data/Rakefile +25 -0
- data/lib/virustotal_api/analysis.rb +16 -0
- data/lib/virustotal_api/base.rb +78 -0
- data/lib/virustotal_api/domain.rb +18 -0
- data/lib/virustotal_api/exceptions.rb +9 -0
- data/lib/virustotal_api/file.rb +67 -0
- data/lib/virustotal_api/group.rb +18 -0
- data/lib/virustotal_api/ip.rb +18 -0
- data/lib/virustotal_api/uri.rb +6 -0
- data/lib/virustotal_api/url.rb +38 -0
- data/lib/virustotal_api/user.rb +18 -0
- data/lib/virustotal_api/version.rb +6 -0
- data/lib/virustotal_api.rb +11 -0
- data/test/analysis_test.rb +26 -0
- data/test/base_test.rb +63 -0
- data/test/domain_test.rb +27 -0
- data/test/exceptions_test.rb +31 -0
- data/test/file_test.rb +73 -0
- data/test/fixtures/analysis.yml +544 -0
- data/test/fixtures/domain.yml +830 -0
- data/test/fixtures/domain_bad_request.yml +52 -0
- data/test/fixtures/file_analyse.yml +52 -0
- data/test/fixtures/file_find.yml +853 -0
- data/test/fixtures/file_not_found.yml +52 -0
- data/test/fixtures/file_rate_limit.yml +52 -0
- data/test/fixtures/file_unauthorized.yml +51 -0
- data/test/fixtures/file_upload.yml +54 -0
- data/test/fixtures/group_find.yml +216 -0
- data/test/fixtures/ip.yml +716 -0
- data/test/fixtures/large_file_upload.yml +99 -0
- data/test/fixtures/null_file +1 -0
- data/test/fixtures/unscanned_url_find.yml +44 -0
- data/test/fixtures/url_analyse.yml +52 -0
- data/test/fixtures/url_encoding_find.yml +651 -0
- data/test/fixtures/url_find.yml +599 -0
- data/test/fixtures/user_find.yml +213 -0
- data/test/group_test.rb +27 -0
- data/test/ip_test.rb +26 -0
- data/test/test_helper.rb +11 -0
- data/test/uri_test.rb +10 -0
- data/test/url_test.rb +47 -0
- data/test/user_test.rb +26 -0
- data/test/version_test.rb +9 -0
- data/virustotal_api.gemspec +33 -0
- metadata +287 -0
@@ -0,0 +1,716 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://www.virustotal.com/api/v3/ip_addresses/8.8.8.8
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- "*/*"
|
12
|
+
User-Agent:
|
13
|
+
- rest-client/2.1.0 (linux-gnu x86_64) ruby/2.5.1p57
|
14
|
+
X-Apikey:
|
15
|
+
- testapikey
|
16
|
+
Content-Length:
|
17
|
+
- '0'
|
18
|
+
Content-Type:
|
19
|
+
- application/x-www-form-urlencoded
|
20
|
+
Accept-Encoding:
|
21
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
22
|
+
Host:
|
23
|
+
- www.virustotal.com
|
24
|
+
response:
|
25
|
+
status:
|
26
|
+
code: 200
|
27
|
+
message: OK
|
28
|
+
headers:
|
29
|
+
Cache-Control:
|
30
|
+
- no-cache
|
31
|
+
Content-Type:
|
32
|
+
- application/json; charset=utf-8
|
33
|
+
X-Cloud-Trace-Context:
|
34
|
+
- 80c15de86e54f467baa1ce0757c4e4bc
|
35
|
+
Date:
|
36
|
+
- Wed, 02 Sep 2020 14:02:37 GMT
|
37
|
+
Server:
|
38
|
+
- Google Frontend
|
39
|
+
Content-Length:
|
40
|
+
- '29339'
|
41
|
+
body:
|
42
|
+
encoding: UTF-8
|
43
|
+
string: |-
|
44
|
+
{
|
45
|
+
"data": {
|
46
|
+
"attributes": {
|
47
|
+
"as_owner": "Google LLC",
|
48
|
+
"asn": 15169,
|
49
|
+
"continent": "NA",
|
50
|
+
"country": "US",
|
51
|
+
"last_analysis_results": {
|
52
|
+
"ADMINUSLabs": {
|
53
|
+
"category": "harmless",
|
54
|
+
"engine_name": "ADMINUSLabs",
|
55
|
+
"method": "blacklist",
|
56
|
+
"result": "clean"
|
57
|
+
},
|
58
|
+
"AegisLab WebGuard": {
|
59
|
+
"category": "harmless",
|
60
|
+
"engine_name": "AegisLab WebGuard",
|
61
|
+
"method": "blacklist",
|
62
|
+
"result": "clean"
|
63
|
+
},
|
64
|
+
"AlienVault": {
|
65
|
+
"category": "harmless",
|
66
|
+
"engine_name": "AlienVault",
|
67
|
+
"method": "blacklist",
|
68
|
+
"result": "clean"
|
69
|
+
},
|
70
|
+
"Antiy-AVL": {
|
71
|
+
"category": "harmless",
|
72
|
+
"engine_name": "Antiy-AVL",
|
73
|
+
"method": "blacklist",
|
74
|
+
"result": "clean"
|
75
|
+
},
|
76
|
+
"Artists Against 419": {
|
77
|
+
"category": "harmless",
|
78
|
+
"engine_name": "Artists Against 419",
|
79
|
+
"method": "blacklist",
|
80
|
+
"result": "clean"
|
81
|
+
},
|
82
|
+
"AutoShun": {
|
83
|
+
"category": "undetected",
|
84
|
+
"engine_name": "AutoShun",
|
85
|
+
"method": "blacklist",
|
86
|
+
"result": "unrated"
|
87
|
+
},
|
88
|
+
"Avira": {
|
89
|
+
"category": "harmless",
|
90
|
+
"engine_name": "Avira",
|
91
|
+
"method": "blacklist",
|
92
|
+
"result": "clean"
|
93
|
+
},
|
94
|
+
"BADWARE.INFO": {
|
95
|
+
"category": "harmless",
|
96
|
+
"engine_name": "BADWARE.INFO",
|
97
|
+
"method": "blacklist",
|
98
|
+
"result": "clean"
|
99
|
+
},
|
100
|
+
"Baidu-International": {
|
101
|
+
"category": "harmless",
|
102
|
+
"engine_name": "Baidu-International",
|
103
|
+
"method": "blacklist",
|
104
|
+
"result": "clean"
|
105
|
+
},
|
106
|
+
"BitDefender": {
|
107
|
+
"category": "harmless",
|
108
|
+
"engine_name": "BitDefender",
|
109
|
+
"method": "blacklist",
|
110
|
+
"result": "clean"
|
111
|
+
},
|
112
|
+
"BlockList": {
|
113
|
+
"category": "harmless",
|
114
|
+
"engine_name": "BlockList",
|
115
|
+
"method": "blacklist",
|
116
|
+
"result": "clean"
|
117
|
+
},
|
118
|
+
"Blueliv": {
|
119
|
+
"category": "harmless",
|
120
|
+
"engine_name": "Blueliv",
|
121
|
+
"method": "blacklist",
|
122
|
+
"result": "clean"
|
123
|
+
},
|
124
|
+
"Botvrij.eu": {
|
125
|
+
"category": "harmless",
|
126
|
+
"engine_name": "Botvrij.eu",
|
127
|
+
"method": "blacklist",
|
128
|
+
"result": "clean"
|
129
|
+
},
|
130
|
+
"CINS Army": {
|
131
|
+
"category": "harmless",
|
132
|
+
"engine_name": "CINS Army",
|
133
|
+
"method": "blacklist",
|
134
|
+
"result": "clean"
|
135
|
+
},
|
136
|
+
"CLEAN MX": {
|
137
|
+
"category": "harmless",
|
138
|
+
"engine_name": "CLEAN MX",
|
139
|
+
"method": "blacklist",
|
140
|
+
"result": "clean"
|
141
|
+
},
|
142
|
+
"CRDF": {
|
143
|
+
"category": "harmless",
|
144
|
+
"engine_name": "CRDF",
|
145
|
+
"method": "blacklist",
|
146
|
+
"result": "clean"
|
147
|
+
},
|
148
|
+
"Certego": {
|
149
|
+
"category": "harmless",
|
150
|
+
"engine_name": "Certego",
|
151
|
+
"method": "blacklist",
|
152
|
+
"result": "clean"
|
153
|
+
},
|
154
|
+
"Comodo Site Inspector": {
|
155
|
+
"category": "harmless",
|
156
|
+
"engine_name": "Comodo Site Inspector",
|
157
|
+
"method": "blacklist",
|
158
|
+
"result": "clean"
|
159
|
+
},
|
160
|
+
"Comodo Valkyrie Verdict": {
|
161
|
+
"category": "undetected",
|
162
|
+
"engine_name": "Comodo Valkyrie Verdict",
|
163
|
+
"method": "blacklist",
|
164
|
+
"result": "unrated"
|
165
|
+
},
|
166
|
+
"CyRadar": {
|
167
|
+
"category": "harmless",
|
168
|
+
"engine_name": "CyRadar",
|
169
|
+
"method": "blacklist",
|
170
|
+
"result": "clean"
|
171
|
+
},
|
172
|
+
"Cyan": {
|
173
|
+
"category": "undetected",
|
174
|
+
"engine_name": "Cyan",
|
175
|
+
"method": "blacklist",
|
176
|
+
"result": "unrated"
|
177
|
+
},
|
178
|
+
"CyberCrime": {
|
179
|
+
"category": "harmless",
|
180
|
+
"engine_name": "CyberCrime",
|
181
|
+
"method": "blacklist",
|
182
|
+
"result": "clean"
|
183
|
+
},
|
184
|
+
"Cyren": {
|
185
|
+
"category": "harmless",
|
186
|
+
"engine_name": "Cyren",
|
187
|
+
"method": "blacklist",
|
188
|
+
"result": "clean"
|
189
|
+
},
|
190
|
+
"DNS8": {
|
191
|
+
"category": "harmless",
|
192
|
+
"engine_name": "DNS8",
|
193
|
+
"method": "blacklist",
|
194
|
+
"result": "clean"
|
195
|
+
},
|
196
|
+
"Dr.Web": {
|
197
|
+
"category": "harmless",
|
198
|
+
"engine_name": "Dr.Web",
|
199
|
+
"method": "blacklist",
|
200
|
+
"result": "clean"
|
201
|
+
},
|
202
|
+
"ESET": {
|
203
|
+
"category": "harmless",
|
204
|
+
"engine_name": "ESET",
|
205
|
+
"method": "blacklist",
|
206
|
+
"result": "clean"
|
207
|
+
},
|
208
|
+
"ESTsecurity-Threat Inside": {
|
209
|
+
"category": "harmless",
|
210
|
+
"engine_name": "ESTsecurity-Threat Inside",
|
211
|
+
"method": "blacklist",
|
212
|
+
"result": "clean"
|
213
|
+
},
|
214
|
+
"EmergingThreats": {
|
215
|
+
"category": "harmless",
|
216
|
+
"engine_name": "EmergingThreats",
|
217
|
+
"method": "blacklist",
|
218
|
+
"result": "clean"
|
219
|
+
},
|
220
|
+
"Emsisoft": {
|
221
|
+
"category": "harmless",
|
222
|
+
"engine_name": "Emsisoft",
|
223
|
+
"method": "blacklist",
|
224
|
+
"result": "clean"
|
225
|
+
},
|
226
|
+
"EonScope": {
|
227
|
+
"category": "harmless",
|
228
|
+
"engine_name": "EonScope",
|
229
|
+
"method": "blacklist",
|
230
|
+
"result": "clean"
|
231
|
+
},
|
232
|
+
"Feodo Tracker": {
|
233
|
+
"category": "harmless",
|
234
|
+
"engine_name": "Feodo Tracker",
|
235
|
+
"method": "blacklist",
|
236
|
+
"result": "clean"
|
237
|
+
},
|
238
|
+
"Forcepoint ThreatSeeker": {
|
239
|
+
"category": "harmless",
|
240
|
+
"engine_name": "Forcepoint ThreatSeeker",
|
241
|
+
"method": "blacklist",
|
242
|
+
"result": "clean"
|
243
|
+
},
|
244
|
+
"Fortinet": {
|
245
|
+
"category": "harmless",
|
246
|
+
"engine_name": "Fortinet",
|
247
|
+
"method": "blacklist",
|
248
|
+
"result": "clean"
|
249
|
+
},
|
250
|
+
"FraudScore": {
|
251
|
+
"category": "harmless",
|
252
|
+
"engine_name": "FraudScore",
|
253
|
+
"method": "blacklist",
|
254
|
+
"result": "clean"
|
255
|
+
},
|
256
|
+
"FraudSense": {
|
257
|
+
"category": "harmless",
|
258
|
+
"engine_name": "FraudSense",
|
259
|
+
"method": "blacklist",
|
260
|
+
"result": "clean"
|
261
|
+
},
|
262
|
+
"G-Data": {
|
263
|
+
"category": "harmless",
|
264
|
+
"engine_name": "G-Data",
|
265
|
+
"method": "blacklist",
|
266
|
+
"result": "clean"
|
267
|
+
},
|
268
|
+
"Google Safebrowsing": {
|
269
|
+
"category": "harmless",
|
270
|
+
"engine_name": "Google Safebrowsing",
|
271
|
+
"method": "blacklist",
|
272
|
+
"result": "clean"
|
273
|
+
},
|
274
|
+
"GreenSnow": {
|
275
|
+
"category": "harmless",
|
276
|
+
"engine_name": "GreenSnow",
|
277
|
+
"method": "blacklist",
|
278
|
+
"result": "clean"
|
279
|
+
},
|
280
|
+
"Hoplite Industries": {
|
281
|
+
"category": "harmless",
|
282
|
+
"engine_name": "Hoplite Industries",
|
283
|
+
"method": "blacklist",
|
284
|
+
"result": "clean"
|
285
|
+
},
|
286
|
+
"IPsum": {
|
287
|
+
"category": "harmless",
|
288
|
+
"engine_name": "IPsum",
|
289
|
+
"method": "blacklist",
|
290
|
+
"result": "clean"
|
291
|
+
},
|
292
|
+
"K7AntiVirus": {
|
293
|
+
"category": "harmless",
|
294
|
+
"engine_name": "K7AntiVirus",
|
295
|
+
"method": "blacklist",
|
296
|
+
"result": "clean"
|
297
|
+
},
|
298
|
+
"Kaspersky": {
|
299
|
+
"category": "undetected",
|
300
|
+
"engine_name": "Kaspersky",
|
301
|
+
"method": "blacklist",
|
302
|
+
"result": "unrated"
|
303
|
+
},
|
304
|
+
"Lumu": {
|
305
|
+
"category": "undetected",
|
306
|
+
"engine_name": "Lumu",
|
307
|
+
"method": "blacklist",
|
308
|
+
"result": "unrated"
|
309
|
+
},
|
310
|
+
"MalSilo": {
|
311
|
+
"category": "harmless",
|
312
|
+
"engine_name": "MalSilo",
|
313
|
+
"method": "blacklist",
|
314
|
+
"result": "clean"
|
315
|
+
},
|
316
|
+
"Malc0de Database": {
|
317
|
+
"category": "harmless",
|
318
|
+
"engine_name": "Malc0de Database",
|
319
|
+
"method": "blacklist",
|
320
|
+
"result": "clean"
|
321
|
+
},
|
322
|
+
"Malekal": {
|
323
|
+
"category": "harmless",
|
324
|
+
"engine_name": "Malekal",
|
325
|
+
"method": "blacklist",
|
326
|
+
"result": "clean"
|
327
|
+
},
|
328
|
+
"Malware Domain Blocklist": {
|
329
|
+
"category": "harmless",
|
330
|
+
"engine_name": "Malware Domain Blocklist",
|
331
|
+
"method": "blacklist",
|
332
|
+
"result": "clean"
|
333
|
+
},
|
334
|
+
"MalwareDomainList": {
|
335
|
+
"category": "harmless",
|
336
|
+
"engine_name": "MalwareDomainList",
|
337
|
+
"method": "blacklist",
|
338
|
+
"result": "clean"
|
339
|
+
},
|
340
|
+
"MalwarePatrol": {
|
341
|
+
"category": "harmless",
|
342
|
+
"engine_name": "MalwarePatrol",
|
343
|
+
"method": "blacklist",
|
344
|
+
"result": "clean"
|
345
|
+
},
|
346
|
+
"Malwarebytes hpHosts": {
|
347
|
+
"category": "harmless",
|
348
|
+
"engine_name": "Malwarebytes hpHosts",
|
349
|
+
"method": "blacklist",
|
350
|
+
"result": "clean"
|
351
|
+
},
|
352
|
+
"Malwared": {
|
353
|
+
"category": "harmless",
|
354
|
+
"engine_name": "Malwared",
|
355
|
+
"method": "blacklist",
|
356
|
+
"result": "clean"
|
357
|
+
},
|
358
|
+
"Netcraft": {
|
359
|
+
"category": "undetected",
|
360
|
+
"engine_name": "Netcraft",
|
361
|
+
"method": "blacklist",
|
362
|
+
"result": "unrated"
|
363
|
+
},
|
364
|
+
"NotMining": {
|
365
|
+
"category": "undetected",
|
366
|
+
"engine_name": "NotMining",
|
367
|
+
"method": "blacklist",
|
368
|
+
"result": "unrated"
|
369
|
+
},
|
370
|
+
"Nucleon": {
|
371
|
+
"category": "harmless",
|
372
|
+
"engine_name": "Nucleon",
|
373
|
+
"method": "blacklist",
|
374
|
+
"result": "clean"
|
375
|
+
},
|
376
|
+
"OpenPhish": {
|
377
|
+
"category": "harmless",
|
378
|
+
"engine_name": "OpenPhish",
|
379
|
+
"method": "blacklist",
|
380
|
+
"result": "clean"
|
381
|
+
},
|
382
|
+
"Opera": {
|
383
|
+
"category": "harmless",
|
384
|
+
"engine_name": "Opera",
|
385
|
+
"method": "blacklist",
|
386
|
+
"result": "clean"
|
387
|
+
},
|
388
|
+
"PREBYTES": {
|
389
|
+
"category": "harmless",
|
390
|
+
"engine_name": "PREBYTES",
|
391
|
+
"method": "blacklist",
|
392
|
+
"result": "clean"
|
393
|
+
},
|
394
|
+
"PhishLabs": {
|
395
|
+
"category": "undetected",
|
396
|
+
"engine_name": "PhishLabs",
|
397
|
+
"method": "blacklist",
|
398
|
+
"result": "unrated"
|
399
|
+
},
|
400
|
+
"Phishing Database": {
|
401
|
+
"category": "harmless",
|
402
|
+
"engine_name": "Phishing Database",
|
403
|
+
"method": "blacklist",
|
404
|
+
"result": "clean"
|
405
|
+
},
|
406
|
+
"Phishtank": {
|
407
|
+
"category": "harmless",
|
408
|
+
"engine_name": "Phishtank",
|
409
|
+
"method": "blacklist",
|
410
|
+
"result": "clean"
|
411
|
+
},
|
412
|
+
"Quick Heal": {
|
413
|
+
"category": "harmless",
|
414
|
+
"engine_name": "Quick Heal",
|
415
|
+
"method": "blacklist",
|
416
|
+
"result": "clean"
|
417
|
+
},
|
418
|
+
"Quttera": {
|
419
|
+
"category": "harmless",
|
420
|
+
"engine_name": "Quttera",
|
421
|
+
"method": "blacklist",
|
422
|
+
"result": "clean"
|
423
|
+
},
|
424
|
+
"Rising": {
|
425
|
+
"category": "harmless",
|
426
|
+
"engine_name": "Rising",
|
427
|
+
"method": "blacklist",
|
428
|
+
"result": "clean"
|
429
|
+
},
|
430
|
+
"SCUMWARE.org": {
|
431
|
+
"category": "harmless",
|
432
|
+
"engine_name": "SCUMWARE.org",
|
433
|
+
"method": "blacklist",
|
434
|
+
"result": "clean"
|
435
|
+
},
|
436
|
+
"Sangfor": {
|
437
|
+
"category": "harmless",
|
438
|
+
"engine_name": "Sangfor",
|
439
|
+
"method": "blacklist",
|
440
|
+
"result": "clean"
|
441
|
+
},
|
442
|
+
"SecureBrain": {
|
443
|
+
"category": "harmless",
|
444
|
+
"engine_name": "SecureBrain",
|
445
|
+
"method": "blacklist",
|
446
|
+
"result": "clean"
|
447
|
+
},
|
448
|
+
"Segasec": {
|
449
|
+
"category": "undetected",
|
450
|
+
"engine_name": "Segasec",
|
451
|
+
"method": "blacklist",
|
452
|
+
"result": "unrated"
|
453
|
+
},
|
454
|
+
"Snort IP sample list": {
|
455
|
+
"category": "harmless",
|
456
|
+
"engine_name": "Snort IP sample list",
|
457
|
+
"method": "blacklist",
|
458
|
+
"result": "clean"
|
459
|
+
},
|
460
|
+
"Sophos": {
|
461
|
+
"category": "harmless",
|
462
|
+
"engine_name": "Sophos",
|
463
|
+
"method": "blacklist",
|
464
|
+
"result": "clean"
|
465
|
+
},
|
466
|
+
"Spam404": {
|
467
|
+
"category": "harmless",
|
468
|
+
"engine_name": "Spam404",
|
469
|
+
"method": "blacklist",
|
470
|
+
"result": "clean"
|
471
|
+
},
|
472
|
+
"Spamhaus": {
|
473
|
+
"category": "harmless",
|
474
|
+
"engine_name": "Spamhaus",
|
475
|
+
"method": "blacklist",
|
476
|
+
"result": "clean"
|
477
|
+
},
|
478
|
+
"StopBadware": {
|
479
|
+
"category": "undetected",
|
480
|
+
"engine_name": "StopBadware",
|
481
|
+
"method": "blacklist",
|
482
|
+
"result": "unrated"
|
483
|
+
},
|
484
|
+
"StopForumSpam": {
|
485
|
+
"category": "harmless",
|
486
|
+
"engine_name": "StopForumSpam",
|
487
|
+
"method": "blacklist",
|
488
|
+
"result": "clean"
|
489
|
+
},
|
490
|
+
"Sucuri SiteCheck": {
|
491
|
+
"category": "harmless",
|
492
|
+
"engine_name": "Sucuri SiteCheck",
|
493
|
+
"method": "blacklist",
|
494
|
+
"result": "clean"
|
495
|
+
},
|
496
|
+
"Tencent": {
|
497
|
+
"category": "harmless",
|
498
|
+
"engine_name": "Tencent",
|
499
|
+
"method": "blacklist",
|
500
|
+
"result": "clean"
|
501
|
+
},
|
502
|
+
"ThreatHive": {
|
503
|
+
"category": "harmless",
|
504
|
+
"engine_name": "ThreatHive",
|
505
|
+
"method": "blacklist",
|
506
|
+
"result": "clean"
|
507
|
+
},
|
508
|
+
"Threatsourcing": {
|
509
|
+
"category": "harmless",
|
510
|
+
"engine_name": "Threatsourcing",
|
511
|
+
"method": "blacklist",
|
512
|
+
"result": "clean"
|
513
|
+
},
|
514
|
+
"Trustwave": {
|
515
|
+
"category": "harmless",
|
516
|
+
"engine_name": "Trustwave",
|
517
|
+
"method": "blacklist",
|
518
|
+
"result": "clean"
|
519
|
+
},
|
520
|
+
"URLQuery": {
|
521
|
+
"category": "harmless",
|
522
|
+
"engine_name": "URLQuery",
|
523
|
+
"method": "blacklist",
|
524
|
+
"result": "clean"
|
525
|
+
},
|
526
|
+
"URLhaus": {
|
527
|
+
"category": "harmless",
|
528
|
+
"engine_name": "URLhaus",
|
529
|
+
"method": "blacklist",
|
530
|
+
"result": "clean"
|
531
|
+
},
|
532
|
+
"VX Vault": {
|
533
|
+
"category": "harmless",
|
534
|
+
"engine_name": "VX Vault",
|
535
|
+
"method": "blacklist",
|
536
|
+
"result": "clean"
|
537
|
+
},
|
538
|
+
"Virusdie External Site Scan": {
|
539
|
+
"category": "harmless",
|
540
|
+
"engine_name": "Virusdie External Site Scan",
|
541
|
+
"method": "blacklist",
|
542
|
+
"result": "clean"
|
543
|
+
},
|
544
|
+
"Web Security Guard": {
|
545
|
+
"category": "harmless",
|
546
|
+
"engine_name": "Web Security Guard",
|
547
|
+
"method": "blacklist",
|
548
|
+
"result": "clean"
|
549
|
+
},
|
550
|
+
"Yandex Safebrowsing": {
|
551
|
+
"category": "harmless",
|
552
|
+
"engine_name": "Yandex Safebrowsing",
|
553
|
+
"method": "blacklist",
|
554
|
+
"result": "clean"
|
555
|
+
},
|
556
|
+
"ZCloudsec": {
|
557
|
+
"category": "harmless",
|
558
|
+
"engine_name": "ZCloudsec",
|
559
|
+
"method": "blacklist",
|
560
|
+
"result": "clean"
|
561
|
+
},
|
562
|
+
"ZDB Zeus": {
|
563
|
+
"category": "harmless",
|
564
|
+
"engine_name": "ZDB Zeus",
|
565
|
+
"method": "blacklist",
|
566
|
+
"result": "clean"
|
567
|
+
},
|
568
|
+
"ZeroCERT": {
|
569
|
+
"category": "harmless",
|
570
|
+
"engine_name": "ZeroCERT",
|
571
|
+
"method": "blacklist",
|
572
|
+
"result": "clean"
|
573
|
+
},
|
574
|
+
"Zerofox": {
|
575
|
+
"category": "harmless",
|
576
|
+
"engine_name": "Zerofox",
|
577
|
+
"method": "blacklist",
|
578
|
+
"result": "clean"
|
579
|
+
},
|
580
|
+
"ZeusTracker": {
|
581
|
+
"category": "harmless",
|
582
|
+
"engine_name": "ZeusTracker",
|
583
|
+
"method": "blacklist",
|
584
|
+
"result": "clean"
|
585
|
+
},
|
586
|
+
"desenmascara.me": {
|
587
|
+
"category": "harmless",
|
588
|
+
"engine_name": "desenmascara.me",
|
589
|
+
"method": "blacklist",
|
590
|
+
"result": "clean"
|
591
|
+
},
|
592
|
+
"malwares.com URL checker": {
|
593
|
+
"category": "harmless",
|
594
|
+
"engine_name": "malwares.com URL checker",
|
595
|
+
"method": "blacklist",
|
596
|
+
"result": "clean"
|
597
|
+
},
|
598
|
+
"securolytics": {
|
599
|
+
"category": "harmless",
|
600
|
+
"engine_name": "securolytics",
|
601
|
+
"method": "blacklist",
|
602
|
+
"result": "clean"
|
603
|
+
},
|
604
|
+
"zvelo": {
|
605
|
+
"category": "harmless",
|
606
|
+
"engine_name": "zvelo",
|
607
|
+
"method": "blacklist",
|
608
|
+
"result": "clean"
|
609
|
+
}
|
610
|
+
},
|
611
|
+
"last_analysis_stats": {
|
612
|
+
"harmless": 84,
|
613
|
+
"malicious": 0,
|
614
|
+
"suspicious": 0,
|
615
|
+
"timeout": 0,
|
616
|
+
"undetected": 10
|
617
|
+
},
|
618
|
+
"last_https_certificate": {
|
619
|
+
"cert_signature": {
|
620
|
+
"signature": "1ff5733c13fde8026ed8c8b6f4c561eb63104fd1172477010104e39c04ebc6e9ebc5f7857b3dd4cb3cbe5d47b27041435733a6b616f2055722f7a5bffbaff77b3a6a814489702b481164e6d711b27d01b376fe9a8af5d5ea63dd15261da93614161be1b4af73e3274e1ff1c8e9277e9f090661266fde17557abe87025e35b0d16decd56d28a76d36596f5ab288f690bfb4a4a3e71699e1584aeeff454a4d980fca916df755c50bfab97d08b53db8d017d37f1ea9da22b613f1e04860f3e6322f885de29b5d7929dfc063f2cc525324524910cc44da50ed8853f29d771ca53794a80496d9a971feec50c9de0e48ffab513c2ed52922a330a63680b56f27458226",
|
621
|
+
"signature_algorithm": "sha256RSA"
|
622
|
+
},
|
623
|
+
"extensions": {
|
624
|
+
"1.3.6.1.4.1.11129.2.4.2": "0481f300f1007700e712f2b0377e1a62fb8ec90c6184f1ea7b37cb561d11265b",
|
625
|
+
"CA": true,
|
626
|
+
"authority_key_identifier": {
|
627
|
+
"keyid": "98d1f86e10ebcf9bec609f18901ba0eb7d09fd2b"
|
628
|
+
},
|
629
|
+
"ca_information_access": {
|
630
|
+
"CA Issuers": "http://pki.goog/gsr2/GTS1O1.crt",
|
631
|
+
"OCSP": "http://ocsp.pki.goog/gts1o1core"
|
632
|
+
},
|
633
|
+
"certificate_policies": [
|
634
|
+
"2.23.140.1.2.2",
|
635
|
+
"1.3.6.1.4.1.11129.2.5.3"
|
636
|
+
],
|
637
|
+
"crl_distribution_points": [
|
638
|
+
"http://crl.pki.goog/GTS1O1core.crl"
|
639
|
+
],
|
640
|
+
"extended_key_usage": [
|
641
|
+
"serverAuth"
|
642
|
+
],
|
643
|
+
"key_usage": [
|
644
|
+
"ff"
|
645
|
+
],
|
646
|
+
"subject_alternative_name": [
|
647
|
+
"dns.google",
|
648
|
+
"*.dns.google.com",
|
649
|
+
"8888.google",
|
650
|
+
"dns.google.com",
|
651
|
+
"dns64.dns.google",
|
652
|
+
"H`H`d",
|
653
|
+
"H`H`dd",
|
654
|
+
" \\x01H`H`\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x88D",
|
655
|
+
" \\x01H`H`\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x88\\x88",
|
656
|
+
"\b\b\u0004\u0004",
|
657
|
+
"\b\b\b\b"
|
658
|
+
],
|
659
|
+
"subject_key_identifier": "6f1d1ad1db8fc1289402f35978fd62e92508c9a5",
|
660
|
+
"tags": []
|
661
|
+
},
|
662
|
+
"issuer": {
|
663
|
+
"C": "US",
|
664
|
+
"CN": "GTS CA 1O1",
|
665
|
+
"O": "Google Trust Services"
|
666
|
+
},
|
667
|
+
"public_key": {
|
668
|
+
"algorithm": "RSA",
|
669
|
+
"rsa": {
|
670
|
+
"exponent": "010001",
|
671
|
+
"key_size": 2048,
|
672
|
+
"modulus": "00bc35740af54f45a1716bb2b3b5094ba22f50eb6aeefa90ffd60bb4fd6c09b2d2c06e5333bce8571d5d81896f30509b59c44f8835466a5e6e33de35b5cb7cc5ec4d46def057649e95d51d7959f60abc0c1a17a8d06183875f916524a3cba216f361a02e057dc7b47903070d899c906c481e438516343f46fd94fdfb7723e9c239d3145af2e66ef78f5da7482bb613e80b968014414ec88d11f86045c1c5682b97c23c8ebaf4e27af9c411cbfa803fade22234ccae64065b1bd7ce04ca9b55c33bcc98f4056deb7d35fc2e7e02c15f4bc5761a1ae52dea5855190f529d772c663b1f53b3cfd1aa3a7375eaec78ca3d0e816eeae8d06a221894d847cfeec1b34ca3"
|
673
|
+
}
|
674
|
+
},
|
675
|
+
"serial_number": "b626a3b4372008f2020000000077b97e",
|
676
|
+
"signature_algorithm": "sha256RSA",
|
677
|
+
"size": 1576,
|
678
|
+
"subject": {
|
679
|
+
"C": "US",
|
680
|
+
"CN": "dns.google",
|
681
|
+
"L": "Mountain View",
|
682
|
+
"O": "Google LLC",
|
683
|
+
"ST": "California"
|
684
|
+
},
|
685
|
+
"tags": [],
|
686
|
+
"thumbprint": "e3291861b86eabf5e850b0c575b88f4978cf2e5e",
|
687
|
+
"thumbprint_sha256": "36d91cf360b272163273f12dab5a66806895cf4328c32f29b4ddb35cdab89fb9",
|
688
|
+
"validity": {
|
689
|
+
"not_after": "2020-11-03 08:47:32",
|
690
|
+
"not_before": "2020-08-11 08:47:32"
|
691
|
+
},
|
692
|
+
"version": "V3"
|
693
|
+
},
|
694
|
+
"last_https_certificate_date": 1599005235,
|
695
|
+
"last_modification_date": 1599055305,
|
696
|
+
"network": "8.8.8.0/24",
|
697
|
+
"regional_internet_registry": "ARIN",
|
698
|
+
"reputation": 264,
|
699
|
+
"tags": [],
|
700
|
+
"total_votes": {
|
701
|
+
"harmless": 21,
|
702
|
+
"malicious": 3
|
703
|
+
},
|
704
|
+
"whois": "NetRange: 8.0.0.0 - 8.127.255.255\nCIDR: 8.0.0.0/9\nNetName: LVLT-ORG-8-8\nNetHandle: NET-8-0-0-0-1\nParent: NET8 (NET-8-0-0-0-0)\nNetType: Direct Allocation\nOriginAS: \nOrganization: Level 3 Parent, LLC (LPL-141)\nRegDate: 1992-12-01\nUpdated: 2018-04-23\nRef: https://rdap.arin.net/registry//ip/8.0.0.0\nOrgName: Level 3 Parent, LLC\nOrgId: LPL-141\nAddress: 100 CenturyLink Drive\nCity: Monroe\nStateProv: LA\nPostalCode: 71203\nCountry: US\nRegDate: 2018-02-06\nUpdated: 2020-01-15\nComment: ADDRESSES WITHIN THIS BLOCK ARE NON-PORTABLE ANY ISP ANNOUNCING PORTIONS WITHIN OUR RANGES SHOULD NOT RELY ON PRESENTED LOA'S UNLESS THOSE RANGES ARE ALSO ANNOUNCED TO A CENTURYLINK ASN.\nComment: \nComment: All abuse reports MUST include: \nComment: * src IP \nComment: * dest IP (your IP) \nComment: * dest port \nComment: * Accurate date/timestamp and timezone of activity \nComment: * Intensity/frequency (short log extracts) \nComment: * Your contact details (phone and email) \nComment: Without these we will be unable to identify the correct owner of the IP address at that point in time.\nComment: \nComment: For subpoena or court order please fax 844.254.5800 or refer to our Law Enforcement Support page http://www.centurylink.com/static/Pages/AboutUs/Legal/LawEnforcement/\nRef: https://rdap.arin.net/registry//entity/LPL-141\nOrgTechHandle: IPADD5-ARIN\nOrgTechName: ipaddressing\nOrgTechPhone: +1-877-453-8353 \nOrgTechEmail: ipaddressing@level3.com\nOrgTechRef: https://rdap.arin.net/registry//entity/IPADD5-ARIN\nOrgAbuseHandle: IPADD5-ARIN\nOrgAbuseName: ipaddressing\nOrgAbusePhone: +1-877-453-8353 \nOrgAbuseEmail: ipaddressing@level3.com\nOrgAbuseRef: https://rdap.arin.net/registry//entity/IPADD5-ARIN\nNetRange: 8.8.8.0 - 8.8.8.255\nCIDR: 8.8.8.0/24\nNetName: LVLT-GOGL-8-8-8\nNetHandle: NET-8-8-8-0-1\nParent: LVLT-ORG-8-8 (NET-8-0-0-0-1)\nNetType: Reallocated\nOriginAS: \nOrganization: Google LLC (GOGL)\nRegDate: 2014-03-14\nUpdated: 2014-03-14\nRef: https://rdap.arin.net/registry//ip/8.8.8.0\nOrgName: Google LLC\nOrgId: GOGL\nAddress: 1600 Amphitheatre Parkway\nCity: Mountain View\nStateProv: CA\nPostalCode: 94043\nCountry: US\nRegDate: 2000-03-30\nUpdated: 2019-10-31\nComment: Please note that the recommended way to file abuse complaints are located in the following links. \nComment: \nComment: To report abuse and illegal activity: https://www.google.com/contact/\nComment: \nComment: For legal requests: http://support.google.com/legal \nComment: \nComment: Regards, \nComment: The Google Team\nRef: https://rdap.arin.net/registry//entity/GOGL\nOrgAbuseHandle: ABUSE5250-ARIN\nOrgAbuseName: Abuse\nOrgAbusePhone: +1-650-253-0000 \nOrgAbuseEmail: network-abuse@google.com\nOrgAbuseRef: https://rdap.arin.net/registry//entity/ABUSE5250-ARIN\nOrgTechHandle: ZG39-ARIN\nOrgTechName: Google LLC\nOrgTechPhone: +1-650-253-0000 \nOrgTechEmail: arin-contact@google.com\nOrgTechRef: https://rdap.arin.net/registry//entity/ZG39-ARIN\n",
|
705
|
+
"whois_date": 1596890512
|
706
|
+
},
|
707
|
+
"id": "8.8.8.8",
|
708
|
+
"links": {
|
709
|
+
"self": "https://www.virustotal.com/api/v3/ip_addresses/8.8.8.8"
|
710
|
+
},
|
711
|
+
"type": "ip_address"
|
712
|
+
}
|
713
|
+
}
|
714
|
+
http_version:
|
715
|
+
recorded_at: Wed, 02 Sep 2020 14:02:37 GMT
|
716
|
+
recorded_with: VCR 5.0.0
|