GET/api/advisories
Advisories, newest first, filtered by package, severity, ecosystem, period or words
- productPackage (project) id, e.g. vllm, langchain, mlflow; list them with list_packages
- severitySeverity
- ecosystemPackage ecosystem
- periodPublished in a year (YYYY) or month (YYYY-MM)
- qWords in the summary, or an advisory, CVE or alias id
- limitItems per page, 1 to 200
- offsetItems to skip, for the next page
curl -s "https://advisories.fru.dev/api/advisories?product=vllm&severity=critical&limit=2"Sample response
{
"advisories": [
{
"id": "GHSA-94f4-hr76-p5j6",
"cve": "CVE-2026-48746",
"aliases": [
"CVE-2026-48746",
"PYSEC-2026-226"
],
"summary": "vLLM: OpenAI auth bypass",
"severity": "critical",
"score": 9.1,
"product": "vllm",
"products": [
"vllm"
],
"fixed": "0.22.0",
"published": "2026-06-16",
"modified": "2026-09-10",
"withdrawn": "",
"url": "https://github.com/advisories/GHSA-94f4-hr76-p5j6",
"foundAt": "2026-09-24 22:37:49"
},
{
"id": "GHSA-4r2x-xpjr-7cvv",
"cve": "CVE-2026-22778",
"aliases": [
"CVE-2026-22778",
"PYSEC-2026-565"
],
"summary": "vLLM has RCE In Video Processing",
"severity": "critical",
"score": 9.8,
"product": "vllm",
"products": [
"vllm"
],
"fixed": "0.14.1",
"published": "2026-02-02",
"modified": "2026-09-10",
"withdrawn": "",
"url": "https://github.com/advisories/GHSA-4r2x-xpjr-7cvv",
"foundAt": "2026-09-24 22:37:49"
}
],
"total": 9,
"limit": 2,
"offset": 0,
"next": "/api/advisories?product=vllm&severity=critical&limit=2&offset=2"
}