Skip to main content

Prioritize

The Prioritize features allow you to assess the threat level of vulnerabilities by providing visibility into which CVEs are actively being exploited and by whom.

List Tracked CVEs

You can retrieve a paginated list of all CVEs that CrowdSec is currently tracking. This helps you identify which vulnerabilities in your environment might be under active exploitation.

curl -X 'GET' \
'https://admin.api.crowdsec.net/v1/cves?page=1&size=50' \
-H 'accept: application/json' \
-H 'x-api-key: ${KEY}'

Get CVE Details

Get detailed information about a specific CVE, including its description and CVSS score.

curl -X 'GET' \
'https://admin.api.crowdsec.net/v1/cves/CVE-2024-25600' \
-H 'accept: application/json' \
-H 'x-api-key: ${KEY}'

Get IPs Targeting a CVE

One of the most powerful features is the ability to see the IP addresses that are actively exploiting a specific CVE. This information allows you to block these IPs immediately.

curl -X 'GET' \
'https://admin.api.crowdsec.net/v1/cves/CVE-2024-25600/ips?page=1&size=50' \
-H 'accept: application/json' \
-H 'x-api-key: ${KEY}'