Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1336 CNY

100%

CWE-614 (HTTPS会话中未设置’Secure’属性的敏感Cookie) — Vulnerability Class 59

59 vulnerabilities classified as CWE-614 (HTTPS会话中未设置’Secure’属性的敏感Cookie). AI Chinese analysis included.

CWE-614 represents a configuration weakness where sensitive cookies are transmitted over HTTPS sessions without the Secure attribute enabled. This oversight allows attackers to exploit the vulnerability through man-in-the-middle attacks, even on encrypted connections, by intercepting the cookie if the session inadvertently downgrades to HTTP or if the client fails to enforce HTTPS strictly. Without the Secure flag, browsers may transmit these credentials over unencrypted channels, exposing session identifiers, authentication tokens, or personal data to eavesdroppers. To mitigate this risk, developers must explicitly set the Secure attribute on all cookies containing sensitive information, ensuring they are only transmitted over encrypted HTTPS connections. Additionally, implementing strict transport security headers and validating server configurations can prevent accidental HTTP fallbacks, thereby maintaining the integrity and confidentiality of user sessions throughout the browsing experience.

MITRE CWE Description
The Secure attribute for sensitive cookies in HTTPS sessions is not set.
Common Consequences (1)
Confidentiality Read Application Data
Omitting the secure flag makes it possible for the user agent to send the cookies in plaintext over an HTTP session.
Mitigations (1)
Implementation Always set the secure attribute when the cookie should be sent via HTTPS only.
Examples (1)
The snippet of code below, taken from a servlet doPost() method, sets an accountID cookie (sensitive) without calling setSecure(true).
Cookie c = new Cookie(ACCOUNT_ID, acctID); response.addCookie(c);
Bad · Java
CVE ID Title CVSS Severity Published
CVE-2026-65655 Temporal UI Server may set OAuth credential cookies without Secure behind a TLS-terminating reverse proxy — Temporal UI Server 2.3 Low 2026-08-11
CVE-2026-15656 IBM MAS uses axios-1.15.2, protobufjs-8.0.1 and undici-7.26 which is vulnerable to multiple CVEs, and contains vulnerabilities related to missing Secure attribute on mas-redirect-uri cookie and weak HMAC Session Secret — Maximo Application Suite 4.3 Medium 2026-08-05
CVE-2026-48058 nebula-mesh: Session and OIDC state cookies lack the Secure attribute — nebula-mesh 4.6 Medium 2026-07-28
CVE-2026-56581 HCL MyCloud was affected with Cookie Attribute Path Not Set — MyCloud 2.6 Low 2026-07-21
CVE-2024-23572 HCL Aftermarket EPC 会话机制问题漏洞 — Aftermarket EPC 4.2 Medium 2026-07-17
CVE-2026-46550 NocoDB: Refresh Token Cookie Set Without `Secure` and `SameSite` Flags — nocodb 5.4 Medium 2026-06-23
CVE-2026-53661 boruta-server sent sensitive session cookies without the Secure attribute — boruta-server - - 2026-06-11
CVE-2026-11956 TwiN gatus OIDC Session Cookie oidc.go setSessionCookie missing secure attribute — gatus 3.7 Low 2026-06-11
CVE-2026-46398 HAX CMS Missing Secure Flag on Cookie — haxcms-php - - 2026-06-05
CVE-2025-52608 HCL iControl was affected by Missing Cookie Attributes vulnerability. — iControl 3.1 Low 2026-06-04
CVE-2026-41017 Apache Airflow: JWT cookie missing Secure flag in JWTRefreshMiddleware behind HTTPS-terminating proxy — Apache Airflow - - 2026-06-01
CVE-2026-43828 Apache Shiro: Shiro's native session and rememberMe cookies do not have secure flag set by default — Apache Shiro - - 2026-05-25
CVE-2026-22617 Eaton Intelligent Power Protector 安全漏洞 — IPP Software 5.7 Medium 2026-04-16
CVE-2026-4820 IBM Maximo Application Suite was vulnerable to because Cookie ltpatoken2_<workspace_name> was not set with secure flag — Maximo Application Suite 4.3 Medium 2026-04-01
CVE-2026-32745 JetBrains Datalore 安全漏洞 — Datalore 6.3 Medium 2026-03-13
CVE-2026-1697 Use of unsecure cookies for GraphicalData web service and WebClient web app — PcVue 7.2AI High AI 2026-02-26
CVE-2024-58317 Kentico Xperience <= 13.0.164 Cookie Security Configuration — Xperience 5.3 Medium 2025-12-18
CVE-2025-36249 IBM Jazz for Service Management is vulnerable to "filter" cookie not sent over SSL — Jazz for Service Management 3.7 Low 2025-10-31
CVE-2025-52614 HCL Unica Platform is affected by a Cookie without HTTPOnly Flag Set vulnerability — Unica Platform 3.5 Low 2025-10-12
CVE-2025-52632 HCL AION is susceptible to Missing Secure Attribute in Encrypted Session (SSL) Cookie vulnerability — AION 6.5 Medium 2025-10-10
CVE-2025-36011 IBM Jazz for Service Management information disclosure — Jazz for Service Management 4.3 Medium 2025-09-09
CVE-2025-53757 Insecure Cookie Flags Vulnerability in Digisol DG-GR6821AC Router — XPON ONU Wi-Fi Router (DG-GR6821AC) 7.5AI High AI 2025-07-16
CVE-2025-27450 CVE-2025-27450 — Endress+Hauser MEAC300-FNADE4 6.5 Medium 2025-07-03
CVE-2025-36026 IBM Datacap information disclosure — Datacap 4.3 Medium 2025-06-28
CVE-2024-10718 Cookie without Secure attribute in phpipam/phpipam — phpipam/phpipam 5.3 - 2025-03-20
CVE-2025-24390 Missing Cookie Flags — OTRS 6.8 Medium 2025-01-27
CVE-2024-28770 IBM Security Directory Integrator information disclosure — Security Directory Integrator 4.8 Medium 2025-01-27
CVE-2024-28771 IBM Security Directory Integrator information disclosure — Security Directory Integrator 4.8 Medium 2025-01-27
CVE-2024-30142 HCL BigFix Compliance is affected by a missing secure flag on a cookie — BigFix Compliance 3.8 Low 2024-11-07
CVE-2024-47833 Session Cookie without Secure and HTTPOnly flags in taipy — taipy 5.3AI Medium AI 2024-10-09

Vulnerabilities classified as CWE-614 (HTTPS会话中未设置’Secure’属性的敏感Cookie) represent 59 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.