Skip to main content
GET
/
mitigation
/
{cve_id}
Get CVE Mitigation Steps
curl --request GET \
  --url https://api.altostrat.io/scans/cve/mitigation/{cve_id} \
  --header 'Authorization: Bearer <token>'
{
  "cve_id": "CVE-2021-44228",
  "mitigation": "- Update Log4j to version 2.17.1 or later.\n- If patching is not possible, remove the JndiLookup class from the classpath.\n- Configure firewall rules to restrict outbound LDAP/RMI traffic."
}

Authorizations

Authorization
string
header
required

Authentication token obtained via Altostrat platform login.

Path Parameters

cve_id
string
required

The CVE ID (e.g., CVE-2021-44228).

Example:

"CVE-2021-44228"

Response

Mitigation steps for the CVE.

AI-generated mitigation steps for a given CVE ID.

cve_id
string
Example:

"CVE-2021-44228"

mitigation
string<markdown>

Markdown formatted string containing suggested mitigation steps.

Example:

"- Update Log4j to version 2.17.1 or later.\n- If patching is not possible, remove the JndiLookup class from the classpath.\n- Configure firewall rules to restrict outbound LDAP/RMI traffic."

I