← Back to Security & Essentials
Container Runtime Threat Model Generator
STRIDE-based threat modeling for containerized workloads. Identify attack surfaces, runtime threats, and remediation paths.
https://hub.toolweb.in/security/crtmg/
Endpoints
POST
/container-threat-model
Generate Threat Model
Request Body (JSON)
{
"app_name": "<string>",
"environment": "<string>",
"cloud_provider": "<string>",
"container_runtime": "<string>",
"orchestrator": "<string>",
"components": "<array>",
"image_scanning_enabled": false,
"admission_control_enabled": false,
"seccomp_enabled": false,
"apparmor_selinux_enabled": false,
"read_only_root_fs": false,
"network_policies_enabled": false,
"secrets_management": "",
"data_classification": "internal",
"pii_data": false,
"payment_data": false,
"handles_credentials": false,
"compliance_frameworks": "",
"notes": ""
}
GET
/health
Health
Quick Start
# cURL
curl -H "X-API-Key: YOUR_API_KEY" \ https://hub.toolweb.in/security/crtmg/
# Python
import requests
r = requests.get("https://hub.toolweb.in/security/crtmg/",
headers={"X-API-Key": "YOUR_API_KEY"})
print(r.json())
# JavaScript
fetch("https://hub.toolweb.in/security/crtmg/", {
headers: { "X-API-Key": "YOUR_API_KEY" }
}).then(r => r.json()).then(console.log)
Sign up free to get your API key auto-filled.