CWE-656 Reliance on Security Measures in Shared Libraries
Coverage: 6 rules in the SiteShadow rule registry target this CWE (registry v2.0.0). Regex 6 Also: Taint and heuristic analyzers may also detect related flows (see coverage for the authoritative list) Registry tagging shows intent, for sample-level behaviour and benchmarked gaps see known gaps.
What this means
SiteShadow flagged a pattern where the system "assumes" a shared library or platform feature will provide security (auth, validation, sanitization, encryption) without verifying it's actually configured and enforced in your usage.
Why it matters
Implicit trust in shared libraries can hide missing controls.
- Misconfiguration risk: the library can be used in an insecure mode by default.
- Incomplete coverage: only some code paths use the library correctly; others bypass it.
- Version drift: upgrades change defaults and silently weaken protections.
Safer examples
1) Treat security as an explicit requirement, not a side effect
Don't assume "the framework handles it." Confirm that authz, escaping, and validation are actually applied in your routes/views.
2) Configure libraries to safe modes
Turn on strict modes and disable insecure fallbacks; pin versions and review changelogs (see A08 / CICD01).
3) Test the security property end-to-end
Add integration tests that prove the protection works (auth required, XSS blocked, SSRF blocked) rather than unit tests alone (see CWE-382).
How SiteShadow detects it (high level)
- Flags patterns where a library is expected to enforce a protection, but code paths bypass it or configure it insecurely.
- Looks for risky toggles, missing middleware, and inconsistent application of framework protections.
References
- CWE-656: https://cwe.mitre.org/data/definitions/656.html
---
← Back to Vulnerability Library
Catch this with SiteShadow Pro.
This vulnerability class is detected by SiteShadow's Pro-tier engines, two-pass interprocedural taint analysis, heuristic flow checks, AI-context scanning, and cross-file detection. The free tier catches OWASP Top 10 single-file patterns; Pro adds the data-flow depth that finds this class of bug.