Cryptographic Failures Security Check (A04:2025)
SkillCommerce & financeDetects weak or broken cryptography that lets attackers recover plaintext
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Cryptographic Failures Security Check (A04:2025) skill
What this skill tells your AI
The instructions your AI receives, as published by thejefflarson/soundcheck in .claude/skills/cryptographic-failures/SKILL.md and read by ahel’s review.
What this checks
Protects against weak or broken cryptography that allows attackers to recover plaintext passwords, forge tokens, or decrypt sensitive data. Failures here directly enable credential stuffing, account takeover, and data breach.
Vulnerable patterns
- Password hashed with a fast or unsalted algorithm such as MD5, SHA1, or bare SHA-256
- Security-sensitive token, session ID, nonce, or key generated from a non-cryptographic PRNG
- Encryption or signing key declared as a hardcoded string in source
- Symmetric encryption using ECB mode, or CBC mode with no separate MAC
- A nonce or IV that is constant, zero, or reused across messages with the same key
Fix immediately
Flag the vulnerable code and explain the risk. Then suggest a fix that establishes these properties:
- Passwords go through a slow, salted, memory-hard hash — bcrypt, scrypt, or argon2. Never MD5, SHA1, or SHA256-alone: they're fast enough to brute-force billions of candidates per second on consumer GPUs. The salt is per-password and stored alongside the hash, not a global constant.
- Security-sensitive randomness comes from a CSPRNG — the language's documented cryptographic random source. Never a general-purpose PRNG or time-seeded generator for tokens, session IDs, nonces, or keys.
- Symmetric encryption uses an authenticated mode — AES-GCM, AES-CCM, or ChaCha20-Poly1305. ECB never; CBC only with a separate MAC (encrypt-then-MAC). A fresh nonce per message, never reused with the same key.
- Keys live outside the source tree — environment variable, secrets manager, KMS, or OS keystore. Never hardcoded literals, never committed config files. Rotation requires touching infrastructure, not source.
Translate these principles to the audited file's language and platform. Use the documented cryptographic primitives for that stack — do not reimplement hashing, random, or AEAD from lower-level building blocks.
Verification
Confirm the response:
- Passwords are hashed with bcrypt, scrypt, or argon2 — never MD5, SHA1, or SHA256 alone
- All security tokens use the language's cryptographic random source — never a general-purpose PRNG
- No keys or secrets appear in source code; all loaded from environment or a secrets manager
- Symmetric encryption uses an authenticated mode (GCM, CCM, ChaCha20-Poly1305) — not ECB or CBC without MAC
References
Signals
- GitHub stars
- 20
- Last commit
- Jul 2026
Advanced
- Catalog kind
- skill
- Gateway key
cryptographic-failures- Source
- github.com/thejefflarson/soundcheck