new: [virustotal-graph] VirusTotal graph object added

Based on the discussion with VT, virustotal-graph object has been added which will
be used with the expansion modules and also to trigger the specific
quick-tab in MISP to display the VT graph result in an iframe if this
object is present.
pull/213/head
Alexandre Dulaunoy 2019-12-03 07:33:33 +01:00
parent 4b76b30061
commit 34ac927065
No known key found for this signature in database
GPG Key ID: 09E2CD4944E6CBCD
2 changed files with 53 additions and 0 deletions

View File

@ -160,6 +160,7 @@ for a specific attribute. An optional **to_ids** boolean field to disable the ID
* [objects/user-account](objects/user-account/definition.json) - Object describing a user account (UNIX, Windows, etc).
* [objects/vehicle](objects/vehicle/definition.json) - Vehicle object template to describe a vehicle information and registration.
* [objects/victim](objects/victim/definition.json) - a victim object to describe the organisation being targeted or abused.
* [objects/virustotal-graph](objects/virustotal-graph/definition.json) - VirusTotal graph.
* [objects/virustotal-report](objects/virustotal-report/definition.json) - VirusTotal report.
* [objects/vulnerability](objects/vulnerability/definition.json) - Vulnerability object to describe software or hardware vulnerability as described in a CVE.
* [objects/weakness](objects/weakness/definition.json) - Weakness object as described in a CWE.

View File

@ -0,0 +1,52 @@
{
"required": [
"permalink"
],
"attributes": {
"access": {
"description": "Access to the VirusTotal graph",
"disable_correlation": true,
"categories": [
"External analysis"
],
"ui-priority": 1,
"misp-attribute": "text",
"values_list": [
"Private",
"Public"
]
},
"permalink": {
"description": "Permalink Reference to the VirusTotal graph",
"categories": [
"External analysis"
],
"ui-priority": 2,
"misp-attribute": "link"
},
"comment": {
"description": "Comment related to this VirusTotal graph",
"categories": [
"External analysis"
],
"misp-attribute": "text",
"ui-priority": 2,
"multiple": true,
"disable_correlation": true
},
"screenshot": {
"description": "Screenshot of the VirusTotal graph",
"misp-attribute": "attachment",
"disable_correlation": true,
"ui-priority": 1,
"categories": [
"External analysis"
]
}
},
"version": 1,
"description": "VirusTotal graph",
"meta-category": "misc",
"uuid": "9b421055-b1bb-4c33-9ead-7fa3f39e2232",
"name": "virustotal-graph"
}