| name | crypto-library-misuse |
| description | Detects library-internal cryptographic correctness bugs that pattern matchers and crypto-failures skills miss — AEAD nonce reuse, ECDSA k-value reuse, length-extension on bare hashes, padding-oracle exception distinguishability, and branching on secret material. Use when writing code that calls a crypto primitive directly (AEAD encrypt/decrypt, ECDSA/DSA sign, raw hash, RSA decrypt). Distinct from cryptographic-failures, which covers application-layer choices like MD5 for passwords; this skill is about how primitives are wired up. |
Crypto Library Misuse (CWE-323, CWE-330, CWE-208)
What this checks
Cryptographic primitives are correct only when their preconditions are met. Not
"weak algorithm picked" — that's cryptographic-failures. These are "right
primitive, wrong wiring": nonce reused, per-signature random reused, comparison
branches on secret bits, exception type leaks which decryption failure happened.
Each pattern below has produced a real CVE (Sony PS3 ECDSA k-reuse, Marvin RSA timing).
Vulnerable patterns
- AEAD nonce reuse: an AEAD encrypt call where the nonce is fixed, zeroed, or
a wrapping counter. A single reused nonce lets an attacker XOR two ciphertexts
and recover both plaintexts.
- ECDSA/DSA k reuse or weak randomness: signing with a predictable or repeated
per-signature random value. Two signatures with the same k recover the private
key by linear algebra.
- Length-extension on bare hashes: using
hash(secret || msg) as a MAC. SHA-2
length-extension lets an attacker forge a valid tag over an extended message.
- Padding oracle via exception distinguishability: distinct exception types
for "ciphertext too short" versus "padding invalid". Bleichenbacher and Manger
attacks need exactly that one bit per query.
- Branching on secret material: a conditional whose branch depends on a key
bit or MAC byte produces a measurable timing difference. Includes early-exit
byte comparison on MAC or signature verification.
- Static IV for CBC: encrypting two plaintexts with the same IV reveals their
common prefix.
- ECB used for structured data: identical plaintext blocks produce identical
ciphertext blocks, leaking structure.
Fix immediately
Flag the vulnerable call site and explain the risk. Then suggest a fix that
establishes these properties:
- Every AEAD encrypt uses a fresh nonce drawn from a CSPRNG, or a managed
monotonic counter with an overflow guard. The nonce is stored or transmitted
alongside the ciphertext.
- ECDSA/DSA signing uses deterministic k (RFC 6979) or a library that
guarantees a fresh per-signature random — the caller never supplies k.
- MACs use a MAC primitive (HMAC, Poly1305, KMAC), not a bare hash of
secret || msg. HMAC's two-pass construction defeats length-extension.
- Comparisons over MACs, signatures, or hashes use a constant-time primitive
documented for that purpose — never plain equality or early-exit byte comparison.
- All decryption-failure paths raise a single exception type at the boundary,
collapsing padding, length, and authentication failures into one indistinguishable
error.
- No branch inside a crypto routine depends on a secret bit. Use bitwise
selection or library primitives that document constant-time behavior.
- CBC uses a fresh random IV per message; ECB is not used for structured data.
Prefer an AEAD mode over CBC+MAC when the platform offers one.
Translate these principles to the audited file's language and crypto library. Use
the documented high-level API (AEAD wrapper, signing context, HMAC primitive,
constant-time-compare helper) — do not assemble these guarantees by hand.
Verification
After rewriting, confirm:
References