156 vulnerabilities classified as CWE-384 (会话固定). AI Chinese analysis included.
CWE-384, Session Fixation, is an authentication weakness where an application fails to invalidate existing session identifiers upon user login. This flaw allows attackers to predict or fix a victim’s session ID before authentication occurs. Typically, an attacker tricks a user into accessing a malicious link containing the attacker’s known session ID. When the victim logs in, the server associates the authenticated session with that pre-existing ID, granting the attacker immediate access to the victim’s account without needing credentials. To prevent this, developers must generate a new, random session identifier immediately after successful authentication. Additionally, implementing secure session management practices, such as regenerating IDs after privilege changes and using secure, HTTP-only cookies, ensures that stolen session tokens remain useless to attackers, effectively mitigating the risk of session hijacking.
private void auth(LoginContext lc, HttpSession session) throws LoginException { ... lc.login(); ... }<form method="POST" action="j_security_check"> <input type="text" name="j_username"> <input type="text" name="j_password"> </form>| CVE ID | Title | CVSS | Severity | Published |
|---|---|---|---|---|
| CVE-2016-8609 | Red Hat keycloak 授权问题漏洞 — keycloak | 8.8 | - | 2018-08-01 |
| CVE-2018-5385 | Navarino Infinity web interface up to version 2.2 is prone to session fixation attacks — Infinity | 8.8 | - | 2018-07-24 |
| CVE-2018-0359 | Cisco Meeting Server 安全漏洞 — Cisco Meeting Server unknown | 4.0 | - | 2018-06-21 |
| CVE-2018-0229 | 多款Cisco产品AnyConnect Secure Mobility Client、Adaptive Security ApplianceSoftware和Firepower Threat Defense Software 安全漏洞 — Cisco ASA Software, FTD Software, and AnyConnect Secure Mobility Client | 8.1 | - | 2018-04-19 |
| CVE-2018-5465 | 多款Belden产品安全漏洞 — Hirschmann Automation and Control GmbH Classic Platform Switches | 8.8 | - | 2018-03-06 |
| CVE-2016-9125 | Revive Adserver 安全漏洞 — Revive Adserver All versions before 3.2.3 | 9.8 | - | 2017-03-28 |
Vulnerabilities classified as CWE-384 (会话固定) represent 156 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.