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

security-scan安全扫描

Agent Skill

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

总安装

1

周安装

12

GitHub Stars

35

下载量

97
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/kazdenc/builder-skills --skill security-scan

简介

经过所有调查结果:

  • 按严重性和 OWASP 类别划分的总数
  • 需要立即解决的三大风险
  • 攻击面评估(一段)
  • 标头状态(每个安全标头的通过/失败)
  • 绝不:
  • 在实际代码中报告没有证据的理论问题
  • 跳过某个类别,因为它“可能不适用”——扫描每个类别
  • 提供引入不同漏洞的修复
  • 在安全扫描中报告低严重性问题(保持专注)
  • 假设框架自动处理安全性而无需验证配置
  • 每周安装量
  • 12
  • 存储库
  • kazdenc/建造者技能
  • GitHub 之星
  • 35
  • 第一次看到
  • 3天前
  • 安全审计
  • Gen Agent Trust Hub 通行证
  • 套接字通行证
  • 斯尼克失败

SKILL.md

Scan code for OWASP Top 10 vulnerabilities. Report severity-rated findings with file:line references and fix recommendations. Flag what matters; skip what doesn't apply.

Scan Categories

Work through each OWASP category. For each, search for the specific code patterns listed.

1. Injection (A03:2021)

Pattern to findRiskWhat to verify
String concatenation in SQL queriesSQL injectionUse parameterized queries / prepared statements
Template literals in database callsNoSQL injectionUse query builders or ORM methods with bound parameters
exec(), spawn(), system() with user inputCommand injectionValidate/whitelist input, avoid shell execution
User input in LDAP filtersLDAP injectionEscape special characters, use parameterized filters
User input in regex constructorsReDoSValidate regex complexity, use re2 or set timeouts
eval(), Function(), vm.runInContext()Code injectionRemove entirely; never evaluate user-controlled strings

2. Broken Authentication (A07:2021)

Pattern to findRiskWhat to verify
Plain-text password storageCredential theftUse bcrypt/scrypt/argon2 with proper work factor
Missing rate limiting on login endpointsBrute forceImplement rate limiting and account lockout
Session tokens in URLs or localStorageSession hijackUse httpOnly secure cookies
JWT without expiration or with weak signingToken forgerySet short exp, use RS256 or ES256, rotate keys
Missing MFA on sensitive operationsAccount takeoverRequire step-up auth for destructive actions
Hardcoded credentials or default passwordsUnauthorized accessUse environment variables and secrets management

3. Sensitive Data Exposure (A02:2021)

Pattern to findRiskWhat to verify
API keys, tokens, passwords in sourceCredential leakMove to environment variables / secrets manager
Secrets in log outputLog exfiltrationRedact sensitive fields before logging
Missing TLS / HTTP used for sensitive dataMan-in-the-middleEnforce HTTPS, use HSTS header
PII in error responsesInformation disclosureReturn generic errors to clients, log details server-side
Sensitive data in client-side stateBrowser exposureKeep secrets server-side, minimize client-side PII
Missing encryption at restData breachEncrypt sensitive database columns and file storage

4. Cross-Site Scripting — XSS (A03:2021)

Pattern to findRiskWhat to verify
dangerouslySetInnerHTMLStored/reflected XSSSanitize with DOMPurify, validate input is trusted
innerHTML, outerHTML assignmentsDOM-based XSSUse textContent or framework-safe rendering
Unescaped template interpolation in HTMLReflected XSSUse framework auto-escaping, never bypass it
URL parameters rendered without encodingReflected XSSEncode output, validate URL parameters
javascript: URLs in href/srcXSS via navigationWhitelist URL schemes (http, https, mailto)
User-controlled src on script/iframe tagsRemote code executionValidate against allowlist of trusted origins

5. Broken Access Control (A01:2021)

Pattern to findRiskWhat to verify
Missing auth middleware on routesUnauthorized accessApply auth checks to every protected endpoint
Client-side-only permission checksPrivilege escalationEnforce permissions server-side
Direct object reference without ownership checkIDORVerify requesting user owns / has access to resource
Missing role/scope validationPrivilege escalationCheck roles on every sensitive operation
Unrestricted file uploadArbitrary file writeValidate file type, size, and store outside webroot
Path traversal in file operationsFile system accessNormalize paths, reject .., use allowlists

6. Security Misconfiguration (A05:2021)

Pattern to findRiskWhat to verify
Debug mode enabled in production configInformation disclosureDisable debug, verbose errors, stack traces in prod
Default credentials in config filesUnauthorized accessChange all defaults, enforce strong credentials
Missing security headersVarious attacksSee Security Headers Checklist below
Overly permissive CORS (*)Cross-origin attacksRestrict to specific trusted origins
Directory listing enabledInformation disclosureDisable in web server configuration
Unnecessary services or endpoints exposedAttack surfaceRemove unused routes, admin panels, debug endpoints

7. Server-Side Request Forgery — SSRF (A10:2021)

Pattern to findRiskWhat to verify
User-supplied URLs passed to fetch/requestInternal network accessValidate against URL allowlist
URL redirects without validationOpen redirect / SSRFCheck destination against trusted domains
DNS rebinding potentialFirewall bypassResolve DNS before validation, pin IPs
Internal service URLs constructable by userMetadata endpoint accessBlock RFC 1918 ranges and cloud metadata IPs

8. Dependency Vulnerabilities (A06:2021)

Pattern to findRiskWhat to verify
Outdated packages with known CVEsExploitation of known flawsRun npm audit / pnpm audit and review results
Unpinned dependency versions (^, ~, *)Supply chain attackPin exact versions or use lock files
Dependencies from untrusted sourcesMalicious codeVerify package provenance, check download counts
Post-install scripts in dependenciesArbitrary code executionAudit scripts, use --ignore-scripts where safe

Security Headers Checklist

Verify the following headers are set on HTTP responses:

HeaderRecommended ValuePurpose
Content-Security-PolicyStrict policy, no unsafe-inline / unsafe-evalPrevents XSS, injection
Strict-Transport-Securitymax-age=63072000; includeSubDomains; preloadForces HTTPS
X-Content-Type-OptionsnosniffPrevents MIME-type sniffing
X-Frame-OptionsDENY or SAMEORIGINPrevents clickjacking
Referrer-Policystrict-origin-when-cross-originLimits referrer leakage
Permissions-PolicyDisable unused features (camera, microphone, geolocation)Reduces attack surface
X-XSS-Protection0 (rely on CSP instead)Deprecated but set explicitly
Cache-Controlno-store on sensitive responsesPrevents caching of secrets

Output Format

Report findings organized by severity:

Finding Format

For each issue:

  • Severity: Critical / High / Medium / Low
  • OWASP Category: Which category (e.g., A01 Broken Access Control)
  • Location: file:line reference
  • Issue: What was found (one sentence)
  • Evidence: The specific code pattern or configuration
  • Fix: Concrete recommendation with code example
  • References: Relevant CWE number or documentation link

Summary

After all findings:

  • Total count by severity and OWASP category
  • Top 3 risks to address immediately
  • Attack surface assessment (one paragraph)
  • Headers status (pass/fail for each security header)

NEVER:

  • Report theoretical issues without evidence in the actual code
  • Skip a category because it "probably doesn't apply" — scan every one
  • Provide a fix that introduces a different vulnerability
  • Report low-severity style issues in a security scan (stay focused)
  • Assume a framework handles security automatically without verifying configuration

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.59%
按下载量换算35

Claude

29.41%
按下载量换算29

Cursor

19.82%
按下载量换算19

Gemini CLI

9.72%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills