AUGUST 16, 2026
Live Feed
Back to database
Case File

CVE-2026-71243

HIGH · CVSS 8.8 EPSS 0.29% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-08-05 · Last synced 2026-08-16

CyberRota Analysis

AI-Generated

The backmeup npm package is vulnerable to arbitrary OS command execution due to its insecure handling of user-supplied input when constructing shell command strings. This vulnerability allows an attacker to execute arbitrary commands on the backup host or a remote SSH target by manipulating option values such as the backup name. Developers and organizations using this package should prioritize immediate remediation to mitigate potential exploitation risks.

Public Exploit Signal

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

GitHub PoC Links

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

CVE
CVE-2026-71243
Severity
HIGH
CVSS
8.8
EPSS
0.29%

Original NVD Description

The backmeup npm package assembles shell command strings by directly concatenating its option values (name, source, destination, filter) - e.g. cmd = "mkdir -p " + path.join(info.destination, info.name) + "; " - and executes the resulting string through a shell via ssh2-exec (locally via child_process, or remotely via SSH when an ssh handle is supplied), rather than using execFile/spawn with an argument array.