Cyber Resilience

CVE-2026-34934

CriticalPublic PoC

Published: 03 April 2026

Published
03 April 2026
Modified
14 April 2026
KEV Added
Patch
CVSS Score v3.1 9.8 CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
EPSS Score 0.0053 40.8th percentile
Risk Priority 70 floored blend · peak EPSS

Summary

CVE-2026-34934 is a critical-severity SQL Injection (CWE-89) vulnerability in Praison Praisonai. Its CVSS base score is 9.8 (Critical).

Operationally, exploitation aligns with the MITRE ATT&CK technique Exploit Public-Facing Application (T1190); ranked at the 40.8th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog; a public proof-of-concept is referenced.

The strongest mitigations our analysis identified are NIST 800-53 SA-8 (Security and Privacy Engineering Principles) and SI-10 (Information Input Validation).

Deeper analysis

CVE-2026-34934 is a SQL injection vulnerability (CWE-89) affecting PraisonAI, a multi-agent teams system, in versions prior to 4.5.90. The issue resides in the get_all_user_threads function, which constructs raw SQL queries using f-strings with unescaped thread IDs retrieved directly from the database. This allows injection of malicious payloads into the thread IDs, leading to arbitrary SQL execution. The vulnerability carries a CVSS v3.1 base score of 9.8 (AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H), indicating critical severity with high impacts on confidentiality, integrity, and availability.

An unauthenticated remote attacker can exploit this vulnerability by first storing a malicious thread ID via the update_thread function. Subsequently, when the application loads the thread list through get_all_user_threads, the injected SQL payload executes, granting the attacker full database access. This enables data exfiltration, modification, or deletion, depending on database permissions.

The vulnerability has been patched in PraisonAI version 4.5.90. Additional details are available in the GitHub security advisory at https://github.com/MervinPraison/PraisonAI/security/advisories/GHSA-9cq8-3v94-434g.

OWASP Top 10 for Web (2025)

EU & UK References

Vulnerability details

PraisonAI is a multi-agent teams system. Prior to version 4.5.90, the get_all_user_threads function constructs raw SQL queries using f-strings with unescaped thread IDs fetched from the database. An attacker stores a malicious thread ID via update_thread. When the application loads…

more

the thread list, the injected payload executes and grants full database access. This issue has been patched in version 4.5.90.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

T1190 Exploit Public-Facing Application Initial Access
Adversaries may attempt to exploit a weakness in an Internet-facing host or system to initially access a network.
Why these techniques?

SQL injection in public-facing PraisonAI web application allows unauthenticated remote arbitrary SQL execution for data exfiltration/modification/deletion, directly enabling T1190 Exploit Public-Facing Application.

Confidence: HIGH · MITRE ATT&CK Enterprise v19.0

CVEs Like This One

CVE-2026-40315Same product: Praison Praisonai
CVE-2026-41496Same product: Praison Praisonai
CVE-2026-44338Same product: Praison Praisonai
CVE-2026-39889Same product: Praison Praisonai
CVE-2026-34952Same product: Praison Praisonai
CVE-2026-39890Same product: Praison Praisonai
CVE-2026-39891Same product: Praison Praisonai
CVE-2026-44334Same product: Praison Praisonai
CVE-2026-34953Same product: Praison Praisonai
CVE-2026-39888Same product: Praison Praisonai

Affected Assets

praison
praisonai
≤ 4.5.90

Mitigating Controls

Mitigating Controls (NIST 800-53 r5) AI

prevent

Directly prevents SQL injection by requiring validation and sanitization of untrusted thread IDs before incorporation into raw SQL queries constructed with f-strings.

prevent

Ensures timely flaw remediation by identifying and patching the SQL injection vulnerability, as demonstrated by the fix in PraisonAI version 4.5.90.

prevent

Requires application of security engineering principles, such as secure coding practices for input handling and parameterized queries, to avoid SQL injection flaws during development.

References