Security Information
Get a Vulnerability by ID
Retrieve the currently stored Vulnerability data for the given ID.
The result will be what is currently stored, ignoring any pending updates or deletes.
get/rest/security/1.0/vulnerability/{vulnerabilityId}
Path parameters
vulnerabilityIdstring required
The ID of the Vulnerability to fetch.
Response
The Vulnerability data currently stored for the given ID.
Example response
{
"schemaVersion": "1.0",
"id": "111-222-333",
"updateSequenceNumber": 1523494301448,
"containerId": "111-222-333",
"displayName": "curl/libcurl3 - Buffer Override",
"description": "## Overview\n\n\nAffected versions of this package are vulnerable to MeltLeak",
"url": "https://example.com/project/CWE-123/summary",
"type": "sca",
"introducedDate": "2018-01-20T23:27:25.000Z",
"lastUpdated": "2018-01-20T23:27:25.000Z",
"severity": {
"level": "critical"
},
"identifiers": [
{
"displayName": "CWE-123",
"url": "https://cwe.mitre.org/data/definitions/123.html"
}
],
"status": "open",
"additionalInfo": {
"content": "More information on the vulnerability, as a string",
"url": "https://example.com/project/CWE-123/additionalInfo"
},
"addAssociations": [
{
"associationType": "issueIdOrKeys",
"values": [
"PROJ-1234"
]
}
],
"removeAssociations": [
{
"associationType": "issueIdOrKeys",
"values": [
"PROJ-1234"
]
}
],
"associationsLastUpdated": "2018-01-20T23:27:25.000Z",
"associationsUpdateSequenceNumber": 1523494301448
}