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

detectingdetecting 搜索

Agent Skill

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

总安装

245

周安装

10

GitHub Stars

9

下载量

78
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

detecting 分析源码中的可探测性威胁,保护用户交互隐私。

  • 识别 API 处理程序是否存在暴露用户行为存在的风险。
  • 支持 LINDDUN 隐私模型 D1 检测,输出威胁分类与缓解建议。
  • 需配合 flags 配置作用域,避免在生产环境过度扫描。
  • detecting 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Detectability Analysis (LINDDUN D1)

Analyze source code for detectability threats where an observer can determine that a user is interacting with a system, that a record exists, or that a specific action was performed -- even without accessing the content itself. Privacy is compromised when the mere existence of an interaction or record reveals sensitive information.

Supported Flags

Read ../../shared/schemas/flags.md for full flag documentation. This skill supports all cross-cutting flags.

FlagDetectability-Specific Behavior
--scopeDefault changed. Focuses on files containing API handlers, error responses, presence indicators, and encrypted message handling.
--depth quickGrep patterns only: scan for enumeration endpoints, timing differences, and presence indicators.
--depth standardFull code read, analyze response patterns for information leakage through existence proofs.
--depth deepTrace API response behaviors across endpoints. Map enumeration surfaces and timing oracle opportunities.
--depth expertDeep + adversarial detectability simulation: model what an observer can infer from response patterns and metadata.
--severityFilter output. Severity depends on sensitivity of what can be detected.
--fixGenerate constant-time responses, uniform error handling, and padding implementations.

Framework Context

LINDDUN D1 -- Detectability

Detectability occurs when an adversary can determine that an item of interest exists, even without accessing its content. Read ../../shared/frameworks/linddun.md for the full LINDDUN framework reference including detectability patterns, timing side channels, and traffic analysis threats.

Privacy Property Violated: Undetectability / Unobservability

STRIDE Mapping: Information Disclosure (detectability focuses on existence proofs and metadata patterns rather than direct content access)

Workflow

Step 1 -- Determine Scope

  1. Parse --scope flag (default: changed).
  2. Resolve to a concrete file list.
  3. Filter to relevant files: API handlers, error handling middleware, presence or status indicators, encrypted message handling, notification systems, and cache management.
  4. Prioritize files containing: HTTP error responses, user existence checks, online status indicators, read receipts, and response timing logic.

Step 2 -- Analyze for Detectability Patterns

Read each scoped file and assess what an observer can detect about system usage or data existence:

  1. Check error response uniformity: Determine whether different error codes or messages reveal record existence (e.g., "user not found" vs. "wrong password").
  2. Assess timing consistency: Look for code paths where response time differs based on record existence (cache hit vs. database miss).
  3. Examine presence indicators: Find online status, typing indicators, read receipts, or activity signals that lack opt-out mechanisms.
  4. Check message padding: Determine whether encrypted messages have uniform size or leak content type through size variation.
  5. Evaluate enumeration surfaces: Identify endpoints that allow probing for existence of users, records, or resources.

At --depth deep or --depth expert, model the full observable surface and determine what an adversary can infer from response patterns and metadata.

Step 3 -- Report Findings

Output findings per ../../shared/schemas/findings.md. Each finding needs: DTCT-NNN id, title, severity (based on sensitivity of detectable information and ease of observation), location with snippet, description of what can be detected and through which channel, impact (what an observer infers), fix (uniform responses, constant-time ops, or padding), and CWE/LINDDUN references.

Analysis Checklist

  1. Do error responses differentiate "not found" from "access denied" for user lookups?
  2. Can an observer enumerate valid usernames, emails, or account IDs?
  3. Do response times vary based on whether a record exists (timing oracle)?
  4. Are there presence indicators or read receipts without opt-out?
  5. Do encrypted messages vary in size, revealing content type or length?
  6. Can push notification patterns reveal when a user receives messages?
  7. Do API rate limit responses differ for authenticated vs. non-existing users?
  8. Can traffic analysis reveal which features or services a user accesses?

What to Look For

  1. User enumeration via error messages: Different responses for existing vs. non-existing accounts.

- Grep: user not found|invalid username|no such user|email not registered|account does not exist

  1. Timing oracles: Early-return patterns that reveal record existence.

- Grep: if.*!user.*return|if.*notFound.*return|findOne.*then.*404|catch.*404

  1. Presence and activity indicators: Online status, typing, and read receipt systems.

- Grep: isOnline|online_status|lastSeen|last_active|typing.*indicator|read.*receipt|seen.*at

  1. Account enumeration endpoints: Registration, password reset, or login that reveal existence.

- Grep: already registered|email.*taken|username.*exists|account.*already|duplicate.*email

  1. Unpadded encrypted content: Variable-length encrypted messages.

- Grep: encrypt\(|cipher\.update|AES.*encrypt|padding|PKCS|NoPadding

  1. Observable API patterns: Sequential IDs or predictable resource identifiers.

- Grep: autoIncrement|SERIAL|sequence|nextval|uuid.*v1|ObjectId

  1. Notification metadata leakage: Push notification patterns revealing user behavior.

- Grep: sendNotification|pushNotif|FCM|APNs|webpush|notify\(.*user

Regulatory Mapping

RegulationProvisionRelevance
GDPR Art. 25Data protection by designSystems must prevent unauthorized detection of data existence
GDPR Art. 32Security of processingIncludes protection against unauthorized disclosure via side channels
CCPA 1798.150Private right of actionUnauthorized access including inference from observable patterns
HIPAA 164.312(e)Transmission securityHealth record existence must not be detectable
ePrivacy Directive Art. 5Confidentiality of communicationsCommunication metadata must be protected

Output Format

Use finding ID prefix DTCT (e.g., DTCT-001, DTCT-002).

All findings follow the schema in ../../shared/schemas/findings.md with:

  • references.cwe: CWE-203 (Observable Discrepancy) or CWE-208 (Observable Timing Discrepancy)
  • references.owasp: A05:2021 (Security Misconfiguration -- information leakage in responses)
  • metadata.tool: "detecting"
  • metadata.framework: "linddun"
  • metadata.category: "D1"

Summary table after all findings:

| Detectability Pattern       | Critical | High | Medium | Low |
|-----------------------------|----------|------|--------|-----|
| User enumeration            |          |      |        |     |
| Timing side channels        |          |      |        |     |
| Presence indicators         |          |      |        |     |
| Account enumeration         |          |      |        |     |
| Message size leakage        |          |      |        |     |
| Notification patterns       |          |      |        |     |

Followed by: top 3 priorities, enumeration surface map, and overall assessment.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.82%
按下载量换算29

Claude

30.76%
按下载量换算24

Cursor

16.34%
按下载量换算13

Gemini CLI

8.51%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills