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

race-conditions竞争条件

Agent Skill

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

总安装

233

周安装

10

GitHub Stars

9

下载量

82
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/florianbuetow/claude-code --skill race-conditions

简介

用于查找、检索和筛选相关信息。race-conditions 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词快速定位候选结果。
  • 可结合来源仓库继续核验具体用法。
  • 安装前建议确认权限和维护状态。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 注意是否会触发联网或文件读写。

SKILL.md

Race Conditions (RACE)

Analyze source code for race condition vulnerabilities including time-of-check to time-of-use (TOCTOU), double-spend, check-then-act without locking, file system race conditions, shared state across async boundaries, and non-atomic counter operations. Race conditions are among the hardest bugs to detect through testing because they depend on timing, making static analysis essential.

Supported Flags

Read ../../shared/schemas/flags.md for the full flag specification. This skill supports all cross-cutting flags. Key flags for this skill:

  • --scope determines which files to analyze (default: changed)
  • --depth standard reads code and checks for common race patterns
  • --depth deep traces shared state across call graphs and async boundaries
  • --severity filters output (race conditions are often high or critical)

Framework Context

Key CWEs in scope:

  • CWE-362: Concurrent Execution Using Shared Resource with Improper Synchronization
  • CWE-367: Time-of-Check Time-of-Use (TOCTOU) Race Condition
  • CWE-820: Missing Synchronization
  • CWE-821: Incorrect Synchronization
  • CWE-829: Inclusion of Functionality from Untrusted Control Sphere

Detection Patterns

Read references/detection-patterns.md for the full catalog of code patterns, search heuristics, language-specific examples, and false positive guidance.

Workflow

1. Determine Scope

Parse flags and resolve the file list per ../../shared/schemas/flags.md. Filter to files likely to contain race-prone logic:

  • Database transaction handlers (**/services/**, **/handlers/**, **/models/**)
  • Payment and financial logic (**/payments/**, **/billing/**, **/wallet/**)
  • File system operations (**/storage/**, **/upload/**, **/fs/**)
  • Async/concurrent code (**/workers/**, **/tasks/**, **/jobs/**)
  • Counter and state management (**/counters/**, **/state/**, **/cache/**)

2. Check for Available Scanners

Detect scanners per ../../shared/schemas/scanners.md:

  1. semgrep -- primary scanner for concurrency patterns
  2. go vet -- Go-specific race detection heuristics
  3. bandit -- Python threading and synchronization issues

Record which scanners are available and which are missing.

3. Run Scanners (If Available)

If semgrep is available, run with rules targeting concurrency:

semgrep scan --config auto --json --quiet <target>

Filter results to rules matching race condition, TOCTOU, and concurrency patterns. Normalize output to the findings schema.

4. Claude Code Analysis

Regardless of scanner availability, perform manual code analysis:

  1. Check-then-act audit: Find patterns where a condition is checked and then acted on without atomic guarantees (e.g., check balance then debit).
  2. File TOCTOU: Find file existence checks followed by file operations without locking or atomic alternatives.
  3. Shared state across await: Identify mutable state read before an await point and used after it without re-validation.
  4. Non-atomic counters: Find counter increments (read-modify-write) without locking or atomic operations.
  5. Database transactions: Verify financial and state-changing operations use proper isolation levels and row-level locking.
  6. Async/parallel iteration: Find shared mutable state accessed in parallel loops, goroutines, or thread pools.

When --depth deep, additionally trace:

  • Full data flow of shared variables across async boundaries
  • Database isolation level configuration
  • Lock acquisition ordering (deadlock potential)

5. Report Findings

Format output per ../../shared/schemas/findings.md using the RACE prefix (e.g., RACE-001, RACE-002).

Include for each finding:

  • Severity and confidence
  • Exact file location with code snippet
  • The race window (what happens between check and act)
  • Exploit scenario describing how timing can be abused
  • Concrete fix with diff when possible
  • CWE references

What to Look For

These are the high-signal patterns specific to race conditions. Each maps to a detection pattern in references/detection-patterns.md.

  1. TOCTOU in file operations -- Checking file existence or permissions then operating on the file in a separate call.
  2. Double-spend / check-then-debit -- Reading a balance, comparing it, then debiting in separate non-atomic steps.
  3. Check-then-act without lock -- Any pattern where a condition is checked and the result is assumed to hold when the action executes.
  4. Shared state across await -- Reading mutable state, yielding execution (await/yield), then using the stale value.
  5. Non-atomic read-modify-write -- Counter increments, sequence generators, or flag toggles without synchronization.
  6. Missing database transaction isolation -- Financial operations using default (READ COMMITTED) isolation when SERIALIZABLE is needed.
  7. Parallel iteration over shared collection -- Modifying a shared list, map, or set from concurrent goroutines, threads, or async tasks.

Scanner Integration

ScannerCoverageCommand
semgrepTOCTOU file ops, non-atomic patternssemgrep scan --config auto --json --quiet <target>
go vetGo race condition heuristicsgo vet -race./...
banditPython threading issuesbandit -r <target> -f json -q

Fallback (no scanner): Use Grep with patterns from references/detection-patterns.md to find check-then-act patterns, file stat calls, counter operations, and async state access. Report findings with confidence: medium.

Output Format

Use the findings schema from ../../shared/schemas/findings.md.

  • ID prefix: RACE (e.g., RACE-001)
  • metadata.tool: race-conditions
  • metadata.framework: specialized
  • metadata.category: RACE
  • references.cwe: CWE-362, CWE-367
  • references.stride: T (Tampering) or E (Elevation of Privilege)

Severity guidance for this category:

  • critical: Double-spend in financial operations, authentication bypass via race
  • high: TOCTOU in security-sensitive file operations, check-then-act on authorization
  • medium: Non-atomic counters affecting business logic, shared state across await
  • low: Theoretical races with no clear exploit path, cosmetic counter inaccuracies

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.65%
按下载量换算28

Claude

30.85%
按下载量换算25

Cursor

20.27%
按下载量换算17

Gemini CLI

8.5%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills