Install any skill in seconds. Free to start, no credit card required.
Get Started Free →SSL/TLS auditing, cipher suite analysis, hash algorithm identification, encryption implementation review, and cryptographic weakness detection in code
.claude/skills/masriyan-cryptographic-analysis-assessment/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 178% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 245% | 0% |
| case-10 | ✗→✓ | ▲ Improved | 210% | 0% |
| case-03 | ✓→✓ | = Same ✓ | 183% | 0% |
| case-04 | ✓→✓ | = Same ✓ | 242% | 0% |
Enable Claude to assist with cryptographic security assessments including SSL/TLS configuration auditing, cipher suite analysis and recommendation, hash algorithm identification, encryption implementation code review, key management evaluation, and detection of cryptographic vulnerabilities. Claude directly analyzes provided configurations and code.
This skill activates when the user asks about:
bashpip install cryptography requests pyOpenSSL
Recommended tools:
sslyze — Python TLS scannertestssl.sh — Comprehensive TLS testingopenssl — Command-line TLS operationsWireshark — TLS traffic analysiscertbot — Certificate managementWhen the user asks to audit TLS for a server or paste a TLS configuration:
Command-line audit approach:
bash# Quick TLS check using openssl openssl s_client -connect example.com:443 -tls1_2 2>/dev/null | grep -E "Protocol|Cipher" openssl s_client -connect example.com:443 -tls1 2>/dev/null | grep -E "handshake|error" # Check certificate details openssl s_client -connect example.com:443 </dev/null 2>/dev/null | openssl x509 -noout -dates -subject -issuer # Comprehensive scan with sslyze sslyze --regular example.com --json_out result.json # Or testssl.sh (most comprehensive) ./testssl.sh --severity HIGH --quiet example.com # Use the skill's script python scripts/tls_auditor.py --host example.com --port 443 --output report.json python scripts/tls_auditor.py --host mail.example.com --port 993 --grade
TLS Version Support Ratings: | Protocol | Status | Action | |----------|--------|--------| | SSLv2 | Critically broken | Block immediately | | SSLv3 | Broken (POODLE) | Block immediately | | TLS 1.0 | Deprecated (PCI-DSS violation) | Disable — BEAST, POODLE | | TLS 1.1 | Deprecated | Disable | | TLS 1.2 | Acceptable (with strong ciphers) | Keep with restrictions | | TLS 1.3 | Current standard | Enable and prefer |
TLS Vulnerability Checklist:
[ ] Heartbleed (CVE-2014-0160): openssl s_client + heartbleed test
[ ] POODLE: SSLv3 enabled?
[ ] BEAST: TLS 1.0 + CBC cipher?
[ ] ROBOT: RSA key exchange supported?
[ ] DROWN: SSLv2 on any port of same server?
[ ] Logjam/FREAK: DHE < 2048-bit or EXPORT ciphers?
[ ] CRIME/BREACH: TLS compression enabled?
[ ] Sweet32: 3DES (64-bit block cipher) supported?
[ ] Weak certificate: RSA < 2048-bit, SHA-1 signed?
[ ] Certificate validity: Not expired, chain complete, not self-signed for prod?
[ ] HSTS: Strict-Transport-Security header present?
[ ] CT: Certificate in public transparency logs?When the user asks about cipher suite security:
TLS 1.3 Cipher Suites (All Secure — Use These): | Cipher Suite | Key Exchange | Auth | Encryption | MAC | Rating | |-------------|-------------|------|------------|-----|--------| | TLS_AES_256_GCM_SHA384 | ECDHE | RSA/ECDSA | AES-256-GCM | SHA-384 | A+ | | TLS_CHACHA20_POLY1305_SHA256 | ECDHE | RSA/ECDSA | ChaCha20 | Poly1305 | A+ | | TLS_AES_128_GCM_SHA256 | ECDHE | RSA/ECDSA | AES-128-GCM | SHA-256 | A |
TLS 1.2 Cipher Suite Ratings: | Cipher Suite | Rating | Notes | |-------------|--------|-------| | ECDHE-ECDSA-AES256-GCM-SHA384 | A+ | Perfect — AEAD, PFS | | ECDHE-RSA-AES256-GCM-SHA384 | A+ | Perfect — AEAD, PFS | | ECDHE-RSA-AES128-GCM-SHA256 | A | Good — AEAD, PFS | | DHE-RSA-AES256-GCM-SHA384 | A | Good — if DHE ≥ 2048-bit | | AES256-GCM-SHA384 | B | No forward secrecy | | ECDHE-RSA-AES256-SHA384 | B | CBC mode (timing attacks) | | RC4-SHA | F | RC4 broken — never use | | DES-CBC3-SHA | F | 3DES vulnerable (Sweet32) | | NULL-SHA | F | No encryption | | EXPORT-RC4-MD5 | F | FREAK vulnerable |
Recommended nginx TLS Configuration (Mozilla Modern Profile):
nginxssl_protocols TLSv1.2 TLSv1.3; ssl_prefer_server_ciphers off; # TLS 1.3 ignores this; client order for TLS 1.2 # For TLS 1.2 compatibility ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384; # DH parameters for DHE cipher suites ssl_dhparam /etc/nginx/dhparam.pem; # Generate: openssl dhparam -out dhparam.pem 4096 # Session management ssl_session_timeout 1d; ssl_session_cache shared:SSL:10m; ssl_session_tickets off; # Disabling improves forward secrecy # HSTS add_header Strict-Transport-Security "max-age=63072000; includeSubDomains; preload" always; # OCSP Stapling ssl_stapling on; ssl_stapling_verify on; resolver 1.1.1.1 8.8.8.8 valid=300s;
Generate DH parameters:
bash# 4096-bit DH parameters (do this once, takes a few minutes) openssl dhparam -out /etc/nginx/dhparam.pem 4096
When the user provides a hash value or asks to identify hash algorithms:
Hash Identification by Format: | Hash Format / Length | Algorithm | Security Status | |----------------------|-----------|----------------| | 32 hex chars | MD5 | Broken — collision attacks exist | | 40 hex chars | SHA-1 | Deprecated — SHAttered collision | | 56 hex chars | SHA-224 | Acceptable (limited use) | | 64 hex chars | SHA-256 | Current standard | | 96 hex chars | SHA-384 | Strong | | 128 hex chars | SHA-512 | Strong | | $apr1$... | MD5-APR (Apache) | Weak — only 1000 iterations | | $1$... | MD5-crypt | Broken | | $5$... | SHA-256-crypt | Acceptable | | $6$... | SHA-512-crypt | Good | | $2b$12$... | bcrypt (cost 12) | Good for passwords | | $argon2id$... | Argon2id | Best for passwords | | sha256:... | Django SHA-256 | Good | | pbkdf2_sha256$... | PBKDF2-SHA256 | Good if iterations ≥ 260,000 |
Password Hash Security Assessment:
bcrypt:
$2b$10$... → cost factor 10 → ~100ms/hash → ACCEPTABLE
$2b$12$... → cost factor 12 → ~400ms/hash → GOOD
$2b$14$... → cost factor 14 → ~1.6s/hash → STRONG
Argon2id (OWASP recommended):
Minimum: m=19456 (19MB), t=2 iterations, p=1 parallelism
Strong: m=65536 (64MB), t=3 iterations, p=4 parallelism
PBKDF2:
SHA-1: 1,300,000 iterations minimum (NIST 2023)
SHA-256: 600,000 iterations minimum (NIST 2023)
SHA-512: 210,000 iterations minimum (NIST 2023)
Avoid:
Plain MD5/SHA-1 → instantly cracked
bcrypt cost < 10 → too fast for modern hardware
No salt → rainbow table attack
SHA-256 without KDF → GPU-crackableWhen the user asks to review code for cryptographic flaws:
Claude reads the code directly and flags these patterns:
Python Crypto Anti-Patterns:
python# INSECURE: Hardcoded encryption key key = b"mysecretkey12345" # ← NEVER hardcode keys cipher = AES.new(key, AES.MODE_ECB) # ← ECB mode is insecure # INSECURE: ECB mode (produces identical ciphertext for identical blocks) from Crypto.Cipher import AES cipher = AES.new(key, AES.MODE_ECB) # ← Pattern detection attacks possible # INSECURE: Static/reused IV iv = b"\x00" * 16 # ← Static IV allows pattern detection cipher = AES.new(key, AES.MODE_CBC, iv) # ← Reusing IV with same key = CRITICAL # INSECURE: Weak hash for passwords import hashlib password_hash = hashlib.md5(password.encode()).hexdigest() # ← GPU-crackable # INSECURE: Trusting certificate errors import ssl ssl._create_default_https_context = ssl._create_unverified_context # ← MitM possible requests.get(url, verify=False) # ← Never do this in production
Secure Python Crypto Patterns:
pythonfrom cryptography.hazmat.primitives.ciphers.aead import AESGCM from cryptography.hazmat.primitives.kdf.pbkdf2 import PBKDF2HMAC from cryptography.hazmat.primitives import hashes import os, secrets # SECURE: Derive key from password using PBKDF2 def derive_key(password: bytes, salt: bytes = None) -> tuple[bytes, bytes]: if salt is None: salt = secrets.token_bytes(32) # 256-bit random salt kdf = PBKDF2HMAC( algorithm=hashes.SHA256(), length=32, # 256-bit key salt=salt, iterations=600_000 # NIST 2023 minimum for PBKDF2-SHA256 ) key = kdf.derive(password) return key, salt # SECURE: AES-GCM (authenticated encryption) def encrypt(data: bytes, key: bytes) -> bytes: aesgcm = AESGCM(key) nonce = secrets.token_bytes(12) # 96-bit random nonce (NEVER reuse!) ciphertext = aesgcm.encrypt(nonce, data, associated_data=None) return nonce + ciphertext # Prepend nonce for decryption def decrypt(ciphertext: bytes, key: bytes) -> bytes: aesgcm = AESGCM(key) nonce = ciphertext[:12] return aesgcm.decrypt(nonce, ciphertext[12:], associated_data=None) # SECURE: Argon2id for password hashing from argon2 import PasswordHasher ph = PasswordHasher(time_cost=3, memory_cost=65536, parallelism=4) hashed = ph.hash(password) # Automatic random salt ph.verify(hashed, password) # Verify with timing-safe comparison
Code Review Checklist:
Encryption:
[ ] No hardcoded keys (check for key = b"...", SECRET_KEY = "...", etc.)
[ ] No ECB mode (MODE_ECB, "AES/ECB/PKCS5Padding")
[ ] IV/Nonce is random and unique per encryption operation
[ ] Authenticated encryption used (AES-GCM, ChaCha20-Poly1305)
[ ] Key properly derived from password (PBKDF2, bcrypt, Argon2)
[ ] No custom/homebrew crypto algorithms
Certificate Handling:
[ ] Certificate validation is NOT disabled (verify=True)
[ ] Certificate pinning for mobile/critical apps
[ ] No ssl._create_unverified_context
Randomness:
[ ] Cryptographic operations use secrets module or os.urandom()
[ ] Not using random.random() or random.randint() for security
[ ] Tokens and OTPs have sufficient entropy (≥128 bits)When the user asks about key management:
Key Length Recommendations (2025): | Algorithm | Minimum | Recommended | Notes | |-----------|---------|-------------|-------| | RSA | 2048-bit | 3072-bit | NIST recommends 3072+ post-2030 | | ECC (ECDSA) | P-256 | P-384 | P-256 OK through 2030 | | AES | 128-bit | 256-bit | 128-bit adequate; use 256 for high-value | | ECDH (key exchange) | P-256 | P-384 | | | DH (classic) | 2048-bit | 3072-bit | Avoid, prefer ECDH | | SHA (hashing) | SHA-256 | SHA-256/384/512 | SHA-1 deprecated |
Post-Quantum Cryptography Transition:
NIST finalized PQC standards in 2024:
For systems expected to protect data beyond 2030, begin PQC migration planning.
Key Rotation Schedule: | Key Type | Recommended Rotation | |----------|---------------------| | TLS certificates | Annual (or use 90-day Let's Encrypt) | | Signing keys (JWT/API) | 90 days | | Encryption keys (data at rest) | Annual | | API keys / service tokens | 90 days or per-service | | Employee SSH keys | Annual + on role change | | Password hashes | On password change |
tls_auditor.pybashpython scripts/tls_auditor.py --host example.com --port 443 --output report.json python scripts/tls_auditor.py --host mail.example.com --port 993 --grade
| Condition | Adjacent Skill | |-----------|---------------| | TLS audit for web application | ← Skill 09 (Web Security) | | Cloud service encryption assessment | ← Skill 10 (Cloud Security) | | Weak crypto findings → hardening recommendations | → Skill 15 (Blue Team Defense) | | Crypto flaws → vulnerability report | → Skill 02 (Vulnerability Scanner) |
Post-quantum migration is now operational:
X25519MLKEM768) so confidentiality survives both classical and quantum attacks during transition.Precision rule: every finding states the primitive, key size/curve, protocol version, and the concrete upgrade (classical-now and PQC-target).
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-18 | fail→fail | 15,406 | 16,193 | +5% | 1 | 1 | 0% | 2,488 | 7,157 | +188% | 0 | 0 | — |
case-01 | fail→pass | 14,750 | 20,759 | +41% | 1 | 1 | 0% | 2,336 | 6,497 | +178% | 0 | 0 | — |
case-02 | fail→pass | 21,536 | 8,506 | -61% | 1 | 1 | 0% | 1,757 | 6,070 | +245% | 0 | 0 | — |
case-03 | pass→pass | 13,145 | 11,162 | -15% | 1 | 1 | 0% | 2,347 | 6,644 | +183% | 0 | 0 | — |
case-04 | pass→pass | 15,660 | 8,674 | -45% | 1 | 1 | 0% | 1,791 | 6,122 | +242% | 0 | 0 | — |
case-05 | pass→pass | 3,522 | 6,557 | +86% | 1 | 1 | 0% | 558 | 5,735 | +928% | 0 | 0 | — |
case-06 | pass→pass | 12,873 | 14,154 | +10% | 1 | 1 | 0% | 2,286 | 7,097 | +210% | 0 | 0 | — |
case-07 | pass→pass | 8,708 | 12,686 | +46% | 1 | 1 | 0% | 1,556 | 6,982 | +349% | 0 | 0 | — |
case-08 | pass→pass | 10,492 | 10,661 | +2% | 1 | 1 | 0% | 1,940 | 6,523 | +236% | 0 | 0 | — |
case-09 | pass→pass | 8,407 | 7,667 | -9% | 1 | 1 | 0% | 1,480 | 5,855 | +296% | 0 | 0 | — |
case-10 | fail→pass | 11,265 | 11,484 | +2% | 1 | 1 | 0% | 2,166 | 6,725 | +210% | 0 | 0 | — |
case-11 | pass→pass | 2,592 | 5,116 | +97% | 1 | 1 | 0% | 509 | 5,553 | +991% | 0 | 0 | — |
case-12 | pass→pass | 10,912 | 12,564 | +15% | 1 | 1 | 0% | 1,839 | 6,813 | +270% | 0 | 0 | — |
case-13 | pass→pass | 6,396 | 5,624 | -12% | 1 | 1 | 0% | 1,092 | 5,531 | +407% | 0 | 0 | — |
case-14 | pass→pass | 2,724 | 3,483 | +28% | 1 | 1 | 0% | 483 | 5,152 | +967% | 0 | 0 | — |
case-15 | pass→pass | 14,101 | 10,811 | -23% | 1 | 1 | 0% | 2,151 | 6,329 | +194% | 0 | 0 | — |
case-16 | pass→pass | 7,378 | 8,710 | +18% | 1 | 1 | 0% | 1,372 | 6,107 | +345% | 0 | 0 | — |
case-17 | pass→pass | 16,174 | 14,108 | -13% | 1 | 1 | 0% | 2,743 | 7,047 | +157% | 0 | 0 | — |
case-19 | pass→pass | 11,947 | 12,056 | +1% | 1 | 1 | 0% | 2,004 | 6,590 | +229% | 0 | 0 | — |
case-20 | pass→pass | 4,254 | 5,324 | +25% | 1 | 1 | 0% | 777 | 5,539 | +613% | 0 | 0 | — |
case-21 | pass→pass | 4,272 | 5,274 | +23% | 1 | 1 | 0% | 750 | 5,519 | +636% | 0 | 0 | — |
case-22 | pass→pass | 8,535 | 6,839 | -20% | 1 | 1 | 0% | 1,548 | 5,902 | +281% | 0 | 0 | — |
case-23 | pass→pass | 11,233 | 8,567 | -24% | 1 | 1 | 0% | 2,001 | 6,105 | +205% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 23 cases were attempted. The headline lift of +13 percentage points is the difference between those two pass rates over the 23 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.