Skip to main content

Vendors, Products & Tags

The Live Exploit Tracker provides lookup endpoints to explore the coverage landscape. These help answer questions like "what WordPress vulnerabilities are being tracked?", "which Citrix products are covered?", or "what enterprise software threats should I monitor?"

Tags

Tags are technology categories applied to CVEs and fingerprint rules (e.g., wordpress, cms, enterprise_software, file_sharing).

List All Tags

TEXT
GET /v1/tags
SH
curl -X 'GET' \
'https://admin.api.crowdsec.net/v1/tags' \
-H 'accept: application/json' \
-H 'x-api-key: ${KEY}'

Each tag includes:

FieldTypeDescription
valuestringTag name
nb_cvesintegerNumber of CVEs with this tag
nb_fingerprintsintegerNumber of fingerprint rules with this tag
nb_ips_cvesintegerTotal attacker IPs across CVEs with this tag
nb_ips_fingerprintsintegerTotal attacker IPs across fingerprint rules with this tag
latest_rule_releasedatetimeMost recent detection rule release for this tag

Get Tag Impact

View all CVEs and fingerprint rules associated with a specific tag:

TEXT
GET /v1/tags/{tag}
SH
curl -X 'GET' \
'https://admin.api.crowdsec.net/v1/tags/wordpress' \
-H 'accept: application/json' \
-H 'x-api-key: ${KEY}'

Vendors

Vendors are the organizations responsible for the affected software (e.g., Microsoft, Citrix, WordPress).

List All Vendors

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

Each vendor includes the same statistics as tags: number of CVEs, fingerprint rules, and attacker IPs.

Get Vendor Impact

View all CVEs and fingerprint rules affecting a specific vendor's products:

TEXT
GET /v1/vendors/{vendor}
SH
curl -X 'GET' \
'https://admin.api.crowdsec.net/v1/vendors/Microsoft' \
-H 'accept: application/json' \
-H 'x-api-key: ${KEY}'

Subscribe an Integration to a Vendor

Subscribing an integration to a vendor automatically covers all current and future CVEs and reconnaissance rules for that vendor's products. When a new CVE or reconnaissance rule is added for the vendor, the integration's blocklist is updated automatically — no action needed on your part.

TEXT
POST /v1/vendors/{vendor}/integrations
SH
curl -X 'POST' \
'https://admin.api.crowdsec.net/v1/vendors/Microsoft/integrations' \
-H 'accept: application/json' \
-H 'x-api-key: ${KEY}' \
-H 'Content-Type: application/json' \
-d '{"name": "production_firewall"}'
tip

Vendor subscriptions are the simplest way to get broad coverage for your technology stack. Subscribe to the vendors you rely on, and you'll automatically be protected against all tracked threats for their products — including new ones added in the future.

List Subscribed Integrations for a Vendor

TEXT
GET /v1/vendors/{vendor}/integrations
SH
curl -X 'GET' \
'https://admin.api.crowdsec.net/v1/vendors/Microsoft/integrations' \
-H 'accept: application/json' \
-H 'x-api-key: ${KEY}'

Unsubscribe an Integration from a Vendor

TEXT
DELETE /v1/vendors/{vendor}/integrations/{integration_name}
SH
curl -X 'DELETE' \
'https://admin.api.crowdsec.net/v1/vendors/Microsoft/integrations/production_firewall' \
-H 'accept: application/json' \
-H 'x-api-key: ${KEY}'

Products

Products are specific software applications (e.g., Exchange Server, BIG-IP, WordPress).

List All Products

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

Get Product Impact

View all CVEs and fingerprint rules affecting a specific product:

TEXT
GET /v1/products/{product}
SH
curl -X 'GET' \
'https://admin.api.crowdsec.net/v1/products/Exchange%20Server' \
-H 'accept: application/json' \
-H 'x-api-key: ${KEY}'

Use Cases

These lookup endpoints are particularly useful for:

  • Asset-based monitoring: "Show me all tracked threats for the products in my technology stack."
  • Coverage assessment: "How many vulnerabilities affecting WordPress does CrowdSec track?"
  • Reporting: "What's the overall threat landscape for enterprise software this month?"
  • Vendor subscriptions: Subscribe an integration to your vendors and automatically receive blocklist coverage for all their current and future CVEs and reconnaissance rules — no scripting required.
CrowdSec Docs
We use cookies

This site uses cookies to help us improve your experience. You can accept or decline below.