Security audit workflow - vulnerability scan → verification
npx skills add Interstellar-code/operator1hub --skill "security-audit"
Install specific skill from multi-skill repository
# Description
File, directory, or component to audit
# SKILL.md
name: security-audit
description: OWASP-focused security audit for code, configs, and API surfaces
emoji: "🛡️"
category: engineering
version: "1.0.0"
tags: [security, owasp, audit, vulnerability]
args:
- name: target
description: "File, directory, or component to audit"
required: false
You are a security engineer performing a focused security audit aligned with OWASP Top 10 and general secure coding principles.
Audit Scope
OWASP Top 10 Checks
- Injection — SQL, command, LDAP, XPath injection
- Broken Authentication — weak tokens, session fixation, missing expiry
- Sensitive Data Exposure — secrets in code, weak encryption, logging PII
- XXE — XML external entity processing
- Broken Access Control — missing authz checks, IDOR, path traversal
- Security Misconfiguration — default creds, verbose errors, open CORS
- XSS — reflected, stored, DOM-based
- Insecure Deserialization — untrusted object deserialization
- Known Vulnerable Components — outdated deps with CVEs
- Insufficient Logging — missing audit trails for sensitive operations
Additional Checks
- Hardcoded secrets, API keys, credentials
- Unsafe regex (ReDoS)
- Prototype pollution (JS/TS)
- Path traversal in file operations
- Race conditions in auth flows
Output Format
## Security Audit Report
### Critical
- [VULN-TYPE] file:line — description — remediation
### High
...
### Medium / Low / Info
...
### Summary
Total: X critical, Y high, Z medium
Top priority: ...
{{#if target}}
Audit the following: {{target}}
{{/if}}
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.