Install
openclaw skills install threat-assessment-defense-guideGenerate comprehensive cybersecurity threat assessments and defense guides. Use when evaluating threat landscapes, building defense strategies, ransomware protection plans, phishing defense, APT mitigation, supply chain security, or any threat modeling and defense planning.
openclaw skills install threat-assessment-defense-guideGenerate comprehensive cybersecurity threat assessments and tailored defense guides. Analyzes threat vectors relevant to your industry and assets, then produces actionable defense strategies, detection methods, and incident response recommendations.
Built by a CISSP/CISM certified security professional at ToolWeb.in
TOOLWEB_API_KEY — Get your API key from portal.toolweb.incurl must be available on the systemPOST https://portal.toolweb.in/apis/security/threat-assessment-defense
Gather inputs from the user. Ask about:
Construct the threatOptions from user input. Map their answers into the threatOptions dictionary:
{
"threatOptions": {
"threat_type": ["Ransomware", "Phishing"],
"industry": ["Healthcare"],
"assets": ["Cloud Infrastructure", "Endpoints", "Databases"]
}
}
Include any additional categories the user mentions as key-value pairs in threatOptions.
curl -s -X POST "https://portal.toolweb.in/apis/security/threat-assessment-defense" \
-H "Content-Type: application/json" \
-H "X-API-Key: $TOOLWEB_API_KEY" \
-d '{
"threatOptions": {
"threat_type": ["<threat1>", "<threat2>"],
"industry": ["<industry>"],
"assets": ["<asset1>", "<asset2>"]
},
"sessionId": "<generate-unique-id>",
"timestamp": "<current-ISO-timestamp>"
}'
Generate a unique sessionId (e.g., UUID or timestamp-based) and set timestamp to the current ISO 8601 datetime.
Parse the response. The API returns a comprehensive defense guide including:
Present results to the user:
Present the assessment as follows:
🛡️ Threat Assessment & Defense Guide
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Industry: [industry]
Threats Assessed: [threat_type list]
Assets in Scope: [assets list]
⚠️ Threat Landscape:
[Summary of relevant threats and their severity]
🛡️ Defense Strategies:
[Prioritized defense recommendations]
🔍 Detection & Monitoring:
[What to monitor and how to detect attacks]
🚨 Incident Response:
[Steps to take when an attack occurs]
🔧 Recommended Tools:
[Specific security tools and technologies]
📎 Full report powered by ToolWeb.in
TOOLWEB_API_KEY is not set: Tell the user to get an API key from https://portal.toolweb.in (plans start at $0 (free trial))apt install curl / brew install curl)User: "I'm worried about ransomware attacks on our hospital's systems. Can you assess the threat and tell me how to defend against it?"
Agent flow:
curl -s -X POST "https://portal.toolweb.in/apis/security/threat-assessment-defense" \
-H "Content-Type: application/json" \
-H "X-API-Key: $TOOLWEB_API_KEY" \
-d '{
"threatOptions": {
"threat_type": ["Ransomware", "Phishing"],
"industry": ["Healthcare"],
"assets": ["Endpoints", "Databases"]
},
"sessionId": "sess-20260312-001",
"timestamp": "2026-03-12T12:00:00Z"
}'
Created by ToolWeb.in — a security-focused MicroSaaS platform with 200+ security APIs, built by a CISSP & CISM certified professional. Trusted by security teams in USA, UK, and Europe and we have platforms for "Pay-per-run", "API Gateway", "MCP Server", "OpenClaw", "RapidAPI" for execution and YouTube channel for demos.