{"vulnerability": "CVE-2026-5586", "sightings": [{"uuid": "d2ebf959-a4ca-4378-bf27-d4b84a77afe4", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "9f56dd64-161d-43a6-b9c3-555944290a09", "vulnerability": "CVE-2026-5586", "type": "seen", "source": "https://bsky.app/profile/cve.skyfleet.blue/post/3miripfabr425", "content": "", "creation_timestamp": "2026-04-05T19:36:30.896799Z"}, {"uuid": "422eab17-8d9d-4156-8562-d83adbc9d3b8", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "9f56dd64-161d-43a6-b9c3-555944290a09", "vulnerability": "CVE-2026-55867", "type": "seen", "source": "https://gist.github.com/alon710/4cae326e01f80455b82df9da7e1b2023", "content": "# CVE-2026-55867: CVE-2026-55867: Insecure Direct Object Reference in Graylog Access-Token Revocation\n\n&gt; **CVSS Score:** 5.3\n&gt; **Published:** 2026-08-28\n&gt; **Full Report:** https://cvereports.com/reports/CVE-2026-55867\n\n## Summary\nAn Insecure Direct Object Reference (IDOR) vulnerability exists within the access-token revocation endpoint of Graylog. Authenticated users can exploit this flaw to delete access tokens belonging to other users, including high-privileged administrator accounts, thereby disrupting active integrations and API access.\n\n## TL;DR\nAn authenticated attacker with low privileges can revoke any user's access tokens via an IDOR vulnerability in Graylog's token removal API endpoint.\n\n## Technical Details\n\n- **CWE ID**: CWE-639\n- **Attack Vector**: Network\n- **Privileges Required**: Low (Authenticated)\n- **CVSS v4.0 Score**: 5.3 (Medium)\n- **Exploit Status**: None\n- **KEV Status**: Not Listed\n\n## Affected Systems\n\n- Graylog Server (graylog2-server)\n- **graylog2-server**: &gt;= 6.2.0, &lt; 6.3.12 (Fixed in: `6.3.12`)\n- **graylog2-server**: &gt;= 7.0.0-alpha.1, &lt; 7.0.7 (Fixed in: `7.0.7`)\n- **graylog2-server**: &gt;= 7.1.0-alpha.1, &lt; 7.1.2 (Fixed in: `7.1.2`)\n\n## Mitigation\n\n- Upgrade Graylog to versions 6.3.12, 7.0.7, 7.1.2, or later\n- Monitor API logs for anomalous DELETE requests to the user tokens endpoint\n- Restrict network access to the REST API interface to authenticated and trusted networks\n\n**Remediation Steps:**\n1. Identify current running versions of the Graylog server.\n2. Download the appropriate patch release (6.3.12, 7.0.7, or 7.1.2) corresponding to the deployed branch.\n3. Apply the update to all nodes in the Graylog cluster.\n4. Verify the installation by testing token revocation functionality with a non-admin account to ensure proper permission checks are enforced.\n\n## References\n\n- [GHSA-j769-9gv9-65gr: Graylog Insecure Direct Object Reference in UsersResource](https://github.com/Graylog2/graylog2-server/security/advisories/GHSA-j769-9gv9-65gr)\n- [NVD - CVE-2026-55867](https://nvd.nist.gov/vuln/detail/CVE-2026-55867)\n- [Pull Request #26049](https://github.com/Graylog2/graylog2-server/pull/26049)\n- [Pull Request #26051](https://github.com/Graylog2/graylog2-server/pull/26051)\n- [Pull Request #26053](https://github.com/Graylog2/graylog2-server/pull/26053)\n- [Pull Request #26055](https://github.com/Graylog2/graylog2-server/pull/26055)\n\n\n---\n*Generated by [CVEReports](https://cvereports.com/reports/CVE-2026-55867) - Automated Vulnerability Intelligence*", "creation_timestamp": "2026-08-29T13:31:53.424001Z"}, {"uuid": "78b95620-a45c-4762-b326-55ddeed2d4a2", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "9f56dd64-161d-43a6-b9c3-555944290a09", "vulnerability": "CVE-2026-55860", "type": "seen", "source": "https://gist.github.com/alon710/607da531ae276a39a8c057ba4505abda", "content": "# CVE-2026-55860: CVE-2026-55860: Cleartext Password Disclosure in MariaDB Connector/R2DBC\n\n&gt; **CVSS Score:** 5.9\n&gt; **Published:** 2026-08-28\n&gt; **Full Report:** https://cvereports.com/reports/CVE-2026-55860\n\n## Summary\nA security vulnerability in the MariaDB Connector/R2DBC client driver allows credential theft during the database authentication phase. The client driver does not gate clear-text password authentication plugins on transport encryption, making it possible for on-path attackers or hostile database servers to intercept passwords.\n\n## TL;DR\nMariaDB Connector/R2DBC before 1.4.1 fails to verify if TLS or Unix socket encryption is active before using clear-text password authentication plugins, allowing network attackers to intercept plaintext credentials.\n\n## Exploit Status: POC\n\n## Technical Details\n\n- **CWE ID**: CWE-319 / CWE-522\n- **Attack Vector**: Network (AV:N)\n- **Attack Complexity**: High (AC:H)\n- **CVSS Score**: 5.9 (Medium)\n- **Exploit Status**: poc\n- **KEV Status**: Not Listed\n\n## Affected Systems\n\n- Applications utilizing MariaDB Connector/R2DBC (Java driver) on plain TCP connections.\n- **MariaDB Connector/R2DBC**: &lt; 1.4.1 (Fixed in: `1.4.1`)\n\n## Mitigation\n\n- Upgrade the MariaDB Connector/R2DBC client library to version 1.4.1 or above.\n- Enforce strict TLS verification modes in the driver configuration.\n- Isolate database traffic to secure, private subnets.\n\n**Remediation Steps:**\n1. Identify all JVM applications utilizing the 'org.mariadb:r2dbc-mariadb' dependency.\n2. Update the project build files (pom.xml or build.gradle) to reference version 1.4.1.\n3. Verify connection configurations and ensure 'sslMode' is set to 'VERIFY_FULL' or 'VERIFY_CA' rather than 'DISABLE' or 'TRUST'.\n4. Deploy the updated application and monitor connection logs for any authentication refusals.\n\n## References\n\n- [GitHub Security Advisory GHSA-c857-9x2m-cvh2](https://github.com/mariadb-corporation/mariadb-connector-r2dbc/security/advisories/GHSA-c857-9x2m-cvh2)\n- [Primary Fix Commit](https://github.com/mariadb-corporation/mariadb-connector-r2dbc/commit/be786603ec5530414996d2396157013e095b320a)\n\n\n---\n*Generated by [CVEReports](https://cvereports.com/reports/CVE-2026-55860) - Automated Vulnerability Intelligence*", "creation_timestamp": "2026-08-29T01:40:29.508228Z"}, {"uuid": "dde95b25-d7ba-4007-8534-85aac8cc32e6", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "9f56dd64-161d-43a6-b9c3-555944290a09", "vulnerability": "CVE-2026-55864", "type": "seen", "source": "Telegram/9h73ajeEnWq1UUc99NXcO070Q77AwRDt_XFlqiCagLlKFUc", "content": "", "creation_timestamp": "2026-09-04T18:00:04.469251Z"}, {"uuid": "24d33457-8862-4b83-8303-e41a9db2198f", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "9f56dd64-161d-43a6-b9c3-555944290a09", "vulnerability": "CVE-2026-55864", "type": "published-proof-of-concept", "source": "Telegram/9h73ajeEnWq1UUc99NXcO070Q77AwRDt_XFlqiCagLlKFUc", "content": "", "creation_timestamp": "2026-09-05T01:00:19.878607Z"}]}