Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

code-audit代码审计

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

218

周安装

9

GitHub Stars

公开资料未说明

下载量

71
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:code-audit(代码审计)
来源仓库:https://github.com/cmglezpdev/custom-skills
仓库路径:skills/code-audit
安装命令:
npx skills add https://github.com/cmglezpdev/custom-skills --skill code-audit
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/cmglezpdev/custom-skills --skill code-audit

简介

code-audit 基于 OWASP Top 10:2025 标准执行结构化安全审计,输出严重等级分类报告。

  • 适用于识别代码质量问题、安全风险和架构改进点,支持 React、Next.js、NestJS 框架。
  • 提供可操作的修复建议和优先级排序,但不替代人工复核,尤其涉及敏感数据处理时。
  • 操作前应确认最小权限原则,对生产环境需额外评估脱敏机制和操作影响范围。
  • code-audit 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Code Audit Skill — OWASP Top 10:2025

This skill performs a structured security and code quality audit against the OWASP Top 10:2025 standard. It produces a severity-classified Markdown report with actionable remediation guidance.

Supported Project Types

  • React (CRA, Vite, custom setups)
  • Next.js (App Router, Pages Router)
  • NestJS (REST APIs, GraphQL APIs, microservices)
  • Monorepos containing any combination of the above

Workflow

Follow these steps in order. Do not skip steps. Read the relevant reference files before scanning.

Step 1: Discover Project Structure

Run these commands to understand the project:

# Find the project root and understand structure
ls -la <project_root>
cat <project_root>/package.json
find <project_root> -name "tsconfig*.json" -maxdepth 2 | head -5
find <project_root> -name "next.config*" -maxdepth 2 | head -3
find <project_root> -name "nest-cli.json" -maxdepth 2 | head -3

Determine the project type(s):

  • Next.js: Has next in dependencies and next.config.*
  • React (non-Next): Has react in dependencies, no next
  • NestJS: Has @nestjs/core in dependencies, or nest-cli.json
  • Monorepo: Has workspaces in package.json, or lerna.json, nx.json, turbo.json

Step 2: Read the Relevant Reference Files

Based on the detected project type, read the corresponding reference files:

  • All projects: Read references/owasp-2025-checks.md (the OWASP Top 10:2025 mapping)
  • React / Next.js: Read references/frontend-checks.md
  • NestJS: Read references/nestjs-checks.md

These files contain the specific patterns, anti-patterns, and code signatures to look for.

Step 3: Collect Critical Files

Gather these files for analysis (adapt paths to the project structure):

Configuration & Dependencies (always):

  • package.json and package-lock.json / yarn.lock / pnpm-lock.yaml
  • .env* files (check if they exist, flag if committed)
  • tsconfig.json
  • .eslintrc*, .prettierrc*
  • Dockerfile, docker-compose.yml if present
  • CI/CD configs (.github/workflows/, .gitlab-ci.yml, etc.)

Next.js specific:

  • next.config.* (rewrites, headers, CSP, image domains)
  • middleware.ts / middleware.js
  • app/layout.tsx or pages/_app.tsx
  • API routes: app/api/**/route.ts or pages/api/**
  • Server actions, server components with data fetching

React specific:

  • Entry point (src/index.tsx, src/main.tsx)
  • Router configuration
  • Auth context/provider files
  • API client/service layer

NestJS specific:

  • main.ts (bootstrap, CORS, helmet, validation pipe)
  • app.module.ts
  • All *.guard.ts, *.interceptor.ts, *.filter.ts, *.middleware.ts
  • All *.controller.ts and *.service.ts
  • Auth module files
  • Database entities/schemas and migration configs
  • DTOs and validation pipes

Step 4: Perform the Audit

Systematically analyze each OWASP Top 10:2025 category. For each category:

  1. Search for the specific patterns described in the reference files
  2. Check both presence of security controls AND absence of expected protections
  3. Consider the architectural context (a missing guard matters more in a payment controller)
  4. Record every finding with: file path, line range, description, severity, OWASP category, and fix

Use grep -rn and find commands to search for patterns efficiently:

# Examples of useful searches
grep -rn "dangerouslySetInnerHTML" <project_root>/src/ --include="*.tsx" --include="*.jsx"
grep -rn "eval(" <project_root>/src/ --include="*.ts" --include="*.js"
grep -rn "@Public()" <project_root>/src/ --include="*.ts"
grep -rn "createQueryBuilder" <project_root>/src/ --include="*.ts"
grep -rn "innerHTML" <project_root>/src/ --include="*.ts" --include="*.tsx"
grep -rn "CORS" <project_root>/src/ --include="*.ts"
grep -rn "helmet" <project_root>/src/ --include="*.ts"
grep -rn "class-validator" <project_root>/package.json
grep -rn "rate" <project_root>/src/ --include="*.ts" -i
grep -rn "\.env" <project_root>/.gitignore
find <project_root> -name "*.env" -not -path "*/node_modules/*"
find <project_root> -name "*.pem" -o -name "*.key" -not -path "*/node_modules/*"

Beyond pattern matching, READ the actual source files for logic-level issues that grep cannot catch:

  • Authorization logic flaws (checking wrong user ID, missing ownership validation)
  • Business logic bypasses
  • Race conditions in state management
  • Insecure data flow between components
  • Missing error boundaries and exception handling
  • Improper secret management

Step 5: Classify Severity

Each finding gets one severity level:

CRITICAL — Exploitable now with high impact:

  • SQL/NoSQL injection with user input reaching queries unsanitized
  • Authentication bypass, missing auth on sensitive endpoints
  • Hardcoded secrets, API keys, or credentials in source code
  • Remote code execution vectors (eval(), Function() with user input)
  • Exposed admin routes without authentication
  • SSRF vulnerabilities

HIGH — Exploitable with moderate effort or significant impact:

  • XSS vulnerabilities (stored or reflected)
  • Missing CSRF protection on state-changing operations
  • Broken access control (IDOR, privilege escalation paths)
  • Insecure direct object references
  • Missing rate limiting on auth endpoints
  • Sensitive data in logs or error responses
  • Insecure deserialization

MEDIUM — Requires specific conditions to exploit or moderate impact:

  • Missing security headers (CSP, HSTS, X-Frame-Options)
  • Weak password policies or session management
  • Verbose error messages leaking stack traces
  • Missing input validation on non-critical endpoints
  • Outdated dependencies with known CVEs (non-critical)
  • Missing CORS restrictions (overly permissive)
  • Insecure cookie configuration

LOW — Best practice violations, defense-in-depth gaps:

  • Missing rel="noopener noreferrer" on external links
  • Console.log statements in production code
  • Missing TypeScript strict mode
  • No Content Security Policy (informational)
  • Missing Subresource Integrity (SRI) for CDN scripts
  • Code quality issues that could lead to future vulnerabilities

Step 6: Generate the Report

Use the template in scripts/report-template.md as the base structure. The report must include:

  1. Executive Summary — Project type, overall risk score, total findings by severity
  2. OWASP Top 10:2025 Scorecard — Pass/Fail/Partial for each of the 10 categories
  3. Detailed Findings — Grouped by severity, then by OWASP category within each severity
  4. Remediation Roadmap — Prioritized action items
  5. Appendix — Files analyzed, tools/patterns used, audit metadata

Each finding in the detailed section must contain:

  • Unique ID (e.g., AUDIT-001)
  • Title
  • Severity badge
  • OWASP Category mapping
  • Affected file(s) and line(s)
  • Description of the vulnerability
  • Code snippet showing the issue (keep it short, 5-10 lines max)
  • Recommended fix with code example
  • References (CWE ID if applicable)

Step 7: Save the Report

  • If the user specified an output path, save there
  • Otherwise, save to <project_root>/AUDIT-REPORT.md
  • Always inform the user where the report was saved
  • Copy the report to /mnt/user-data/outputs/AUDIT-REPORT.md so the user can download it

Important Principles

  • Do not guess. If you cannot read a file, say so and note it as a gap in the audit.
  • Context matters. A missing guard on a health-check endpoint is LOW. The same missing guard on a payment endpoint is CRITICAL.
  • Check for absence. Missing security controls (no helmet, no validation pipe, no rate limiter) are findings, not just bad code.
  • Be specific. "Possible XSS" is useless. "User input from req.query.search rendered via dangerouslySetInnerHTML in SearchResults.tsx:42" is actionable.
  • Include fixes. Every finding must have a concrete remediation with a code example.
  • Stay current. The OWASP Top 10:2025 is the standard. Do not use the 2021 categories.
  • Respect scope. Only audit what is in the codebase. Do not speculate about infrastructure unless config files reveal it.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

39.45%
按下载量换算28

Claude

27.55%
按下载量换算20

Cursor

20.58%
按下载量换算15

Gemini CLI

8.64%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills