ICS detection artifact retrieval
ICS detection artifact retrieval. Pass ?target=PIPEDREAM or ?target=SANDWORM&format=sigma. Returns YARA/Sigma rules for the target malware or actor, sourced from public corpus (Florian Roth signature-base, CISA advisories) with validated:true, or DeepSeek-synthesised with validated:false. Designed for automated threat hunting pipelines that commit rules to SIEMs and EDRs — validated:true rules are safe to deploy; validated:false require lab testing first.
50000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-25
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": {
"target": "PIPEDREAM"
},
"type": "http"
},
"output": {
"example": {
"artifact_type": "malware",
"data_sources": [
"OT-Intel-DB",
"DeepSeek-CTI-Analysis"
],
"freshness": "2026-06-19T10:00:00Z",
"ot_safe_validation": "0 of 1 rules sourced from public corpus. Rules with validated:false require lab testing before production deployment.",
"signatures": [
{
"ot_safe_note": "Synthesised from CISA advisory AA22-103A. Test against OT baseline before SIEM deployment.",
"raw_rule": "rule PIPEDREAM_INCONTROLLER_Loader { meta: ... strings: ... condition: ... }",
"rule_name": "PIPEDREAM_INCONTROLLER_Loader",
"source": "manual",
"target_layer": "engineering_workstation",
"type": "YARA",
"validated": false
}
],
"synthesised_count": 1,
"target": "PIPEDREAM",
"validated_count": 0
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"format": {
"description": "Rule format: yara | sigma | snort | all (default: all)",
"type": "string"
},
"target": {
"description": "Malware or actor name e.g. PIPEDREAM, INDUSTROYER2, TRITON, SANDWORM, CHERNOVITE",
"type": "string"
}
},
"required": [
"target"
],
"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/detection" # -> 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/detection");
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/detection")
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/8948.json, and this resource appears in /discovery/resources and /discovery/search.