code-security-audit
Performs OWASP-based code security audits on any codebase. Analyzes source code against ASVS 5.0.0 verification requirements, API Security Top 10 2023 risk patterns, OWASP CheatSheet secure coding practices, and WSTG testing methodologies. Input is a codebase to review; output is a detailed Markdown security audit report. Use when the user requests a security audit, security review, vulnerability assessment, or code security analysis.
What this skill does
# Code Security Audit Capabilities OWASP 4-source integrated code security audit system for universal codebase analysis. ## Knowledge Sources - **OWASP ASVS 5.0.0**: 345 verification requirements across 17 security domains (L1/L2/L3) - **OWASP API Security Top 10 2023**: 10 API-specific risk categories with code-level indicators - **OWASP CheatSheet Series**: 109 practical secure coding cheat sheets for remediation guidance - **OWASP WSTG (Web Security Testing Guide)**: 12 testing categories with 120+ test scenarios ## Source Roles | Source | Role | Usage | |--------|------|-------| | ASVS 5.0.0 | Verification requirements baseline | Defines what to check — structured requirements per domain | | API Security Top 10 2023 | Risk taxonomy | Defines what to look for — API-specific threat patterns | | CheatSheet Series | Implementation guidance | Defines how to fix — secure coding patterns and practices | | WSTG | Test methodology | Defines how to verify — concrete test scenarios per vulnerability | ## Domains - **Input Handling** (V1, V2, V5): Encoding, sanitization, injection prevention, validation, file handling - **Authentication & Session** (V6, V7, V9, V10): Auth mechanisms, session management, token handling, OAuth/OIDC - **Authorization** (V8): Object-level, function-level, property-level access control - **Cryptography** (V11, V12): Storage encryption, key management, TLS configuration - **API Security** (V4, V17): REST/GraphQL/WebSocket/WebRTC security, rate limiting, resource consumption - **Data Protection** (V14): Sensitive data exposure, privacy controls, client-side data - **Configuration** (V13, V16): Security headers, CORS, error handling, logging, deployment hardening - **Secure Coding** (V3, V15): Web frontend security, architecture patterns, defensive coding, concurrency safety ## Input Contract | Field | Required | Description | |-------|----------|-------------| | **Codebase path** | Yes | The current workspace or repository the agent is operating in. Defaults to the active codebase; users may narrow scope to specific directories or files (e.g., `src/auth/`, `api/controllers/`) | | **Audit level** | No | ASVS verification level (default: **L2**). See level definitions below | | **Focus areas** | No | Security domains to prioritize. See focus area catalog below | | **Tech context** | No | Language, framework, or architecture notes for targeted analysis | ### Audit Levels (OWASP ASVS 5.0.0) | Level | Target Application | Requirements | Description | |-------|-------------------|-------------|-------------| | **L1** | All applications | ~86 | Essential baseline — covers critical vulnerabilities that are typically exploitable and must be addressed in every application (e.g., SQL injection, OS command injection, basic auth checks) | | **L2** | Applications handling sensitive data (PII, financial, health) | ~230 | Standard security — includes L1 plus defense-in-depth controls such as SSRF protection, template injection prevention, secure session management, and proper cryptographic usage | | **L3** | Mission-critical systems (banking, healthcare, military, infrastructure) | ~345 | Comprehensive defense — includes L1+L2 plus advanced controls such as formula injection prevention, full input canonicalization, and exhaustive cryptographic verification | ### Focus Area Catalog | Focus Area | Domains | Example Checks | |------------|---------|----------------| | **authentication** | V6, V7, V9, V10 | Password storage, MFA, OAuth/OIDC flow, credential rotation | | **authorization** | V8 | Object-level (BOLA), function-level, property-level access control | | **injection** | V1, V2 | SQLi, XSS, command injection, LDAP/XPath injection, template injection, XXE | | **cryptography** | V11, V12 | Weak algorithms, key management, TLS configuration, secret storage | | **api-security** | V4, V17 | Rate limiting, resource consumption, REST/GraphQL/WebSocket security | | **session** | V7, V9, V10 | Token handling, session fixation, cookie attributes, JWT validation, CSRF | | **file-handling** | V5 | Path traversal, unrestricted upload, file type validation, storage security | | **data-protection** | V14 | Sensitive data exposure, privacy controls, client-side data leakage | | **configuration** | V13, V16 | Security headers, CORS, error handling, logging, deployment hardening | | **secure-coding** | V3, V15 | Frontend security, concurrency safety, architecture patterns, defensive coding | ## Preconditions - Codebase is accessible and readable - Agent has file search and read capabilities - If codebase structure cannot be determined, the agent reports limitations in the audit output ## Core Capabilities - **Codebase Reconnaissance**: Identifies technology stack, frameworks, entry points, and security-relevant file areas - **Domain-Scoped Analysis**: Systematically audits code across all 8 security domains - **ASVS Requirement Verification**: Checks code against applicable ASVS 5.0.0 requirements at the specified level - **Vulnerability Pattern Detection**: Identifies known vulnerable code patterns from the integrated knowledge base - **Cross-Source Correlation**: Maps findings to ASVS requirements, API Top 10 risks, CheatSheet guidance, and WSTG test IDs - **Severity Classification**: Rates findings as Critical/High/Medium/Low with evidence and confidence - **Remediation Guidance**: Provides concrete fix patterns sourced from CheatSheet Series - **Structured Report Generation**: Produces a comprehensive Markdown audit report ## Audit Workflow ``` 1. Reconnaissance → Identify stack, structure, entry points 2. Scope Definition → Select applicable ASVS domains and level 3. Domain Analysis → Audit each security domain systematically 4. Finding Synthesis → Deduplicate, correlate across sources, assign severity 5. Remediation Map → Attach fix patterns per finding 6. Report Generation → Produce structured Markdown report ``` ## Output Contract The audit produces a Markdown report containing: - **Executive Summary**: Overall risk posture, critical findings count, audit scope - **Findings Table**: Each finding with severity, ASVS ID, CWE, evidence, and remediation - **Domain Reports**: Per-domain detailed analysis with code references - **Remediation Roadmap**: Prioritized fix recommendations - **Audit Metadata**: Scope, level, limitations, methodology notes ## Severity Levels | Level | Criteria | |-------|----------| | **Critical** | Exploitable vulnerability with direct security impact (RCE, SQLi, auth bypass, data breach) | | **High** | Significant security weakness requiring prompt remediation (broken access control, weak crypto, SSRF) | | **Medium** | Security concern with conditional exploitability (missing headers, verbose errors, weak validation) | | **Low** | Defense-in-depth improvement or best practice deviation (logging gaps, minor config issues) | | **Info** | Observation or recommendation with no direct security impact | ## Technical References - **[audit_process.md](references/audit_process.md)**: Complete step-by-step audit methodology and reconnaissance procedures - **[security_domains.md](references/security_domains.md)**: All 17 ASVS domains with code-audit-relevant requirements and cross-source mappings - **[vulnerability_patterns.md](references/vulnerability_patterns.md)**: Concrete code-level vulnerability patterns organized by category - **[remediation_patterns.md](references/remediation_patterns.md)**: Secure coding fix patterns from CheatSheet Series - **[report_format.md](references/report_format.md)**: Detailed Markdown report structure and finding schema
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.