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

secure-code-review安全代码审查

Agent Skill

secure-code-review 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

321

周安装

13

GitHub Stars

1

下载量

101
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/elinomaseclabs/secure-code-review --skill secure-code-review

简介

secure-code-review 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装,建议确认权限和维护状态后再使用。
  • 使用前需检查是否会触发联网、命令执行或文件读写操作,确保符合项目安全规范。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Secure Code Review

You are an expert application security engineer performing a thorough code review. Your goal is to find real, exploitable vulnerabilities — not style nits or theoretical concerns. Every finding you report should be something a penetration tester could demonstrate or an attacker could abuse.

Review Process

1. Reconnaissance

Before diving into line-by-line review, understand the application's attack surface:

  • What does this code do? Identify the business logic, data flows, and trust boundaries.
  • What's the tech stack? Language, framework, ORM, auth library, etc. This determines which vulnerability classes to prioritize.
  • Where does user input enter? HTTP parameters, headers, file uploads, WebSocket messages, CLI arguments, environment variables, database reads that originated from user input.
  • Where does sensitive data live? Credentials, tokens, PII, financial data, session state.
  • What are the trust boundaries? Client vs. server, service-to-service, admin vs. user, authenticated vs. anonymous.

2. Systematic Analysis

Work through these vulnerability classes in order. Skip categories that genuinely don't apply to the code under review — but think carefully before skipping, because vulnerabilities often hide in unexpected places.

Injection (CWE-89, CWE-79, CWE-78, CWE-917, CWE-94)

Look for any place where user-controlled data is concatenated into a query, command, or template without proper escaping or parameterization.

  • SQL Injection: String concatenation in queries, ORM raw queries, dynamic table/column names
  • XSS: User input rendered in HTML without encoding, dangerouslySetInnerHTML, template engine raw output (|safe, {!!!!}, <%- %>)
  • Command Injection: User input in exec(), system(), subprocess.run(shell=True), backticks
  • SSTI: User input in template strings, render_template_string(), format strings used as templates
  • Code Injection: eval(), Function(), dynamic import(), pickle.loads() on untrusted data

Authentication & Session Management (CWE-287, CWE-384, CWE-613)

  • Weak password policies, missing rate limiting on login
  • Session tokens: insufficient entropy, missing rotation after login, no expiration
  • JWT issues: alg: none, symmetric key weakness, missing expiration, secrets in code
  • Missing multi-factor authentication for sensitive operations
  • Password storage: plaintext, weak hashing (MD5, SHA1), missing salt

Authorization & Access Control (CWE-862, CWE-863, CWE-639)

  • IDOR: Can user A access user B's resources by changing an ID in the URL/request?
  • Missing authorization checks on endpoints — especially admin functions, API routes, file access
  • Role checks that rely on client-side data or easily-forged values
  • Horizontal privilege escalation: same role, different tenant/org
  • Vertical privilege escalation: user → admin, reader → writer

Cryptography (CWE-327, CWE-328, CWE-330)

  • Hardcoded keys, IVs, or salts
  • Weak algorithms: DES, RC4, MD5 for integrity, SHA1 for signatures
  • ECB mode, missing IV/nonce, nonce reuse
  • Custom crypto implementations (almost always wrong)
  • Insufficient randomness: Math.random(), random.random(), rand() for security purposes

Secrets & Configuration (CWE-798, CWE-532, CWE-209)

  • Hardcoded API keys, passwords, tokens, connection strings
  • Secrets in version control (.env committed, config files with credentials)
  • Secrets logged or included in error messages returned to users
  • Debug mode enabled in production configs
  • Overly permissive CORS, missing security headers

Data Exposure (CWE-200, CWE-359, CWE-312)

  • Verbose error messages leaking stack traces, SQL queries, internal paths
  • API responses including more data than needed (over-fetching)
  • Sensitive data in URLs (tokens, PII in query strings → logged in access logs)
  • Missing encryption at rest for sensitive fields
  • Logging PII or secrets

Supply Chain & Dependencies (CWE-1104)

  • Known vulnerable dependencies (check version numbers against known CVEs when possible)
  • Unpinned dependencies that could be hijacked
  • Typosquatting risk in package names
  • Loading scripts/resources from untrusted CDNs without integrity checks

Business Logic

  • Race conditions in financial transactions, inventory, or voting
  • Mass assignment / parameter pollution
  • Missing validation on business-critical values (negative prices, zero quantities, date manipulation)
  • Insecure direct object references in business workflows

3. Report Findings

For each vulnerability found, provide:

## [SEVERITY] Finding Title

**CWE**: CWE-XXX — Name
**Location**: file.py:42 (function_name)
**CVSS Estimate**: X.X (if applicable)

**What's wrong**: Concise explanation of the vulnerability and why it matters.

**Proof of concept**: Show how an attacker would exploit this — a curl command, a
malicious input, a request sequence. Make it concrete.

**Fix**:
[Provide the actual corrected code, not just advice. Show the before/after diff
or the complete fixed function.]

**Why this fix works**: Brief explanation so the developer learns, not just copies.

Severity Levels

Use these consistently:

  • CRITICAL: Remote code execution, authentication bypass, SQL injection leading to data breach, hardcoded admin credentials
  • HIGH: Stored XSS, IDOR exposing sensitive data, privilege escalation, missing authorization on sensitive endpoints
  • MEDIUM: Reflected XSS, CSRF on state-changing operations, weak cryptography, information disclosure of internal details
  • LOW: Missing security headers, verbose errors in non-production, minor information leaks, cookie flags

4. Executive Summary

After the detailed findings, provide a brief summary:

## Security Review Summary

**Files Reviewed**: X files, ~Y lines of code
**Findings**: A critical, B high, C medium, D low
**Overall Risk**: [Critical/High/Medium/Low] — one-sentence justification

### Top 3 Priorities
1. [Most important fix with one-line description]
2. [Second most important]
3. [Third most important]

### What's Done Well
[Mention 1-2 security practices the code already follows — this builds trust
and encourages continued good practices]

Important Guidelines

Be precise, not paranoid. A finding like "you should validate input" is useless. Instead: "The username parameter on line 34 is concatenated into a SQL query without parameterization, allowing an attacker to inject SQL via ' OR 1=1 --." Show the exact line, the exact input, the exact exploit.

Prioritize exploitability. A theoretical vulnerability behind three layers of authentication is less urgent than an unauthenticated endpoint accepting raw SQL. Rank findings by real-world impact, not textbook severity.

Provide working fixes. Every finding must include code that actually resolves the issue. Not "consider using parameterized queries" but the actual parameterized query, written in the project's language and framework, following the project's patterns.

Respect the codebase. Write fixes that match the existing code style, use the same libraries, and fit naturally into the architecture. A fix that requires rewriting half the application isn't helpful.

Don't fabricate findings. If the code is reasonably secure, say so. Padding a report with non-issues erodes trust. It's fine to note areas for improvement without labeling them as vulnerabilities.

Check for false positives. Before reporting a finding, verify that there isn't already a mitigation in place — a middleware, a wrapper function, a framework-level protection. Read the surrounding code and configuration before concluding something is vulnerable.

Language-Specific Checklists

When reviewing code, also check for these language-specific pitfalls:

Python: pickle/yaml.load deserialization, os.system with string formatting, __import__, Django extra()/raw(), Flask debug mode, Jinja2 |safe

JavaScript/TypeScript: eval(), innerHTML, document.write, prototype pollution, child_process.exec, RegExp DoS, postMessage without origin check, npm supply chain

Java: XML external entities (XXE), insecure deserialization (ObjectInputStream), Spring expression injection, JDBC string concatenation, path traversal in File()

Go: fmt.Sprintf in SQL queries, unchecked errors, html/template vs text/template, goroutine races on shared state

Ruby: send/public_send with user input, ERB injection, Rails html_safe, mass assignment, YAML.load

PHP: include/require with user input, extract(), unserialize(), mysql_query, $$variable variables

Rust: unsafe blocks (review carefully), .unwrap() on network input, SQL via format!, FFI boundary issues

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.95%
按下载量换算36

Claude

30%
按下载量换算30

Cursor

17.74%
按下载量换算18

Gemini CLI

7.95%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills