SEPTEMBER 18, 2026
Live Feed
Back to database
Case File

CVE-2026-56706

MEDIUM · CVSS 6.8 EPSS 0.29% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-08-25 · Last synced 2026-09-18

CyberRota Analysis

AI-Generated

Adminer versions prior to 5.4.3 are vulnerable to cross-site request forgery (CSRF) due to a flawed token scheme that allows attackers to recover session secrets and forge valid tokens through simple XOR operations. The low-entropy session token and improper token verification further exacerbate the risk, enabling attackers to execute arbitrary SQL queries within authenticated sessions. Organizations using affected versions should prioritize patching to mitigate potential exploitation risks.

Public Exploit Signal

A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.

Detected Signals
exploit
GitHub PoC Links

Note: these links are listed for security research and verification purposes only.

CVE
CVE-2026-56706
Severity
MEDIUM
CVSS
6.8
EPSS
0.29%

Original NVD Description

Adminer before 5.4.3 uses a CSRF token scheme that transmits both the XOR mask and the masked value in every token (format (rand XOR secret):rand), allowing anyone who observes a single CSRF token (e.g., via network sniffing, log files, Referrer header, or XSS) to recover the session secret with a single XOR operation and forge unlimited valid tokens. The implementation is further weakened by a low-entropy session token (rand(1,1e6), ~20 bits) that permits blind brute-force, and by use of loose comparison (==) in token verification, enabling PHP type juggling. Exploitation enables cross-site request forgery against authenticated sessions, including execution of arbitrary SQL queries.