Vladimirelitokarev

#2838of 53,633
89.1Total CVSS
Vulnerabilities · 10
High
3
Critical
7
PT-2026-28599
7.5
2026-03-27
Unknown · Langchain-Core · CVE-2026-34070
**Name of the Vulnerable Software and Affected Versions** LangChain versions prior to 1.2.22 **Description** Multiple functions within `langchain core.prompts.loading` read files from paths embedded in deserialized configuration dictionaries without validating against absolute path injection or directory traversal (a technique used to access files and directories outside the intended folder). When an application passes user-influenced prompt configurations to the `load prompt()` or `load prompt from config()` endpoints, an attacker can read arbitrary files on the host filesystem. This access is limited by file-extension checks, where `.txt` is required for templates and `.json` or `.yaml` for examples. The affected internal functions include ` load template()`, ` load examples()`, and ` load few shot prompt()`. Specifically, the `template path`, `suffix path`, and `prefix path` variables are processed by ` load template()`, while the `examples` variable (when provided as a string) is processed by ` load examples()`, and the `example prompt path` variable is processed by ` load few shot prompt()`. **Recommendations** Update LangChain to version 1.2.22 or later. As a temporary mitigation, avoid using the `load prompt()` and `load prompt from config()` functions with untrusted user input. Migrate from the deprecated legacy APIs to the `dumpd`, `dumps`, `load`, and `loads` serialization APIs in `langchain core.load`.
PT-2025-53605
9.9
2025-12-24
N8N · N8N · CVE-2025-68668
**Name of the Vulnerable Software and Affected Versions** n8n versions 1.0.0 through less than 2.0.0 **Description** n8n is an open source workflow automation platform. A sandbox bypass vulnerability exists in the Python Code Node that uses Pyodide, affecting versions from 1.0.0 up to, but not including, 2.0.0. An authenticated user with permission to create or modify workflows can exploit this issue to execute arbitrary commands on the host system running n8n, with the same privileges as the n8n process. This vulnerability, tracked as CVE-2025-68668, has a CVSS score of 9.9 (Critical). Workarounds include disabling the Code Node by setting the environment variable `NODES EXCLUDE` to "["n8n-nodes-base.code"]", disabling Python support in the Code node by setting the environment variable `N8N PYTHON ENABLED` to false (available in n8n version 1.104.0), and configuring n8n to use the task runner based Python sandbox via the `N8N RUNNERS ENABLED` and `N8N NATIVE PYTHON RUNNER` environment variables. The task runner-based Python implementation became the default starting with n8n version 2.0.0. **Recommendations** Upgrade to n8n version 2.0.0 or later. As a temporary workaround, disable the Code Node by setting the environment variable `NODES EXCLUDE` to "["n8n-nodes-base.code"]". As a temporary workaround, disable Python support in the Code node by setting the environment variable `N8N PYTHON ENABLED` to false. As a temporary workaround, configure n8n to use the task runner based Python sandbox via the `N8N RUNNERS ENABLED` and `N8N NATIVE PYTHON RUNNER` environment variables.