implementing-runtime-application-self-protection skill (Anthropic-Cybersecurity-Skills)
- Install
- SKILL.md (verbatim)
- Overview
- When to Use
- Prerequisites
- Steps
- Step 1: Deploy RASP Agent
- Step 2: Configure Detection Policies
- Step 3: Tune and Baseline
- Step 4: Integrate with SIEM
- Expected Output
- Other files in this skill
- references/api-reference.md (verbatim)
- OpenRASP Deployment
- OpenRASP Configuration (rasp.yaml)
- Detection Hooks
- Attack Log Format (JSON)
- RASP vs WAF Comparison
- Python RASP (Flask Middleware Example)
- References
What it does. Deploy Runtime Application Self-Protection (RASP) agents to detect and Part of mukul975/Anthropic-Cybersecurity-Skills (817 security skills) (mukul975/Anthropic-Cybersecurity-Skills).
| Upstream | mukul975/Anthropic-Cybersecurity-Skills |
| Skill file | skills/implementing-runtime-application-self-protection/SKILL.md |
| License | Apache-2.0 (skill folder LICENSE) |
| Author | mukul975 |
| Fetched | 2026-09-10 |
Install
npx skills add mukul975/Anthropic-Cybersecurity-Skills --skill implementing-runtime-application-self-protection, or copy the skill folder into~/.claude/skills/implementing-runtime-application-self-protection/.- Raw file:
curl -sL https://raw.githubusercontent.com/mukul975/Anthropic-Cybersecurity-Skills/HEAD/skills/implementing-runtime-application-self-protection/SKILL.md
SKILL.md (verbatim)
name: implementing-runtime-application-self-protection
description: Deploy Runtime Application Self-Protection (RASP) agents to detect and
block attacks from within application runtime, covering OpenRASP integration, attack
pattern detection, and security policy configuration for Java and Python web applications.
domain: cybersecurity
subdomain: application-security
tags:
- rasp
- application-security
- openrasp
- runtime-protection
- sqli
- xss
- rce
- devsecops
version: '1.0'
author: mahipal
license: Apache-2.0
nist_ai_rmf:
- GOVERN-1.1
- MEASURE-2.7
- MANAGE-3.1
nist_csf:
- PR.PS-01
- PR.PS-04
- ID.RA-01
- PR.DS-10
mitre_attack:
- T1078
- T1190
- T1059
- T1059.007
Implementing Runtime Application Self-Protection
Overview
Runtime Application Self-Protection (RASP) instruments application code at runtime to detect and block attacks by examining actual execution context rather than relying solely on network traffic patterns. Unlike WAFs that inspect HTTP requests externally, RASP agents intercept dangerous operations (SQL queries, file operations, command execution, deserialization) at the function level inside the application, achieving near-zero false positives. This skill covers deploying OpenRASP for Java applications, configuring detection policies for OWASP Top 10 attacks, tuning alerting thresholds, and integrating RASP telemetry with SIEM platforms.
When to Use
- When deploying or configuring implementing runtime application self protection capabilities in your environment
- When establishing security controls aligned to compliance requirements
- When building or improving security architecture for this domain
- When conducting security assessments that require this implementation
Prerequisites
- Java 8+ application server (Tomcat, Spring Boot, or JBoss) or Python Flask/Django application
- OpenRASP agent package (rasp-java or equivalent)
- OpenRASP management console for centralized policy management
- SIEM integration endpoint (Splunk HEC, Elasticsearch, or syslog)
- Application staging environment for RASP testing before production
Steps
Step 1: Deploy RASP Agent
Install the RASP agent into the application server runtime using JVM agent attachment for Java or middleware hooks for Python.
Step 2: Configure Detection Policies
Define detection rules for SQL injection, command injection, SSRF, path traversal, XXE, and deserialization attacks with block or monitor actions.
Step 3: Tune and Baseline
Run the agent in monitor mode during normal operations to establish baseline behavior and tune policies to reduce false positives before switching to block mode.
Step 4: Integrate with SIEM
Forward RASP alerts to the SIEM for correlation with WAF, IDS, and authentication events to build comprehensive attack timelines.
Expected Output
JSON report containing RASP policy audit results, detected attack attempts with stack traces, blocked requests summary, and coverage assessment against OWASP Top 10.
Other files in this skill
references/api-reference.md (verbatim)
API Reference: Implementing Runtime Application Self-Protection
OpenRASP Deployment
# Java agent attachment (Tomcat)
export CATALINA_OPTS="-javaagent:/opt/rasp/rasp.jar"
# Spring Boot
java -javaagent:/opt/rasp/rasp.jar -jar app.jar
# Verify agent loaded
curl -s http://localhost:8080/rasp/status
OpenRASP Configuration (rasp.yaml)
# Detection plugin settings
plugin:
timeout: 100 # Plugin execution timeout (ms)
maxstack: 100 # Max stack frames to capture
# Block vs monitor mode
block:
status_code: 302 # HTTP status on block
redirect_url: /blocked.html
# Log settings
log:
maxstack: 50
syslog:
enable: true
url: "udp://siem.example.com:514"
tag: openrasp
Detection Hooks
| Hook Point | Attack Type | OWASP |
|---|---|---|
| sql_query | SQL Injection | A03:2021 |
| command_exec | OS Command Injection | A03:2021 |
| file_open / file_read | Path Traversal | A01:2021 |
| http_request | SSRF | A10:2021 |
| xml_parse | XXE | A05:2021 |
| deserialize | Insecure Deserialization | A08:2021 |
| response_write | XSS (reflected) | A03:2021 |
| ldap_query | LDAP Injection | A03:2021 |
| code_eval | Remote Code Execution | A03:2021 |
Attack Log Format (JSON)
{
"attack_type": "sqli",
"action": "block",
"client_ip": "192.168.1.50",
"request_url": "/api/users?id=1 OR 1=1",
"attack_params": {"id": "1 OR 1=1"},
"stack_trace": "com.app.UserDAO.findById(UserDAO.java:42)",
"plugin_name": "sql_injection",
"timestamp": "2025-06-15T10:30:00Z"
}
RASP vs WAF Comparison
| Feature | WAF | RASP |
|---|---|---|
| Inspection point | Network perimeter | Inside application |
| Context | HTTP request only | Request + execution context |
| False positive rate | Higher | Near-zero |
| Encrypted traffic | Requires TLS termination | Sees plaintext |
| Deployment | Network device/proxy | Application library |
Python RASP (Flask Middleware Example)
from flask import request, abort
import re
SQL_INJECTION_PATTERN = re.compile(
r"(\b(union|select|insert|update|delete|drop|alter)\b.*\b(from|into|table|set)\b)",
re.IGNORECASE
)
@app.before_request
def rasp_check():
for value in request.values.values():
if SQL_INJECTION_PATTERN.search(str(value)):
abort(403, description="RASP: SQL injection blocked")
References
- OpenRASP: https://github.com/baidu/openrasp
- OWASP RASP: https://owasp.org/www-community/Runtime_Application_Self-Protection
- NIST AppSec: https://csrc.nist.gov/publications/detail/sp/800-95/final
Back to mukul975/Anthropic-Cybersecurity-Skills (817 security skills) or Agent skills.