SiteShadow
Back to vulnerability library

CWE-347 Improper Verification of Cryptographic Signature

What this means

SiteShadow flagged code that accepts signed data without correctly verifying the signature (or verifies it incorrectly). This includes skipping verification, using the wrong key, or validating the wrong data/claims.

Why it matters

Unverified signatures allow tampered data to be accepted.

Safer examples

1) Use a well-maintained library and verify by default

Avoid implementing signature schemes yourself.

2) Verify the right thing, with the right key

3) Validate claims after signature verification

For tokens: validate iss, aud, exp, and any critical claims (see JWT01).

How SiteShadow detects it (high level)

References

---

← Back to Vulnerability Library

Request access View coverage