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

identifyingidentifying 搜索

Agent Skill

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

总安装

233

周安装

10

GitHub Stars

9

下载量

82
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

identifying 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于根据关键词或任务场景从多个来源中筛选出相关线索或文档片段。
  • 通过 npx skills add 命令安装,需确认权限范围和维护状态后再使用。
  • 建议结合原始 README 核验具体用法,避免触发不必要的联网或文件操作。
  • 使用前请评估是否会执行命令或读写文件,确保符合安全策略。

SKILL.md

Identifiability Analysis (LINDDUN I)

Analyze source code for identifiability threats where individuals can be identified from supposedly anonymous data. Combinations of quasi-identifiers (zip code, birth date, gender) can uniquely identify individuals. Re-identification attacks on "anonymized" data are the primary concern.

Supported Flags

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

FlagIdentifiability-Specific Behavior
--scopeDefault changed. Focuses on files handling user data, anonymization logic, data exports, analytics pipelines, and API responses.
--depth quickGrep patterns only: scan for PII in logs, quasi-identifiers in exports, and missing anonymization.
--depth standardFull code read, analyze data fields returned in APIs and stored in databases for re-identification risk.
--depth deepTrace data flows from collection to storage to export. Assess quasi-identifier combinations across the system.
--depth expertDeep + re-identification risk modeling: estimate k-anonymity violations and uniqueness of attribute combinations.
--severityFilter output. Identifiability findings range from low (theoretical) to critical (direct PII exposure).
--fixGenerate anonymization, generalization, and suppression replacements.

Framework Context

LINDDUN I -- Identifiability

Identifiability occurs when a person can be identified from data that is supposed to be anonymous or pseudonymous. Read ../../shared/frameworks/linddun.md for the full LINDDUN framework reference including re-identification attack patterns and regulatory definitions.

Privacy Property Violated: Anonymity / Pseudonymity

STRIDE Mapping: Information Disclosure (identifiability focuses specifically on re-identification of anonymized data rather than general data access)

Workflow

Step 1 -- Determine Scope

  1. Parse --scope flag (default: changed).
  2. Resolve to a concrete file list.
  3. Filter to relevant files: data models, API handlers, data export logic, analytics pipelines, logging configuration, database schemas, and anonymization utilities.
  4. Prioritize files containing: user data structures, data export endpoints, log statements with user context, report generation, and data sharing logic.

Step 2 -- Analyze for Identifiability Patterns

Read each scoped file and assess re-identification risk:

  1. Identify direct identifiers: Find fields like name, email, phone, SSN, or national ID that should not appear in anonymous contexts.
  2. Identify quasi-identifiers: Find combinations of fields (zip code, age, gender, job title) that together may uniquely identify individuals.
  3. Check anonymization logic: Verify that anonymization techniques are actually applied and are sufficient (not just removing the name field).
  4. Assess API responses: Check whether endpoints return more personal attributes than the consumer needs.
  5. Examine logs and error messages: Look for PII appearing in log output, stack traces, or debug messages.

At --depth deep or --depth expert, model quasi-identifier combinations and estimate uniqueness across the population.

Step 3 -- Report Findings

Output findings per ../../shared/schemas/findings.md. Each finding needs: IDENT-NNN id, title, severity (based on directness of identification and data sensitivity), location with snippet, description of what enables identification, impact (re-identification harm), fix (anonymization, generalization, or suppression), and CWE/LINDDUN references.

Analysis Checklist

  1. Are direct identifiers (name, email, phone, SSN) present in data exports or analytics?
  2. Do API responses return more user attributes than the consumer actually needs?
  3. Are quasi-identifiers (zip code, birth date, gender) combined in any output?
  4. Is anonymization actually implemented, or just assumed in comments?
  5. Do logs contain IP addresses, user agents, or device identifiers alongside actions?
  6. Can database queries return single-user results from "anonymous" tables?
  7. Are email addresses or phone numbers used as primary keys or foreign keys?
  8. Do error messages or stack traces expose personal data fields?

What to Look For

  1. PII in log statements: Personal data written to application logs.

- Grep: log\.\w+\(.*email|logger\.\w+\(.*name|console\.log\(.*phone|print\(.*ssn

  1. Email or phone as primary key: Using direct identifiers as database keys.

- Grep: PRIMARY KEY.*email|primary_key.*email|@Column.*email.*unique|findByEmail|findByPhone

  1. IP address logging: Recording IP addresses without anonymization.

- Grep: req\.ip|request\.remote_addr|X-Forwarded-For|ip_address|ipAddress|getRemoteAddr

  1. Over-fetched API responses: SELECT * or returning full user objects.

- Grep: SELECT \*.*FROM.*user|\.findAll\(|\.find\(\{\}\)|res\.json\(user\)|JSON\.stringify\(user

  1. Insufficient anonymization: Removing names but keeping detailed attributes.

- Grep: anonymize|anonymise|deidentify|de_identify|pseudonymize|mask.*data

  1. Quasi-identifier combinations: Multiple demographic fields in the same record.

- Grep: zip_code.*birth_date|zipCode.*gender|age.*location|dateOfBirth.*address

  1. User agent collection: Storing full browser fingerprint strings.

- Grep: user-agent|userAgent|navigator\.userAgent|req\.headers\[.user-agent.\]

  1. Data exports without scrubbing: Export endpoints that dump raw user data.

- Grep: export.*user|download.*report|csv.*user|toCSV|toJSON.*user

Regulatory Mapping

RegulationProvisionRelevance
GDPR Recital 26Identifiability testData is personal if any means can identify the subject
GDPR Art. 4(5)Pseudonymization definitionPseudonymized data is still personal data
GDPR Art. 25Data protection by designAnonymization must be effective by design
HIPAA Safe Harbor18 identifier categoriesAll 18 must be removed for de-identification
CCPA 1798.140(h)Deidentified informationReasonably cannot be linked to a consumer
CCPA 1798.140(o)Personal informationIncludes information that identifies or could be linked

Output Format

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

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

  • references.cwe: CWE-359 or CWE-200 as appropriate
  • references.owasp: A02:2021 (Cryptographic Failures -- weak anonymization)
  • metadata.tool: "identifying"
  • metadata.framework: "linddun"
  • metadata.category: "I"

Summary table after all findings:

| Identifiability Pattern     | Critical | High | Medium | Low |
|-----------------------------|----------|------|--------|-----|
| Direct PII exposure         |          |      |        |     |
| PII in logs                 |          |      |        |     |
| Quasi-identifier combos     |          |      |        |     |
| Insufficient anonymization  |          |      |        |     |
| Over-fetched API responses  |          |      |        |     |
| IP / device tracking        |          |      |        |     |

Followed by: top 3 priorities, re-identification risk assessment, and overall assessment.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.07%
按下载量换算29

Claude

31.24%
按下载量换算26

Cursor

18.3%
按下载量换算15

Gemini CLI

9.11%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills