OT/ICS patch feasibility for a CVE
OT/ICS patch feasibility for a CVE. Pass ?id=CVE-XXXX-XXXX. Returns patch availability, OT-safe workarounds, patch complexity per ICS layer, estimated downtime, safe-to-patch-live flag, deployment strategy, and risk-vs-disruption score 1-10.
50000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-11
updated
Provider
ot-intel-api.onrender.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x1888192FAc6a69e4cd7d078eC4bCf6F24f7C767B",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"id": "CVE-2021-34527"
},
"type": "http"
},
"output": {
"example": {
"actively_exploited": true,
"cve_id": "CVE-2021-34527",
"cvss_score": 8.8,
"data_sources": [
"NVD",
"CISA-KEV",
"DeepSeek-CTI-Analysis"
],
"freshness": "2025-05-22T10:00:00.000Z",
"ot_feasibility": {
"deployment_strategy": "Apply during planned outage. Test on non-production SCADA node first.",
"estimated_downtime_minutes": 30,
"patch_complexity": "Medium",
"recommended_window": "Scheduled maintenance window",
"requires_reboot": true,
"safe_to_patch_live": false
},
"patch_available": true,
"risk_vs_disruption": {
"rationale": "In CISA KEV — actively exploited. Patch urgently despite downtime required.",
"score": 9
},
"severity": "HIGH",
"vendor_advisories": [
{
"advisory_url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2021-34527",
"tags": [
"Patch",
"Vendor Advisory"
]
}
],
"workarounds": [
"Disable the Print Spooler service on OT systems where printing is not required",
"Block inbound SMB (port 445) at the IT/OT DMZ firewall"
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"id": {
"description": "CVE identifier e.g. CVE-2021-34527",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://ot-intel-api.onrender.com/ot/patch" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://ot-intel-api.onrender.com/ot/patch");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://ot-intel-api.onrender.com/ot/patch")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/8944.json, and this resource appears in /discovery/resources and /discovery/search.