-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVirustotalDownloader.json
34 lines (34 loc) · 1.03 KB
/
VirustotalDownloader.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
{
"name": "Virustotal Downloader",
"version": "0.1",
"author": "Mario Henkel @hariomenkel",
"url": "https://github.com/TheHive-Project/Cortex-Analyzers",
"license": "AGPL-V3",
"description": "Download a file from Virustotal by its hash",
"dataTypeList": ["thehive:case_artifact"],
"command": "VirustotalDownloader/VirustotalDownloader.py",
"baseConfig": "VirustotalDownloader",
"configurationItems": [
{
"name": "virustotal_apikey",
"description": "Virustotal API key which should be used to download files",
"type": "string",
"multi": false,
"required": true
},
{
"name": "thehive_url",
"description": "URL pointing to your TheHive installation, e.g. 'http://127.0.0.1:9000'",
"type": "string",
"multi": false,
"required": true
},
{
"name": "thehive_apikey",
"description": "TheHive API key which is used to add the downloaded file back to the alert/case",
"type": "string",
"multi": false,
"required": true
}
]
}