CVE-2026-3577

The Keep Backup Daily plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the backup title alias (`val` parameter) in the `update_kbd_bkup_alias` AJAX action in all versions up to, and including, 2.

Verified by Precogs Threat Research
Last Updated: Mar 21, 2026
Base Score
4.4MEDIUM

Executive Summary

CVE-2026-3577 is a medium severity vulnerability affecting appsec, ai-code. It is classified as Cross-Site Scripting (XSS). Ensure your systems and dependencies are patched immediately to mitigate exposure risks.

Precogs AI Insight

"This critical flaw stems from within The Keep Backup Daily plugin, allowing the improper handling of untrusted input. A threat actor could leverage this oversight to gain unauthorized read or write access, effectively hijacking underlying configurations. Precogs AI Analysis Engine leverages inter-procedural taint tracking to prevent unauthorized logical exploitation."

Exploit Probability (EPSS)
Low (0.0%)
Public POC
Undisclosed
Exploit Probability
Low (<10%)
Public POC
Available
Affected Assets
appsecai codeCWE-79

What is this vulnerability?

CVE-2026-3577 is categorized as a critical Cross-Site Scripting (XSS) flaw. Based on our vulnerability intelligence, this issue occurs when the application fails to securely handle untrusted data boundaries.

The Keep Backup Daily plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the backup title alias (val parameter) in the `update_kbd_bku...

This architectural defect enables adversaries to bypass intended security controls, directly manipulating the application's execution state or data layer. Immediate strategic intervention is required.

Risk Assessment

MetricValue
CVSS Base Score4.4 (MEDIUM)
Vector StringCVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:C/C:L/I:L/A:N
PublishedMarch 21, 2026
Last ModifiedMarch 21, 2026
Related CWEsCWE-79

Impact on Systems

Session Hijacking: Attackers can steal active user session tokens (cookies) to impersonate the victim.

Phishing Execution: Malicious scripts can dynamically alter DOM content to present fraudulent login forms.

Worm Propagation: Stored XSS can spread autonomously as users visit the infected page.

How to fix this issue?

Implement the following strategic mitigations immediately to eliminate the attack surface.

1. Output Encoding Implement strict context-aware output encoding (HTML, JavaScript, Attribute, CSS) before rendering user data.

2. Content Security Policy (CSP) Deploy a rigorous CSP header to restrict script execution exclusively to trusted domains.

3. Framework Defenses Utilize native UI framework protections (e.g., React DOM escaping) and avoid dangerouslySetInnerHTML.

Vulnerability Signature

// Example DOM-based XSS vulnerability
const user_input = new URLSearchParams(window.location.search).get('q');
// VULNERABLE: Direct insertion into innerHTML
document.getElementById('results').innerHTML = "Results for: " + user_input; 

// EXPLOIT PAYLOAD: ?q=\<img src=x onerror=alert(document.cookie)\>

References and Sources

Vulnerability Code Signature

Attack Data Flow

StageDetail
SourceUser-controlled input (e.g., URL parameter or form field)
VectorInput is reflected in the DOM without sanitization
SinkBrowser executes the payload as valid JavaScript
ImpactSession hijacking, credential theft, unauthorized actions on behalf of the user

Vulnerable Code Pattern

// ❌ VULNERABLE: Direct DOM injection
const userComment = urlParams.get('comment');
// Taint sink: innerHTML executes injected scripts
document.getElementById('comments').innerHTML = userComment;

Secure Code Pattern

// ✅ SECURE: Safe DOM manipulation
const userComment = urlParams.get('comment');
// Sanitized binding: textContent escapes HTML entities
document.getElementById('comments').textContent = userComment;

How Precogs Detects This

Precogs AI Analysis Engine maps untrusted input sources directly to sensitive DOM manipulation functions, detecting Cross-Site Scripting (XSS) paths before deployment.\n

Related Vulnerabilitiesvia CWE-79

Is your system affected?

Precogs AI detects CVE-2026-3577 in compiled binaries, LLMs, and application layers — even without source code access.