SiteShadow
Back to vulnerability library

CWE-523 Unprotected Transport of Credentials

What this means

SiteShadow flagged credentials being transmitted without adequate protection (no TLS, weak transport settings, or credentials placed in easily leaked locations like URLs).

Why it matters

Credentials can be intercepted over weak channels.

Safer examples

1) Use HTTPS/TLS everywhere and enforce it

Redirect HTTP→HTTPS, enable HSTS, and keep TLS verification enabled (see T01 / CWE-295).

2) Never send credentials in query strings

Use headers (Authorization) or POST bodies, and avoid embedding creds in URLs (see CRED-URL).

3) Use short-lived, scoped credentials

Prefer short-lived access tokens and rotate/expire them (see TOK01).

How SiteShadow detects it (high level)

References

---

← Back to Vulnerability Library

Request access View coverage