Library Threat Frameworks
Get All Library Threat Frameworks
This endpoint retrieves a list of Library Threat Framework resources.
GET /api/v2/library/threat-frameworks/
Query parameters
The following parameters may be used to filter the Library Threat Framework resources in the response.
Parameter | Description |
---|---|
search | Filter Library Threat Frameworks by performing a textual search on their description . |
type | Returns all Library Threat Frameworks based on the type of framework e.g. STRIDE |
GET /api/v2/library/threat-frameworks/ HTTP/1.1
Accept: application/json
Authorization: Token "YOUR SDE ACCESS TOKEN"
HTTP/1.1 200 OK
Content-Type: application/json
{
"results": [
{
"db_id": 1,
"type": "STRIDE",
"description": "Spoofing"
},
{
"db_id": 2,
"type": "MITRE ATT&CK (Enterprise)",
"description": "(T1548): Abuse Elevation Control Mechanism"
}
]
}
Get a specific Library Threat Framework
This endpoint retrieves a single Library Threat Framework resource, as specified by the id parameter.
GET /api/v2/library/threat-frameworks/{threat_framework_id}/
URL Parameters
Parameter | Description |
---|---|
threat_framework_id | The id of the Library Threat Framework to retrieve |
GET /api/v2/library/threat-frameworks/1/ HTTP/1.1
Accept: application/json
Authorization: Token "YOUR SDE ACCESS TOKEN"
HTTP/1.1 200 OK
Content-Type: application/json
{
"db_id": 1,
"type": "STRIDE",
"description": "Elevation of Privilege"
}