Cybersecurity & Regolamentazione UE

News & Sicurezza

Aggiornamenti da ENISA, NVD e le principali fonti di cybersecurity europee. Tutto quello che un Responsabile Tecnico deve sapere.

36406 risultati

VulnerabilitàAlta
CVE-2026-44006 - vm2: Sandbox Escape

CVE ID :CVE-2026-44006 Published : May 13, 2026, 6:16 p.m. | 14 minutes ago Description :vm2 is an open source vm/sandbox for Node.js. Prior to 3.11.0, It is possible to reach BaseHandler.getPrototypeOf, which can be used to get arbitrary prototypes. This vulnerability is fixed in 3.11.0. Severity: 10.0 | CRITICAL Visit the link for more details, such as CVSS details, affected products, timeline, and more...

CVEfeed CVE13 mag 2026
VulnerabilitàAlta
CVE-2026-44004 - vm2: Host Process OOM DoS via Buffer.alloc (Timeout Bypass)

CVE ID :CVE-2026-44004 Published : May 13, 2026, 6:16 p.m. | 14 minutes ago Description :vm2 is an open source vm/sandbox for Node.js. Prior to 3.11.0, sandboxed code can call Buffer.alloc() with an arbitrary size to allocate memory directly on the host heap. Because Buffer.alloc is a synchronous C++ native call, vm2's timeout option cannot interrupt it. A single request can exhaust host memory and crash the process with a FATAL ERROR: Reached heap limit. This vulnerability is fixed in 3.11.0. Severity: 7.5 | HIGH Visit the link for more details, such as CVSS details, affected products, timeline, and more...

CVEfeed CVE13 mag 2026
VulnerabilitàAlta
CVE-2026-44005 - vm2: Sandbox escape

CVE ID :CVE-2026-44005 Published : May 13, 2026, 6:16 p.m. | 14 minutes ago Description :vm2 is an open source vm/sandbox for Node.js. From 3.9.6 to 3.10.5, vm2's bridge exposes mutable proxies for real host-realm intrinsic prototypes and then forwards sandbox writes into the underlying host objects with otherReflectSet() and otherReflectDefineProperty(), which lets attacker-controlled JavaScript running in a default VM or inherited NodeVM mutate shared host Object.prototype, Array.prototype, and Function.prototype from inside the sandbox This vulnerability is fixed in 3.11.0. Severity: 10.0 | CRITICAL Visit the link for more details, such as CVSS details, affected products, timeline, and more...

CVEfeed CVE13 mag 2026
VulnerabilitàAlta
CVE-2026-44007 - vm2: nesting: true bypasses require: false, allowing sandbox escape to arbitrary OS command execution

CVE ID :CVE-2026-44007 Published : May 13, 2026, 6:16 p.m. | 14 minutes ago Description :vm2 is an open source vm/sandbox for Node.js. Prior to 3.11.1, when a NodeVM is created with nesting: true, sandbox code can unconditionally require('vm2') regardless of the outer VM's require configuration — including require: false. With access to vm2, the sandbox constructs a new inner NodeVM with its own unrestricted require settings and executes arbitrary OS commands on the host. Any application that runs untrusted code inside a NodeVM with nesting: true is fully compromised. This vulnerability is fixed in 3.11.1. Severity: 9.1 | CRITICAL Visit the link for more details, such as CVSS details, affected products, timeline, and more...

CVEfeed CVE13 mag 2026
VulnerabilitàAlta
CVE-2026-44008 - vm2: Snabox breakout via `neutralizeArraySpeciesBatch`

CVE ID :CVE-2026-44008 Published : May 13, 2026, 6:16 p.m. | 14 minutes ago Description :vm2 is an open source vm/sandbox for Node.js. Prior to 3.11.2, the new method neutralizeArraySpeciesBatch works with objects from the other side but can call into this side via getter on the array prototype exposing objects of the wrong side into the sandbox. This can be used to get host objects and get the host Function object. This allows attackers to write code which can escape from the VM2 sandbox and execute arbitrary commands on the host system. This vulnerability is fixed in 3.11.2. Severity: 9.8 | CRITICAL Visit the link for more details, such as CVSS details, affected products, timeline, and more...

CVEfeed CVE13 mag 2026
VulnerabilitàAlta
CVE-2026-44009 - vm2: Sandbox Breakout Through Null Proto Exception

CVE ID :CVE-2026-44009 Published : May 13, 2026, 6:16 p.m. | 14 minutes ago Description :vm2 is an open source vm/sandbox for Node.js. Prior to 3.11.2, This vulnerability is fixed in 3.11.2. Severity: 9.8 | CRITICAL Visit the link for more details, such as CVSS details, affected products, timeline, and more...

CVEfeed CVE13 mag 2026
VulnerabilitàAlta
CVE-2026-44578 - Next.js: Server-side request forgery in applications using WebSocket upgrades

CVE ID :CVE-2026-44578 Published : May 13, 2026, 6:16 p.m. | 14 minutes ago Description :Next.js is a React framework for building full-stack web applications. From 13.4.13 to before 15.5.16 and 16.2.5, self-hosted applications using the built-in Node.js server can be vulnerable to server-side request forgery through crafted WebSocket upgrade requests. An attacker can cause the server to proxy requests to arbitrary internal or external destinations, which may expose internal services or cloud metadata endpoints. Vercel-hosted deployments are not affected. This vulnerability is fixed in 15.5.16 and 16.2.5. Severity: 8.6 | HIGH Visit the link for more details, such as CVSS details, affected products, timeline, and more...

CVEfeed CVE13 mag 2026
VulnerabilitàAlta
CVE-2026-44003 - vm2: Transformer Fast-Path Bypass Exposes Internal State Variable

CVE ID :CVE-2026-44003 Published : May 13, 2026, 6:16 p.m. | 14 minutes ago Description :vm2 is an open source vm/sandbox for Node.js. Prior to 3.11.0, vm2's code transformer has a performance optimization that skips AST analysis when the code does not contain catch, import, or async keywords. This fast-path bypass allows sandboxed code to directly access the internal VM2_INTERNAL_STATE_DO_NOT_USE_OR_PROGRAM_WILL_FAIL variable, which exposes internal security functions (handleException, wrapWith, import). This vulnerability is fixed in 3.11.0. Severity: 5.3 | MEDIUM Visit the link for more details, such as CVSS details, affected products, timeline, and more...

CVEfeed CVE13 mag 2026
VulnerabilitàAlta
CVE-2026-44002 - vm2: Host File Path Disclosure via Stack Trace Information Leak

CVE ID :CVE-2026-44002 Published : May 13, 2026, 6:16 p.m. | 14 minutes ago Description :vm2 is an open source vm/sandbox for Node.js. Prior to 3.11.0, vm2's CallSite wrapper class (intended as a safe wrapper for V8's native CallSite) blocks getThis() and getFunction() to prevent host object leakage, but allows getFileName() to return unsanitized host absolute paths. Any sandboxed code can extract the full directory structure, library paths, and framework versions of the host server. This vulnerability is fixed in 3.11.0. Severity: 5.8 | MEDIUM Visit the link for more details, such as CVSS details, affected products, timeline, and more...

CVEfeed CVE13 mag 2026
VulnerabilitàAlta
CVE-2026-8367 - aria2c Improper Certificate Validation

CVE ID :CVE-2026-8367 Published : May 13, 2026, 4:17 p.m. | 13 minutes ago Description :aria2c accepts a server certificate with incorrect Extended Key Usage (EKU). If the attackers compromise a certificate (with the associated private key) issued for a different purpose, they may be able to reuse it for TLS server authentication. Severity: 4.8 | MEDIUM Visit the link for more details, such as CVSS details, affected products, timeline, and more...

CVEfeed CVE13 mag 2026
VulnerabilitàAlta
CVE-2026-6282 (CVSS 8.1)

A potential improper file path validation vulnerability was reported in some Lenovo Personal Cloud Storage devices that could allow a remote authenticated user to move or access files belonging to other users on the same device.

NVD (NIST)13 mag 2026
VulnerabilitàAlta
CVE-2026-6281 (CVSS 8.8)

A potential vulnerability was reported in some Lenovo Personal Cloud Storage devices that could allow a remote authenticated user on the local network to execute arbitrary commands on the device.

NVD (NIST)13 mag 2026

Pagina 1669 di 3034

Resta aggiornato sulla cybersecurity

Iscriviti a CodersRegistry per ricevere gli aggiornamenti più importanti su regolamentazione EU e vulnerabilità critiche.