mirror of https://github.com/MISP/misp-objects
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
parent
4b76b30061
commit
34ac927065
|
@ -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/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/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/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/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/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.
|
* [objects/weakness](objects/weakness/definition.json) - Weakness object as described in a CWE.
|
||||||
|
|
|
@ -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"
|
||||||
|
}
|
Loading…
Reference in New Issue