Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计提醒

scv-scan连续病毒扫描

Agent Skill

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

总安装

865

周安装

35

GitHub Stars

379

下载量

272
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/trailofbits/skills-curated --skill scv-scan

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果时使用。
  • 通过 github 安装,结合来源仓库和 README 可核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发代码扫描或报告生成。
  • 适用于 Solidity 智能合约的安全漏洞检测与严重性评估。

SKILL.md

Smart Contract Vulnerability Auditor

Systematically audit a Solidity codebase for vulnerabilities using a four-phase approach that balances thoroughness with efficiency.

When to Use

  • Auditing a Solidity codebase for security vulnerabilities before deployment
  • Reviewing smart contract code for common exploit patterns (reentrancy, overflow, access control, etc.)
  • Performing a structured vulnerability scan across an entire Solidity project
  • Validating that a contract follows security best practices after modifications

When NOT to Use

  • Auditing non-Solidity smart contracts (Vyper, Rust/Anchor, Move) — patterns are Solidity-specific
  • Reviewing off-chain code (JavaScript, TypeScript backends) — use general security review instead
  • When the user only wants gas optimization or code style feedback — this focuses on exploitable vulnerabilities
  • For formal verification of invariants — use tools like Certora, Halmos, or Echidna instead

Rationalizations to Reject

  • "The compiler version is >=0.8.0 so overflow isn't possible" — unchecked blocks, assembly, and type downcasts still wrap
  • "It uses OpenZeppelin so it's safe" — integration bugs, incorrect inheritance order, and missing modifiers on custom functions are common
  • "That function is internal so it can't be exploited" — internal functions called from external entry points inherit the caller's context
  • "There's no ETH involved so reentrancy doesn't apply" — ERC721 _safeMint, ERC1155 safe transfers, and ERC777 hooks all trigger callbacks
  • "The contract is upgradeable so we can fix it later" — initialize() without initializer modifier is itself a critical vulnerability

Reference Structure

references/
  CHEATSHEET.md          # Condensed pattern reference — always read first
  reentrancy.md          # Full reference files — read selectively in Phase 3
  overflow-underflow.md
  ...

Each full reference file in references/ has these sections:

  • Preconditions — what must be true for the vulnerability to exist
  • Vulnerable Pattern — annotated Solidity anti-pattern
  • Detection Heuristics — step-by-step reasoning to confirm the vulnerability
  • False Positives — when the pattern appears but isn't exploitable
  • Remediation — how to fix it

Audit Workflow

Phase 1: Load the Cheatsheet

Before touching any Solidity files, read {baseDir}/skills/scv-scan/references/CHEATSHEET.md in full.

This file contains a condensed entry for every known vulnerability class: name, what to look for (syntactic and semantic), and default severity. Internalize these patterns — they are your detection surface for the sweep phase. Do NOT read any full reference files yet.

Phase 2: Codebase Sweep

Perform two complementary passes over the codebase.

Pass A: Syntactic Grep Scan

Search for the trigger patterns listed in the cheatsheet under "Grep-able keywords". Use grep or ripgrep to find matches.

For each match, record: file, line number(s), matched pattern, and suspected vulnerability type(s).

Pass B: Structural / Semantic Analysis

This pass catches vulnerabilities that have no reliable grep signature. Read through the codebase searching for any relevant logic similar to that explained in the cheatsheet.

For each finding in this pass, record: file, line number(s), description of the concern, and suspected vulnerability type(s).

Compile Candidate List

Merge results from Pass A and Pass B into a deduplicated candidate list. Each entry should look like:

- File: `path/to/file.sol` L{start}-L{end}
- Suspected: [vulnerability-name] (from CHEATSHEET.md)
- Evidence: [brief description of what was found]

Phase 3: Selective Deep Validation

For each candidate in the list:

  1. Read the full reference file for the suspected vulnerability type (e.g., {baseDir}/skills/scv-scan/references/reentrancy.md). Read it now — not before.
  2. Walk through every Detection Heuristic step against the actual code. Be precise — trace variable values, check modifiers, follow call chains.
  3. Check every False Positive condition. If any false positive condition matches, discard the finding and note why.
  4. Cross-reference: one code location can match multiple vulnerability types. If the cheatsheet maps the same pattern to multiple references, read and validate against each.
  5. Confirm or discard. Only confirmed findings go into the final report.

Phase 4: Report

For each confirmed finding, output:

### [Vulnerability Name]

**File:** `path/to/file.sol` L{start}-L{end}
**Severity:** Critical | High | Medium | Low | Informational

**Description:** What is vulnerable and why, in 1-3 sentences.

**Code:**

// The vulnerable code snippet


**Recommendation:** Specific fix, referencing the Remediation section of the reference file.

After all findings, include a summary section:


## Summary

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

Write the final report to scv-scan.md.

Severity Guidelines

  • Critical: Direct loss of funds, unauthorized fund extraction, permanent freezing of funds
  • High: Conditional fund loss, access control bypass, state corruption exploitable under realistic conditions
  • Medium: Unlikely fund loss, griefing attacks, DoS on non-critical paths, value leak under edge conditions
  • Low: Best practice violations, gas inefficiency, code quality issues with no direct exploit path
  • Informational: Unused variables, style issues, documentation gaps

Key Principles

  • Cheatsheet first, references on-demand. Never read all full reference files upfront. The cheatsheet gives you ambient awareness; full references are for validation only.
  • Semantic > syntactic. The hardest bugs don't grep. Cross-function reentrancy, missing access control, incorrect inheritance — these require reading and reasoning, not pattern matching.
  • Trace across boundaries. Follow state across function calls, contract calls, and inheritance chains. Hidden external calls (safe mint/transfer hooks, ERC-777 callbacks) are as dangerous as explicit .call().
  • One location, multiple bugs. A single line can be vulnerable to reentrancy AND unchecked return value. Check all applicable references.
  • Version matters. Always check pragma solidity — many vulnerabilities are version-dependent (e.g., overflow is checked by default in >=0.8.0).
  • False positives are noise. Be rigorous about checking false positive conditions. A shorter report with high-confidence findings is more valuable than a long one padded with maybes.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.34%
按下载量换算96

Claude

29.63%
按下载量换算81

Cursor

19.5%
按下载量换算53

Gemini CLI

8.31%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills