aisecwatch.com
DashboardVulnerabilitiesNewsResearchArchiveStatsDatasetFor devs
Subscribe
aisecwatch.com

Real-time AI security monitoring. Tracking AI-related vulnerabilities, safety and security incidents, privacy risks, research developments, and policy changes.

Navigation

VulnerabilitiesNewsResearchDigest ArchiveNewsletter ArchiveSubscribeData SourcesStatisticsDatasetAPIIntegrationsWidgetRSS Feed

Maintained by

Truong (Jack) Luu

Information Systems Researcher

AI & LLM Vulnerabilities

Security vulnerabilities, privacy incidents, safety concerns, and policy updates affecting LLMs and AI agents.

to
Export CSV
2915 items

GHSA-pvxx-r596-f5qj: PraisonAI: `--api-key` flag on `praisonai serve` is not properly enforced

highvulnerability
security
Aug 25, 2026
CVE-2026-55541

PraisonAI's `praisonai serve` command accepts an `--api-key` flag for authentication, but the flag is parsed and never actually used to protect the server. The FastAPI application (a web framework for building APIs) is created without any authentication middleware (code that checks credentials before allowing access), leaving endpoints like `POST /agents` completely open to anyone, even though the help text promises the key would protect them. This affects version 4.6.50 and likely all versions since 4.6.34 when the serve system was introduced.

GitHub Advisory Database

GHSA-r7v3-x45f-g7hp: PraisonAI: [Auth Bypass] `praisonai serve agents --api-key` is silently ignored — agent-invocation routes (`POST /agents`, `POST /agents/{agent_name}`) run unauthenticated

highvulnerability
security
Aug 25, 2026
CVE-2026-55538

PraisonAI's `praisonai serve agents` command accepts an `--api-key` flag that claims to enable authentication, but the code that creates the HTTP server never actually uses this key. This means anyone on the network can invoke agents through the `POST /agents` and `POST /agents/{agent_name}` routes without providing any credentials, even though the operator thought they were securing the service. The problem is made worse because a working authentication function already exists in the same codebase (called `verify_token`, which guards other API routes), but it is simply not applied to these agent-invocation routes.

GHSA-ch89-h4r2-c8f8: PraisonAI: [Path Traversal] agent tools escape the configured workspace via symlinks

highvulnerability
security
Aug 25, 2026
CVE-2026-55540

PraisonAI's workspace containment system, which is supposed to prevent agent tools from accessing files outside a designated directory, has three critical flaws. First, the `read_file`, `write_file`, `apply_diff`, and `search_replace` tools use `os.path.abspath()` instead of `realpath()` (a function that fully resolves symbolic links, or pointers to other files), allowing attackers to use symlinks inside the workspace to read or modify files outside it. Second, `list_files()` doesn't check containment at all, letting attackers escape using `../` path traversal (a technique where `../` moves up one directory level). Third, `execute_command()` doesn't validate the working directory, letting attackers run commands from outside the workspace.

GHSA-cfxv-8fw8-rwpv: praisonaiagents: ast_grep_rewrite rewrites arbitrary files without the @require_approval gate enforced on every sibling mutation tool

mediumvulnerability
security
Aug 25, 2026
CVE-2026-55530

The `ast_grep_rewrite` function in PraisonAI (a library that lets AI agents modify code) can rewrite files on disk without asking for user approval, unlike all its similar sibling functions which have approval gates. An attacker or malicious prompt can use this unprotected function to inject arbitrary code into files, and the function falsely reports 'No changes made' even when files are modified, hiding the attack from the operator.

GHSA-vg6p-v9vm-6fgj: praisonaiagents vulnerable to SSRF in web_crawl tool via redirect-following and DNS rebinding (validate-then-fetch gap)

highvulnerability
security
Aug 25, 2026
CVE-2026-55524

The web_crawl tool in praisonaiagents has a security flaw where it validates a URL's hostname only once at the start, but then fetches the URL using a library that follows HTTP redirects and re-resolves the hostname without re-checking. An attacker can bypass this by either redirecting to an internal address (like a cloud metadata endpoint) or using DNS rebinding (changing what the hostname resolves to between validation and fetch) to trick the tool into reading private internal services and leaking sensitive data like credentials.

GHSA-7ww9-85pg-cv4x: PraisonAI serve agents --api-key is ignored, allowing unauthenticated remote agent execution

highvulnerability
security
Aug 25, 2026
CVE-2026-55534

PraisonAI's `praisonai serve agents` command accepts an `--api-key` parameter to secure agent access, but the key is not actually enforced on the public endpoints (`POST /agents` and `POST /agents/{agent_name}`). This means anyone on the network can run agents without providing any credentials, even if the operator started the server with an API key. The vulnerability affects versions 4.6.34 through 4.6.48.

GHSA-x44h-65qv-cw74: praisonaiagents has an SSRF protection bypass in `spider_tools._host_is_blocked()` via DNS-resolved hostnames (`127.0.0.1.nip.io`)

highvulnerability
security
Aug 25, 2026
CVE-2026-55526

The praisonaiagents library has a security flaw in its SSRF (server-side request forgery, where an attacker tricks a server into making requests to internal systems) protection. The `_host_is_blocked()` function checks if hostnames are blocked, but it never performs DNS resolution (looking up what IP address a hostname points to). This means attackers can use services like `127.0.0.1.nip.io` (a public DNS service that resolves to the local machine) to bypass the protection and access internal services. The four tools `scrape_page`, `extract_links`, `crawl`, and `extract_text` are exposed as LLM-callable functions, so an AI agent can be tricked into making these malicious requests.

GHSA-hxmv-c4g6-5fqc: PraisonAI workflow include bypasses tools.py autoload opt-in and executes included recipe code

highvulnerability
security
Aug 25, 2026
CVE-2026-55522

PraisonAI's workflow include feature automatically executes a `tools.py` file (a Python script that defines custom functions) from included recipes even when the security settings that should prevent this are turned off. This bypasses earlier security fixes and allows an attacker to run arbitrary code if they can trick a victim into using a workflow that includes an untrusted recipe directory.

GHSA-5r34-2g38-6569: praisonaiagents web_crawl vulnerable to SSRF via redirect-following

highvulnerability
security
Aug 25, 2026
CVE-2026-55525

The `web_crawl` tool in praisonaiagents only validates the initial URL's IP address against a blocklist of private/internal addresses, but then follows HTTP redirects without re-checking the redirect target's IP. An attacker can supply a public URL that redirects to an internal address (like cloud metadata services at 169.254.169.254 or localhost services), allowing the tool to fetch and leak internal data that should have been blocked by SSRF (server-side request forgery, where a tool fetches data from internal systems it shouldn't access) protection.

CVE-2026-78684: vLLM before 0.27.0 fails to properly classify DeepStream as a GPU backend and omits pixel-limit enforcement in its decod

mediumvulnerability
security
Aug 25, 2026
CVE-2026-78684

vLLM (a software framework for running large language models) before version 0.27.0 has a vulnerability where it fails to properly identify DeepStream as a GPU backend and doesn't enforce pixel limits when decoding video. Unauthenticated attackers can exploit this by activating DeepStream to submit videos that bypass resource controls, causing a partial denial of service (where some users experience service disruption) for other concurrent requests.

OpenAI bans Russian ChatGPT accounts used in covert misinformation campaign

infoincident
securitysafety

CVE-2026-78683: NLTK before 3.10.0 (affected versions <=3.9.4) contains an unsafe pickle deserialization vulnerability in the Transition

criticalvulnerability
security
Aug 24, 2026
CVE-2026-78683

NLTK (Natural Language Toolkit, a Python library for processing human language) versions 3.9.4 and earlier have a vulnerability in their TransitionParser.parse() method that allows attackers to run arbitrary code by providing a malicious model file. The problem occurs because the code uses unsafe deserialization (pickle_load, a method that converts saved Python objects back into code) without proper restrictions, so it will execute hidden malicious commands embedded in a crafted model file when the application loads it.

Disrupting a new covert influence campaign from Russia

mediumincident
security
Aug 24, 2026

A Russian covert influence operation used banned ChatGPT accounts to generate social media posts promoting a fake Israeli "expert community" called the International Burke Institute, which actually contained copied academic work and a "sovereignty index" designed to portray Russia favorably. The operators accessed ChatGPT through VPNs (virtual private networks, which hide a user's location), prompted the AI in Russian to create English-language content, and disguised their Russian origins by instructing the AI to hide linguistic clues. This elaborate campaign was recently detected and disrupted, marking an unusually complex influence operation compared to others linked to Russia.

CVE-2026-76072: The Continue CLI applies an incomplete denylist as its only barrier to destructive shell commands when running unattende

highvulnerability
security
Aug 24, 2026
CVE-2026-76072

The Continue CLI (a tool for running AI agents from the command line) uses an incomplete blocklist as its only protection against destructive shell commands when running unattended, meaning it tries to block dangerous commands by listing which ones are unsafe rather than allowing only safe ones. An attacker can bypass this protection through prompt injection (tricking the AI by hiding malicious instructions in content like web pages or files the AI reads), allowing them to delete a user's data by using unblocked commands like recursive deletion of certain directories or tools like shred and wipefs.

CVE-2026-76841: Xinference loads models with Hugging Face remote code execution unconditionally enabled, and before version 2.12.0 expos

highvulnerability
security
Aug 24, 2026
CVE-2026-76841

Xinference (a model-serving tool) was loading AI models from Hugging Face with remote code execution (the ability to run code from external sources) always enabled before version 2.12.0, and users had no way to turn it off. An attacker who could register a new model could trick the system into running malicious code hidden in the model's configuration files, giving that code the same permissions as the server running Xinference.

CVE-2026-78205: BentoML's outbound connection safeguard (make_safe_connect in _internal/utils/uri.py) blocks private, loopback, and link

mediumvulnerability
security
Aug 23, 2026
CVE-2026-78205

BentoML versions 1.4.19 through 1.4.39 have a security flaw where the safeguard function (make_safe_connect) that blocks outbound connections to internal networks fails to block CGNAT addresses (100.64.0.0/10, which are shared IP addresses used by internet providers). An attacker can exploit this by sending specially crafted file uploads or JSON requests to trick the server into making requests to internal hosts, a vulnerability called SSRF (server-side request forgery, where a server is tricked into making requests to systems it shouldn't access). This vulnerability is an incomplete fix for a previous security issue.

GHSA-2cp2-2r3c-7p7r: Hydra: hydra.utils.instantiate with untrusted config can lead to code execution

highvulnerability
security
Aug 21, 2026
CVE-2026-68508

Hydra's `instantiate()` function (which constructs objects and calls functions based on configuration files) can execute arbitrary code if an attacker controls the `_target_` field in untrusted config. This means if your application loads config from an untrusted source and passes it to `instantiate()`, an attacker can trick it into running malicious code.

GHSA-x2rj-828p-hx9m: Xinference vulnerable to remote code execution via unsafe `eval()` in Llama3 tool-call parsing

criticalvulnerability
security
Aug 21, 2026
CVE-2026-61539

Xinference, an AI deployment tool, has a critical vulnerability where it uses Python's unsafe `eval()` function to parse tool-call output from Llama3 models. An attacker can craft prompts that trick the model into returning malicious Python code, which then gets executed on the server, allowing remote code execution (the ability to run arbitrary commands on a system you don't control) without needing authentication.

CVE-2026-71494: Infracost provides cloud cost intelligence for engineers, AI coding agents, and CI/CD. Prior to 0.10.45, internal/hcl/re

highvulnerability
security
Aug 21, 2026
CVE-2026-71494

Infracost, a tool that calculates cloud costs for engineering teams and AI systems, had a vulnerability before version 0.10.45 where it could accidentally send secret authentication tokens (credentials that prove who you are to Terraform Cloud services) to the wrong server. If an attacker controlled the Terraform configuration files being scanned, they could trick Infracost into sending the token to their own server instead of the legitimate one, allowing them to steal it. This happens in CI/CD pipelines (automated build and deployment systems) when a token is provided during scanning.

CVE-2026-71493: Infracost provides cloud cost intelligence for engineers, AI coding agents, and CI/CD. Prior to 0.10.45, the readFile, p

highvulnerability
security
Aug 21, 2026
CVE-2026-71493

Infracost (a tool that calculates cloud costs) had a vulnerability before version 0.10.45 where certain file-reading functions didn't properly handle symlinks (shortcuts that point to other locations). An attacker could create a symlink in a repository that points outside the checked-out code, allowing the tool to read sensitive files that the system running Infracost could access, potentially exposing repository secrets through dashboards or pull request comments.

Previous16 / 146Next
GitHub Advisory Database
GitHub Advisory Database
GitHub Advisory Database

Fix: The source explicitly recommends: 'Resolve the hostname once, validate that IP, and connect to that exact validated IP (pin it) rather than re-resolving. Disable redirect following (follow_redirects=False; for urllib use a redirect handler that re-validates), or re-validate every redirect hop's resolved IP.' The source also notes that file_tools.py:364 already uses follow_redirects=False and is the correct pattern to follow.

GitHub Advisory Database
GitHub Advisory Database
GitHub Advisory Database
GitHub Advisory Database
GitHub Advisory Database

Fix: Upgrade vLLM to version 0.27.0 or later.

NVD/CVE Database
Aug 25, 2026

OpenAI discovered and banned Russian ChatGPT accounts that were part of a coordinated misinformation campaign, which used AI-generated social media posts to promote fake academic work and a 'sovereignty index' that favored Russia. The operators used VPNs (virtual private networks, tools that mask a user's location) to bypass OpenAI's ban on Russian access and prompted the AI in Russian while instructing it to hide linguistic clues of Russian origin. While the immediate reach was limited, OpenAI noted the operation demonstrated how bad actors could use AI to build seemingly credible institutions and spread narratives at scale.

CNBC Technology

Fix: Update NLTK to version 3.10.0 or later, which fixes this vulnerability.

NVD/CVE Database

Fix: The source explicitly states: 'We banned a cluster of ChatGPT accounts originating in Russia.' Additionally, the operators' accounts were disrupted as part of the investigation, though no further technical mitigation measures are detailed in the text.

OpenAI Blog
NVD/CVE Database

Fix: Version 2.12.0 fixes this by adding a new setting called allow_trust_remote_code and an environment variable XINFERENCE_TRUST_REMOTE_CODE that gates remote code execution. After the update, remote code is only allowed for built-in models that come bundled with Xinference.

NVD/CVE Database
NVD/CVE Database

Fix: Upgrade to Hydra 1.3.4 or newer, which adds a blacklist of dangerous targets. For applications handling untrusted config, validate `_target_` values against a trusted allowlist (a list of approved values) before calling `instantiate()`. The unreleased Hydra 1.4 uses an allowlist-based model that fully addresses this vulnerability.

GitHub Advisory Database
GitHub Advisory Database

Fix: Upgrade to Infracost version 0.10.45 or later, where this issue is fixed.

NVD/CVE Database

Fix: Update Infracost to version 0.10.45 or later. The issue is fixed in version 0.10.45.

NVD/CVE Database