rune-ext-security

Audits codebases for OWASP vulnerabilities, secrets, supply chain risks, and compliance gaps.

1|Updated Mar 22, 2026
One-click install
npx skills add https://github.com/dangvu008/VietTruyen --skill rune-ext-security-dangvu008
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: rune-ext-security
Source: https://github.com/dangvu008/VietTruyen/tree/main/.agents/skills/rune-ext-security
Command: npx skills add https://github.com/dangvu008/VietTruyen --skill rune-ext-security-dangvu008

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Automated security gates catch known CVEs and obvious patterns, but they miss logic flaws in auth flows, missing authorization checks, supply chain confusion attacks, and compliance gaps. This Skill performs deep, on-demand security audits with manual-grade analysis and exploitability-rated findings. ## Core Features & Use Cases - OWASP & API Security Audit: Manually reviews code against OWASP Top 10 (2021) and API Security Top 10 (2023), including BOLA, broken authentication, and CI/CD pipeline injection. - Penetration Testing Patterns: Maps attack surfaces, builds minimal proof-of-concepts, detects JWT attack patterns, sets up fuzzing, and hardens GraphQL endpoints. - Secrets, Supply Chain & Compliance: Audits secret handling and rotation, detects dependency confusion and typosquatting, and produces SOC 2, GDPR, HIPAA, and PCI-DSS v4.0 gap analyses with evidence packages. - Use Case: Before a production release of a payment-handling API, run a full audit to verify every endpoint enforces object-level authorization, rate limits are Redis-backed, secrets are absent from git history, and receive a remediation roadmap with file:line references. ## Quick Start Ask the agent to run a full security audit of the repository covering OWASP Top 10, secrets, supply chain, and API hardening, and produce a severity-rated report with remediation steps.

Frequently Asked Questions about rune-ext-security

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I audit my codebase against the OWASP Top 10?

Run the owasp-audit workflow, which threat-models entry points, manually reviews auth, session, and crypto code, checks CI/CD pipeline yaml for injection risks, and reports exploitability-rated findings with file:line references and remediation steps.

How to check for BOLA and broken object level authorization in APIs?

The audit inspects every object-level endpoint to verify queries filter by both resource ID and the authenticated user's ID. It flags endpoints that fetch resources by ID alone, including bulk list endpoints that skip per-user scoping.

What is the difference between this security audit and automated scanning?

Automated gates like sentinel catch known CVEs, hardcoded secrets, and obvious injection patterns on every commit. This Skill performs deep on-demand analysis that catches logic flaws in auth flows, supply chain confusion attacks, and compliance gaps that automated tools miss.

Does the audit cover compliance standards like SOC 2, GDPR, and PCI-DSS?

Yes, the compliance workflow identifies applicable standards, maps requirements to actual code, automates evidence collection such as access log exports, and produces a gap report with severity, remediation effort estimates, and a prioritized roadmap.

Can the penetration testing PoCs accidentally run against production?

The workflow requires confirming the target environment before executing any proof-of-concept and recommends adding environment guards to scripts. PoCs are minimal and defensive-only, scoped strictly to confirm exploitability of a specific finding.

How are JWT vulnerabilities detected during the audit?

The pentest workflow inspects JWT creation and validation code for algorithm confusion (alg:none), RS256-to-HS256 key confusion, missing token replay protection via jti blacklisting, and unverified audience and issuer claims.