← Back to Security & Essentials
K8s Incident Response Playbook Generator
Describe your incident. Get a step-by-step playbook with kubectl commands, evidence collection, containment strategies & comms templates.
https://hub.toolweb.in/security/k8irpg/
Endpoints
POST
/k8s-irpg
Generate Playbook
Request Body (JSON)
{
"cluster_name": "<string>",
"environment": "<string>",
"cloud_provider": "<string>",
"k8s_version": "",
"incident_type": "<string>",
"incident_severity": "<string>",
"affected_namespace": "",
"affected_workload": "",
"indicators_of_compromise": "",
"detection_source": "",
"has_falco": false,
"has_ebpf": false,
"has_service_mesh": false,
"has_network_policies": false,
"has_pod_security": false,
"has_audit_logging": false,
"has_siem": false,
"has_backup": false,
"team_size": "",
"on_call_process": "",
"compliance_frameworks": "",
"notes": ""
}
GET
/health
Health
Quick Start
# cURL
curl -H "X-API-Key: YOUR_API_KEY" \ https://hub.toolweb.in/security/k8irpg/
# Python
import requests
r = requests.get("https://hub.toolweb.in/security/k8irpg/",
headers={"X-API-Key": "YOUR_API_KEY"})
print(r.json())
# JavaScript
fetch("https://hub.toolweb.in/security/k8irpg/", {
headers: { "X-API-Key": "YOUR_API_KEY" }
}).then(r => r.json()).then(console.log)
Sign up free to get your API key auto-filled.