Lines 28-71text
30 '''^shared/projects/[^/]+/.*\.jsonl$''',
34# Path-scoped: the documented test-fixture github-pat literal AND the three
35# entropy-variant placeholders (zero-suffix, alphabet, repeat-A) accumulate
36# in Claude Code session transcripts whenever a conversation touches the
37# Pitfall 4 docs, this allowlist itself, or a session-scrub discussion that
38# names one of the variants. Live sessions cannot be safely sed-scrubbed
39# (sed -i renames out from under the running CLI's open file descriptor
40# and silently drops post-rename writes), so the only sustainable
41# false-positive handler is a narrow allowlist scoped to synced session
42# paths. `condition = "AND"` requires BOTH a known literal AND a
43# `shared/projects/<logical>/.../*.jsonl` path; a real PAT in the same
44# file (different 36-char body) still fires.
46description = "claude-nomad: documented test-fixture github-pat literals + scrub placeholders in synced session transcripts"
48 '''ghp_xJZbT3qfV2nLpKR8mYwH4dGtCsW9aE1uF6oA''',
CriticalCritical Secret
Package contains a critical-looking secret pattern.
.gitleaks.tomlView on unpkg · L48 49 '''ghp_xJZbT3qfV2nLpKR8mYwH4dGtCs0000000000''',
50 '''ghp_ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789''',
51 '''ghp_AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA''',
54 '''^shared/projects/[^/]+/.*\.jsonl$''',
58# Path-scoped: SSH public-key fingerprints in git signature-verification
59# output (`git log --show-signature`, `git verify-commit`) land in session
60# transcripts as `Good "git" signature for <signer> with ED25519 key
61# SHA256:<43-char base64>`. The fingerprint is a hash of a PUBLIC key, not a
62# credential, but its 43-char base64 body trips generic-api-key. Anchoring on
63# the surrounding `with <keytype> key SHA256:` structure (via
64# regexTarget = "line") keeps this from whitelisting a bare token: a real
65# secret is never preceded by an SSH key-type label and the SHA256: scheme
66# prefix. `condition = "AND"` plus the session-jsonl path scope double-locks
67# it to synced transcripts.
69description = "claude-nomad: SSH public-key fingerprints (with <keytype> key SHA256:<b64>) in git signature output in synced session transcripts"