Skip to main content

Boteraser | Website and Server Security Solutions

🛡️ CVE-2026-40112 — praisonai

🟡 CVSS 5.4 — Medium ⚠️ Exploit Public CWE-79 OSV
5.4
CVSS Score
0 Low4 Medium7 High9 Critical10

Description

PraisonAI Vulnerable to Stored XSS via Unsanitized Agent Output in HTML Rendering (nh3 Not a Required Dependency) ## Summary The Flask API endpoint in `src/praisonai/api.py` renders agent output as HTML without effective sanitization. The `_sanitize_html` function relies on the `nh3` library, which is not listed as a required or optional dependency in `pyproject.toml`. When `nh3` is absent (the default installation), the sanitizer is a no-op that returns HTML unchanged. An attacker who can influence agent input (via RAG data poisoning, web scraping results, or prompt injection) can inject arbitrary JavaScript that executes in the browser of anyone viewing the API output. ## Details In `src/praisonai/api.py`, lines 6-14 define the sanitizer with a try/except ImportError fallback: ```python try: import nh3 def _sanitize_html(html: str) -> str: return nh3.clean(html) except ImportError: def _sanitize_html(html: str) -> str: """Fallback: no nh3, return as-is (install nh3 for XSS protection).""" return html ``` The `home()` route at lines 21-25 converts agent output to HTML via `markdown.markdown()` (which preserves raw HTML tags by default) and embeds it in an HTML response using an f-string — bypassing Flask's Jinja2 auto-escaping: ```python @app.route('/') def home(): output = basic() html_output = _sanitize_html(markdown.markdown(str(output))) return f'{html_output}' ``` Since `nh3` is not in any dependency list (`pyproject.toml` core deps, optional deps, or requirements files), a standard installation will always hit the fallback path. The `markdown` library's default behavior passes through raw HTML tags in input text, so any `` or event handler attributes in the agent output flow directly into the response. Additionally, `deploy.py:76-91` generates a deployment version of `api.py` that has **no sanitization at all** — it directly calls `markdown.markdown(output)` without any `_sanitize_html` wrapper. ## PoC 1. Set up a PraisonAI instance with an agent that processes external content (e.g., web scraping or RAG retrieval): ```yaml # agents.yaml framework: crewai topic: test roles: researcher: role: Researcher goal: Process user-provided content backstory: You process content exactly as given tasks: process: description: "Return this exact text: " expected_output: The text as-is ``` 2. Verify `nh3` is not installed (default): ```bash pip show nh3 2>&1 | grep -c "not found" # Returns 1 (not installed) ``` 3. Start the API: ```bash python src/praisonai/api.py ``` 4. Access the endpoint: ```bash curl http://localhost:5000/ ``` 5. Response contains unsanitized HTML: ```html

``` 6. Opening this in a browser executes the JavaScript payload. ## Impact - **Session hijacking**: An attacker can steal cookies or session tokens from users viewing the API output. - **Credential theft**: Injected scripts can present fake login forms or exfiltrate data to attacker-controlled servers. - **Actions on behalf of users**: Malicious JavaScript can perform actions in the context of the victim's browser session. The attack surface includes any scenario where agent output contains attacker-influenced content: RAG retrieval from poisoned documents, web scraping of malicious pages, processing of adversarial user prompts, or multi-agent communication where one agent's output is tainted. ## Recommended Fix Make `nh3` a required dependency when using the API, and remove the silent fallback: ```python # Option 1: Make nh3 required in pyproject.toml under the "api" optional dependency # In pyproject.toml: # api = [ # "flask>=3.0.0", # ... # "nh3>=0.2.14", # ] # Option 2: Use markdown's built-in HTML stripping as a safe default import markdown def _sanitize_html(html: str) -> str: try: import nh3 return nh3.clean(html) except ImportError: import re return re.sub(r']+>', '', html) # Strip all HTML tags as fallback # Option 3 (preferred): Use Flask's Jinja2 templating with auto-escaping # instead of f-string interpolation, or use markupsafe.escape() from markupsafe import Markup @app.route('/') def home(): output = basic() # Use markdown with safe extensions only html_output = markdown.markdown(str(output), extensions=[]) try: import nh3 html_output = nh3.clean(html_output) except ImportError: raise RuntimeError("nh3 is required for safe HTML rendering. Install with: pip install nh3") return f'{html_output}' ``` Also fix `deploy.py:76-91` to include sanitization in the generated `api.py`.

How this vulnerability can be exploited

This issue can be reached over the network, attack complexity is low, an attacker needs no privileges on the target. A user must be tricked into taking some action. The scope is unchanged, so the impact stays within the vulnerable component. Rated impact: confidentiality low, integrity low, availability none.

CVSS metrics in full

The score comes from this vector: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N

  • Attack vector: Network — reachable from anywhere that can route to the service.
  • Attack complexity: Low — the attack works reliably, with no preparation.
  • Privileges required: None — an unauthenticated stranger can try it.
  • User interaction: Required — someone has to click, open or visit something.
  • Scope: Unchanged — the damage stays inside the vulnerable component.
  • Confidentiality impact: Low — limited, and the attacker does not choose what is affected.
  • Integrity impact: Low — limited, and the attacker does not choose what is affected.
  • Availability impact: None.

Weakness class

CVE-2026-40112 is classified as CWE-79: Cross-site Scripting (XSS). User-supplied data is written into a page without escaping, so attacker script runs in the browser of anyone who views it.

Affected software

CVE-2026-40112 is recorded against 1 package.

  • praisonai (fixed in 4.5.128)

Timeline and source

Published on 13 July 2026. A public exploit is known to exist, which raises the urgency of patching considerably. Record sourced from OSV.

References

github.com (Web)
nvd.nist.gov (Advisory)
github.com (Package)
github.com (Web)
pypi.org (Package)
github.com (Advisory)

Other advisories for this package

praisonai has other advisories on record. If you are patching this one, these are worth checking on the same host:

Same weakness in other software

These advisories are the same class of weakness (CWE-79: Cross-site Scripting (XSS)) in other software:

Details

Severity MEDIUM
CVSS Score 5.4
CVSS Vector CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N
CWE CWE-79
Public Exploit ⚠️ Yes
Source OSV
Published 2026-07-13
Updated 2026-08-20
Modified 2026-07-13
Fix URL N/A

Affected Packages

Software From version Fixed in
praisonai 4.5.128

Similar Threats

Exploit Protection

Are you running praisonai?

CVE-2026-40112 carries CVSS 5.4 Medium rating and a public exploit already exists. BotEraser checks your installation against this and other known CVE records, and blocks IPs associated with exploit activity.

Check My Site For CVE-2026-40112 →

No credit card required  ·  Results in minutes

ⓘ Data Notice: The information presented above has been compiled from publicly available internet sources. Boteraser aggregates this data solely for informational purposes and does not independently classify, evaluate, or endorse any findings about the vulnerabilities listed. The accuracy and completeness of this information is the sole responsibility of the original publishers. Boteraser and its operators accept no liability for any decisions made based on this data.

Browse related advisories

All advisoriesCVECVE 2026