-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_threat_intel.json
More file actions
52 lines (52 loc) · 1.2 KB
/
test_threat_intel.json
File metadata and controls
52 lines (52 loc) · 1.2 KB
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
{
"enabled": true,
"virusTotal": {
"enabled": true,
"apiKey": "test-vt-key",
"baseUrl": "https://www.virustotal.com/vtapi/v2/",
"rateLimit": {
"requestsPerMinute": 4,
"requestsPerDay": 500,
"requestsPerMonth": 15500
},
"timeoutSeconds": 30,
"retryAttempts": 3,
"cacheExpiryHours": 24
},
"malwareBazaar": {
"enabled": true,
"baseUrl": "https://mb-api.abuse.ch/api/v1/",
"rateLimit": {
"requestsPerMinute": 100,
"requestsPerDay": 10000,
"requestsPerMonth": 100000
},
"timeoutSeconds": 15,
"retryAttempts": 3,
"cacheExpiryHours": 12
},
"alienVaultOTX": {
"enabled": true,
"apiKey": "test-otx-key",
"baseUrl": "https://otx.alienvault.com/api/v1/",
"rateLimit": {
"requestsPerMinute": 10,
"requestsPerDay": 1000,
"requestsPerMonth": 10000
},
"timeoutSeconds": 20,
"retryAttempts": 3,
"cacheExpiryHours": 6
},
"caching": {
"enabled": true,
"maxCacheSize": 10000,
"defaultCacheExpiryHours": 12
},
"fallbackBehavior": {
"continueOnApiFailure": true,
"maxConcurrentApiCalls": 3,
"circuitBreakerEnabled": true,
"circuitBreakerThreshold": 5
}
}