Appearance
Trending Vulnerabilities
A guide to extract trending vulnerabilities from the Threat Landscape Dashboard.
The “Vulnerabilities” section of the Feedly Threat Landscape Dashboard displays the top 5 trending Vulnerabilities. Performing an authenticated GET on memes/vulnerabilities with a Feedly enterprise API token will return the list of up to 25 trending vulnerabilities. The v3/memes API is updated every hour with the latest trending vulnerabilities.
Trending Vulnerabilities
Query:
json
https://api.feedly.com/v3/memes/vulnerabilities/en?Output:
The list of vulnerabilities is available in the memes property of the response:
json
{
"topic": "vulnerabilities",
"versionString": "20210505_1500",
"version": 1620252000000,
"language": "en",
"memes": [
{
"id": "topic/vulnerabilities/meme/3f2cc350-ace1-11eb-af3a-762e48de6514",
"topic": "vulnerabilities",
"label": "CVE-2021-21551",
"score": 2.8934465013552253,
"summary": [
"Dell dbutil_2_3.sys driver contains an insufficient access control vulnerability which may lead to escalation of privileges, denial of service, or information disclosure. Local authenticated user access is required."
],
"items": [
{
"id": "igePMzPKWDWcYOH3KfzgjB/ll/lxtMvKUyEWftrhNgA=_1793a54dedf:60742e:615bd155"
},
{
"id": "NxE1UcQYtVQ5fAXp6GZqnsbADhxaTq3D90aAVsPqIpk=_1793b8937a6:b6053:de69aeb4"
}
],
"featured": true,
"referenceId": "igePMzPKWDWcYOH3KfzgjB/ll/lxtMvKUyEWftrhNgA=_1793a54dedf:60742e:615bd155",
"sparklineUrl": "",
"startDate": 1620181311199,
"rank": 1,
"vulnerabilitiesMetadata": {
"vendor": "dell",
"vendors": [
"dell"
],
"products": [],
"cvss": 7.5,
"publishedDate": 1620170100000
},
"version": 1620252000000,
"language": "en"
}
]
}| Object | Description |
|---|---|
| label | Points to the CVE id associated with the vulnerability (unless it is a 0-day that has not been assigned a CVE id yet). |
| items | Represent a list of entryId pointing to the list of entries (aka articles referencing the specific CVE/vulnerability). |
| vulnerabilitiesMetadata | Will have more information about the vendor(s), products, CVSS score. |
OpenAPI definition
json
{
"openapi": "3.1.0",
"info": {
"title": "Memes API",
"version": "1.0"
},
"servers": [
{
"url": "https://api.feedly.com/v3/memes"
}
],
"components": {
"securitySchemes": {
"sec0": {
"type": "apiKey",
"in": "header",
"name": "Authorization",
"x-bearer-format": "bearer"
}
}
},
"security": [
{
"sec0": []
}
],
"paths": {
"/vulnerabilities/en?": {
"get": {
"summary": "Trending Vulnerabilities",
"description": "A guide to extract trending vulnerabilities from the Threat Landscape Dashboard.",
"operationId": "trending-cves",
"parameters": [
{
"name": "count",
"in": "query",
"description": "The number of articles/entries to return. Maximum is 25.",
"schema": {
"type": "integer",
"format": "int32",
"default": 25
}
}
],
"responses": {
"200": {
"description": "200",
"content": {
"application/json": {
"examples": {
"Result": {
"value": "{}"
}
},
"schema": {
"type": "object",
"properties": {}
}
}
}
},
"400": {
"description": "400",
"content": {
"application/json": {
"examples": {
"Result": {
"value": "{}"
}
},
"schema": {
"type": "object",
"properties": {}
}
}
}
}
},
"deprecated": false
}
}
},
"x-readme": {
"headers": [],
"explorer-enabled": true,
"proxy-enabled": true
},
"x-readme-fauxas": true,
"_id": "654bba45ced99a1d5e45457c:654bb9cc7cc1780075736fe9"
}