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

non-repudiation-privacy不可否认隐私

Agent Skill

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

总安装

235

周安装

10

GitHub Stars

9

下载量

82
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/florianbuetow/claude-code --skill non-repudiation-privacy

简介

non-repudiation-privacy 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 支持不可否认性与隐私保护相关的研究与信息聚合。
  • 安装命令:npx skills add https://github.com/florianbuetow/claude-code --skill non-repudiation-privacy。
  • 使用前需确认权限范围和维护状态,避免触发不必要的联网或文件操作。

SKILL.md

Non-Repudiation Privacy Analysis (LINDDUN N)

Analyze source code for non-repudiation threats where forced accountability creates privacy risks. In privacy, non-repudiation becomes a threat when it creates irrefutable proof linking users to sensitive activities where plausible deniability should be preserved. This is the inverse of STRIDE Repudiation.

Supported Flags

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

FlagNon-Repudiation-Specific Behavior
--scopeDefault changed. Focuses on files containing audit logging, digital signatures, transaction receipts, and immutable record storage.
--depth quickGrep patterns only: scan for comprehensive audit logging and signature mechanisms.
--depth standardFull code read, classify logged actions by sensitivity, assess deniability gaps.
--depth deepTrace audit trail coverage across the system. Map which sensitive actions create irrefutable evidence.
--depth expertDeep + adversarial subpoena simulation: model what a legal adversary can prove from system records.
--severityFilter output. Severity depends on sensitivity of the activity being irrefutably logged.
--fixGenerate selective logging, retention limits, and anonymous channel implementations.

Framework Context

LINDDUN N -- Non-repudiation (Privacy Context)

Non-repudiation in a privacy context occurs when the system creates irrefutable proof that a specific user performed a sensitive action, in situations where plausible deniability should be available. Read ../../shared/frameworks/linddun.md for the full LINDDUN framework reference including the relationship between LINDDUN N and STRIDE R.

Privacy Property Violated: Plausible Deniability

STRIDE Mapping: Repudiation (inverse relationship -- STRIDE treats deniability as a security threat; LINDDUN treats forced accountability as a privacy threat)

Workflow

Step 1 -- Determine Scope

  1. Parse --scope flag (default: changed).
  2. Resolve to a concrete file list.
  3. Filter to relevant files: audit logging modules, transaction logging, digital signature implementations, blockchain integrations, session recording, and compliance audit code.
  4. Prioritize files containing: audit trail logic, activity logging, digital signature verification, immutable storage writes, and user action recording.

Step 2 -- Analyze for Non-Repudiation Privacy Threats

Read each scoped file and assess whether accountability mechanisms create privacy risks:

  1. Classify logged actions by sensitivity: Distinguish routine actions (login, purchase) from sensitive ones (health queries, political content, whistleblowing, personal searches).
  2. Check audit granularity: Determine whether logging is applied uniformly or selectively based on sensitivity classification.
  3. Assess digital signature scope: Identify where signatures create irrefutable proof of user involvement in sensitive activities.
  4. Examine retention policies: Check whether audit logs of sensitive actions have appropriate retention limits or persist indefinitely.
  5. Look for anonymous alternatives: Check whether sensitive features allow pseudonymous or anonymous participation.

At --depth deep or --depth expert, model the full audit trail and determine what a legal adversary or data breach could reveal about user behavior.

Step 3 -- Report Findings

Output findings per ../../shared/schemas/findings.md. Each finding needs: NREP-NNN id, title, severity (based on activity sensitivity and irrefutability of proof), location with snippet, description of evidence created, impact (what can be proven if logs are subpoenaed), fix (selective logging, retention limits, or anonymous channels), and CWE/LINDDUN references.

Analysis Checklist

  1. Does the system log every user action regardless of sensitivity classification?
  2. Are sensitive queries (health, legal, political) logged with user identity?
  3. Do digital signatures create irrefutable proof of user involvement in sensitive actions?
  4. Are there features (whistleblowing, reporting) that require real identity?
  5. Can audit logs be subpoenaed to prove user behavior in sensitive contexts?
  6. Do immutable storage systems (blockchain, append-only logs) prevent erasure?
  7. Are there retention policies limiting how long sensitive action logs persist?
  8. Is there a sensitivity classification for routine vs. sensitive actions?

What to Look For

  1. Blanket audit logging: All actions logged without sensitivity classification.

- Grep: audit\.log|auditLog|audit_trail|AuditEvent|createAuditEntry|logActivity

  1. User identity in sensitive action logs: User IDs linked to sensitive operations.

- Grep: log.*userId.*search|audit.*user.*query|record.*identity.*action

  1. Digital signatures on all transactions: Signatures applied without privacy assessment.

- Grep: sign\(|createSignature|digitalSignature|crypto\.sign|jwt\.sign.*action

  1. Immutable storage of user actions: Append-only or blockchain storage linking users to actions.

- Grep: blockchain|immutable|append.only|ledger|write.*once|WORM

  1. Session recording with identity: Full session capture linked to identified users.

- Grep: sessionRecording|screenCapture|fullStory|hotjar|mouseflow|session.replay

  1. Missing anonymous channels: No pseudonymous alternatives for sensitive features.

- Grep: anonymous|pseudonym|whistleblow|report.*anonymous|tipline

  1. Indefinite retention of action logs: No TTL or cleanup for sensitive audit records.

- Grep: retention|ttl|cleanup|purge|expire.*audit|delete.*log.*older

Regulatory Mapping

RegulationProvisionRelevance
GDPR Art. 17Right to erasureIrrefutable audit trails may conflict with deletion rights
GDPR Art. 5(1)(e)Storage limitationIndefinite audit logs violate storage limitation principle
GDPR Art. 5(1)(c)Data minimizationExcessive logging collects more data than necessary
EU Directive 2019/1937Whistleblower protectionAnonymous reporting channels must protect identity
HIPAA Privacy RuleMinimum necessary standardAccess logs should record minimum necessary detail
CCPA 1798.105Right to deleteUsers may request deletion of activity records

Output Format

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

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

  • references.cwe: CWE-779 (Logging of Excessive Data)
  • references.owasp: A09:2021 (Security Logging & Monitoring Failures -- excessive audit trail)
  • metadata.tool: "non-repudiation-privacy"
  • metadata.framework: "linddun"
  • metadata.category: "N"

Summary table after all findings:

| Non-Repudiation Pattern     | Critical | High | Medium | Low |
|-----------------------------|----------|------|--------|-----|
| Blanket audit logging       |          |      |        |     |
| Identity in sensitive logs  |          |      |        |     |
| Mandatory signatures        |          |      |        |     |
| Immutable action records    |          |      |        |     |
| Session recording           |          |      |        |     |
| Missing anonymous channels  |          |      |        |     |

Followed by: top 3 priorities, sensitivity classification gaps, and overall assessment.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.21%
按下载量换算30

Claude

30.95%
按下载量换算25

Cursor

20.2%
按下载量换算17

Gemini CLI

9.6%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills