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

security-audit-owasp-top-10安全审计 owasp 前 10 名

Agent Skill

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

总安装

605

周安装

26

GitHub Stars

12

下载量

212
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/walletconnect/skills --skill security-audit-owasp-top-10

简介

用于 OWASP Top 10 相关安全审计。

  • 适合检查常见漏洞和认证流程风险。security-audit-owasp-top-10 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 可生成安全复核清单或漏洞排查建议。
  • 安装方式:通过 npx 从 GitHub 仓库添加技能。
  • 涉及生产数据时应先确认最小权限。

SKILL.md

OWASP Top 10 2025 Security Audit

Goal

Systematic codebase audit against the OWASP Top 10 2025 framework. Produces a structured severity-rated report with evidence-backed findings. Emphasizes semantic code understanding over regex pattern matching — grep patterns are starting points, real analysis happens by reading and reasoning about code context.

When to use

  • "Run an OWASP audit on this codebase"
  • "Check for OWASP Top 10 vulnerabilities"
  • "Security audit against OWASP 2025"
  • "Audit A01 and A03 only"
  • "Check this repo for common vulnerabilities"
  • "OWASP security review"

When not to use

  • PR code review (use review skill)
  • npm audit / pip audit / dependency scanning only
  • SOC2 / ISO 27001 compliance checks (use drata-api skill)
  • General security questions without audit intent
  • Threat modeling (use security-threat-model skill)
  • Single-file code review

Inputs

  • Codebase accessible via Glob/Grep/Read
  • Optional: specific OWASP categories (e.g. "A01 and A03 only")
  • Optional: focus areas or known concerns

Outputs

  • Markdown report inline (write to file only if user requests)
  • Executive summary table
  • Per-category findings with severity/confidence/evidence/remediation
  • Summary statistics and next steps

Workflow

Phase 1: Reconnaissance

Classify the project before auditing. Use Glob/Read on key files:

Glob: package.json, requirements.txt, go.mod, Cargo.toml, *.tf, *.csproj, pom.xml
Glob: Dockerfile*, docker-compose*, .github/workflows/*
Glob: **/routes/*, **/api/*, **/controllers/*, **/handlers/*
Read: README.md (first 100 lines), main entry points

Determine:

  • Project type: web-app | api | iac | library | cli | mobile | monorepo
  • Languages/frameworks: e.g. Node/Express, Python/Django, Go/Gin, Terraform/AWS
  • Deployment model: serverless, containers, VMs, static hosting
  • Data sensitivity signals: auth, PII, payments, healthcare, crypto

Phase 2: Relevance Filtering

Use project type to set audit depth per category. Prevents nonsensical checks (e.g. SQL injection on Terraform).

Categoryweb-appapiiaclibraryclimobile
A01 Broken Access ControlFullFullFullLightLightFull
A02 Security MisconfigurationFullFullFullLightLightFull
A03 Supply Chain FailuresFullFullLightFullFullFull
A04 Cryptographic FailuresFullFullLightFullLightFull
A05 InjectionFullFullSkipLightFullFull
A06 Insecure DesignFullFullLightLightLightFull
A07 Authentication FailuresFullFullSkipLightSkipFull
A08 Data Integrity FailuresFullFullLightFullLightFull
A09 Logging & AlertingFullFullLightLightLightFull
A10 Exceptional ConditionsFullFullLightFullFullFull
  • Full: run all grep patterns + semantic analysis
  • Light: grep patterns only, flag but don't deep-dive
  • Skip: mention as not applicable in report, move on

Phase 3: Evidence Gathering

For each relevant category, run Grep/Glob patterns from CATEGORIES.md. Use parallel tool calls for independent categories. Collect file paths and matching lines as evidence.

Phase 4: Semantic Analysis

For each flagged file/pattern:

  1. Read surrounding code context (not just matched line)
  2. Determine if finding is true positive or false positive
  3. Check for existing mitigations (guards, validators, middleware)
  4. Assign severity: Critical / High / Medium / Low
  5. Assign confidence: High / Medium / Low
  6. Note specific remediation

Severity criteria:

  • Critical: exploitable without authentication, leads to data breach or RCE
  • High: exploitable with low-privilege access, significant data exposure
  • Medium: requires specific conditions, limited exposure
  • Low: defense-in-depth issue, minimal direct impact

Phase 5: Report Generation

Use this template:

# OWASP Top 10 2025 Security Audit Report

**Project**: <name>
**Type**: <project-type> | **Languages**: <langs> | **Date**: <date>
**Scope**: <full audit | partial: categories listed>

## Executive Summary

| Severity | Count |
|----------|-------|
| Critical | N |
| High     | N |
| Medium   | N |
| Low      | N |
| Info     | N |

<1-3 sentence summary of key findings and overall posture>

## Findings

### A0X: <Category Name> — <PASS | FINDINGS | N/A>

> Relevance: Full | Light | Skip

#### Finding X.1: <title>
- **Severity**: Critical | High | Medium | Low
- **Confidence**: High | Medium | Low
- **Location**: `path/to/file:line`
- **Evidence**: <code snippet or pattern match>
- **Issue**: <what's wrong and why it matters>
- **Remediation**: <specific fix>

(repeat per finding)

---

## Summary Table

| Category | Status | Critical | High | Medium | Low |
|----------|--------|----------|------|--------|-----|
| A01 | ... | ... | ... | ... | ... |
(all 10 categories)

## Methodology

- Automated pattern matching via Grep/Glob
- Semantic code analysis of flagged locations
- False positive filtering based on code context
- Project-type relevance filtering applied

## Next Steps

1. <prioritized remediation actions>
2. <recommended tooling or processes>
3. <categories needing deeper manual review>

Partial Audit Support

When user requests specific categories (e.g. "audit A01 and A03 only"):

  1. Skip Phase 2 (relevance filtering)
  2. Minimal Phase 1 — detect language/framework only
  3. Run only requested categories through Phases 3-5
  4. Report covers only requested categories, notes others as out-of-scope

Decision Points

  • Large codebase (>500 files): Focus on entry points, auth boundaries, and config files. Note coverage limitations in report.
  • Monorepo: Run Phase 1 per sub-project. Produce per-project section or single unified report based on user preference.
  • No findings: Report as clean audit with methodology notes. Don't fabricate issues.

Validation Checklist

  • All 10 categories addressed (or noted as N/A/out-of-scope)
  • Every finding has severity + confidence + location + evidence + remediation
  • False positives filtered (not just raw grep output)
  • Project type correctly identified and relevance matrix applied
  • Report uses consistent severity definitions
  • Executive summary accurately reflects findings

References

  • Category details, grep patterns, semantic checks: CATEGORIES.md
  • Evaluation prompts: EVALUATIONS.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.2%
按下载量换算68

Claude

31.45%
按下载量换算67

Cursor

16.98%
按下载量换算36

Gemini CLI

10.09%
按下载量换算21

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills