Lucene search
K

774 matches found

OSV
OSV
added 2025/06/18 11:15 a.m.0 views

UBUNTU-CVE-2022-50103

In the Linux kernel, the following vulnerability has been resolved: sched, cpuset: Fix dlcpubusy panic due to empty cs-cpusallowed With cgroup v2, the cpuset's cpusallowed mask can be empty indicating that the cpuset will just use the effective CPUs of its parent. So cpusetcanattach can call...

7.1CVSS6AI score0.00064EPSS
Exploits0References7
Debian CVE
Debian CVE
added 2025/06/18 11:0 a.m.3 views

CVE-2022-49958

In the Linux kernel, the following vulnerability has been resolved: net/sched: fix netdevice reference leaks in attachdefaultqdiscs In attachdefaultqdiscs, if a dev has multiple queues and queue 0 fails to attach qdisc because there is no memory in attachonedefaultqdisc. Then dev-qdisc will be...

5.5CVSS5.3AI score0.00065EPSS
Exploits0
CNNVD
CNNVD
added 2025/06/18 12:0 a.m.2 views

Linux kernel 安全漏洞

Linux kernel is the kernel used by Linux, the open source operating system of the Linux Foundation in the United States. A security vulnerability exists in the Linux kernel that stems from net sched's failure to release network device references in attachdefaultqdiscs, which could lead to a memor...

5.5CVSS6.3AI score0.00065EPSS
Exploits0References5
CNNVD
CNNVD
added 2025/06/18 12:0 a.m.1 views

Linux kernel 安全漏洞

Linux kernel is the kernel used by Linux, the open source operating system of the Linux Foundation in the United States. A security vulnerability exists in the Linux kernel that stems from a potential AA deadlock issue in the driverattach function...

5.5CVSS6.5AI score0.00058EPSS
Exploits0References7
AstraLinux
AstraLinux
added 2025/06/16 11:28 a.m.1 views

Astra Linux - уязвимость в linux-6.12

In the Linux kernel, the following vulnerability has been resolved: bpf: check changespktdata property for extension programs When processing calls to global sub-programs, verifier decides whether to invalidate all packet pointers in current state depending on the changespktdata property of the...

5.5CVSS6.5AI score0.00049EPSS
Exploits0References3
SUSE CVE
SUSE CVE
added 2025/06/06 2:14 a.m.1 views

SUSE CVE-2025-48935

Deno is a JavaScript, TypeScript, and WebAssembly runtime. Starting in version 2.2.0 and prior to versions 2.2.5, it is possible to bypass Deno's permission read/write db permission check by using ATTACH DATABASE statement. Version 2.2.5 contains a patch for the issue...

9.1CVSS6.8AI score0.00349EPSS
Exploits1References3
Github Security Blog
Github Security Blog
added 2025/06/04 9:22 p.m.11 views

Deno has --allow-read / --allow-write permission bypass in `node:sqlite`

Summary It is possible to bypass Deno's read/write permission checks by using ATTACH DATABASE statement. PoC js // poc.js import DatabaseSync from "node:sqlite" const db = new DatabaseSync":memory:"; db.exec"ATTACH DATABASE 'test.db' as test;"; db.exec"CREATE TABLE test.test id INTEGER PRIMARY KE...

9.1CVSS6.8AI score0.00349EPSS
Exploits1References5Affected Software2
OSV
OSV
added 2025/06/04 9:22 p.m.2 views

GHSA-8VXJ-4CPH-C596 Deno has --allow-read / --allow-write permission bypass in `node:sqlite`

Summary It is possible to bypass Deno's read/write permission checks by using ATTACH DATABASE statement. PoC js // poc.js import DatabaseSync from "node:sqlite" const db = new DatabaseSync":memory:"; db.exec"ATTACH DATABASE 'test.db' as test;"; db.exec"CREATE TABLE test.test id INTEGER PRIMARY KE...

9.1CVSS7AI score0.00349EPSS
Exploits1References5
Cvelist
Cvelist
added 2025/06/04 7:31 p.m.14 views

CVE-2025-48935 Deno has --allow-read / --allow-write permission bypass in `node:sqlite`

Deno is a JavaScript, TypeScript, and WebAssembly runtime. Starting in version 2.2.0 and prior to versions 2.2.5, it is possible to bypass Deno's permission read/write db permission check by using ATTACH DATABASE statement. Version 2.2.5 contains a patch for the issue...

6.9CVSS0.00349EPSS
Exploits1References2
CVE
CVE
added 2025/06/04 7:31 p.m.55 views

CVE-2025-48935

CVE-2025-48935 (Deno) affects Deno runtimes from 2.2.0 up to 2.2.4, where the read/write database permission check can be bypassed via the ATTACH DATABASE statement. The issue is resolved in version 2.2.5. Impact described in sources indicates a bypass of permission checks (read/write permission)...

9.1CVSS6.9AI score0.00349EPSS
Exploits1References2Affected Software1
Positive Technologies
Positive Technologies
added 2025/06/04 12:0 a.m.3 views

PT-2025-23850 · Deno · Deno

Name of the Vulnerable Software and Affected Versions: Deno versions 2.2.0 through 2.2.4 Description: The issue allows bypassing Deno's permission read/write db permission check by using the ATTACH DATABASE statement. Recommendations: For Deno versions 2.2.0 through 2.2.4, update to version 2.2.5...

9.1CVSS6.3AI score0.00349EPSS
Exploits1References9
CNNVD
CNNVD
added 2025/06/04 12:0 a.m.1 views

Deno 安全漏洞

Deno is a simple, modern and secure JavaScript and TypeScript runtime environment from Deno Open Source. A security vulnerability exists in Deno versions prior to 2.2.0 through 2.2.5, which stems from a read/write permission check that can be bypassed via the ATTACH DATABASE statement...

9.1CVSS6.4AI score0.00349EPSS
Exploits1References2
RustSec
RustSec
added 2025/06/03 12:0 p.m.5 views

--allow-read / --allow-write permission bypass in `node:sqlite`

It is possible to bypass Deno's read/write permission checks by using ATTACH DATABASE statement. PoC // poc.js import DatabaseSync from "node:sqlite" const db = new DatabaseSync":memory:"; db.exec"ATTACH DATABASE 'test.db' as test;"; db.exec"CREATE TABLE test.test id INTEGER PRIMARY KEY, name...

9.1CVSS7AI score0.00349EPSS
Exploits1Affected Software1
OSV
OSV
added 2025/06/03 12:0 p.m.0 views

RUSTSEC-2025-0138 --allow-read / --allow-write permission bypass in `node:sqlite`

It is possible to bypass Deno's read/write permission checks by using ATTACH DATABASE statement. PoC // poc.js import DatabaseSync from "node:sqlite" const db = new DatabaseSync":memory:"; db.exec"ATTACH DATABASE 'test.db' as test;"; db.exec"CREATE TABLE test.test id INTEGER PRIMARY KEY, name...

6.9CVSS6.8AI score0.00349EPSS
Exploits1References4
RedhatCVE
RedhatCVE
added 2025/05/23 9:7 a.m.3 views

CVE-2024-35181

Meshery is an open source, cloud native manager that enables the design and management of Kubernetes-based infrastructure and applications. A SQL injection vulnerability in Meshery prior to version 0.7.22 may lead to arbitrary file write by using a SQL injection stacked queries payload, and the...

8.1CVSS7.9AI score0.00148EPSS
Exploits1References1
RedhatCVE
RedhatCVE
added 2025/05/22 8:54 p.m.16 views

CVE-2021-37941

A local privilege escalation issue was found with the APM Java agent, where a user on the system could attach a malicious file to an application running with the APM Java agent. Using this vector, a malicious or compromised user account could use the agent to run commands at a higher level of...

7.8CVSS7AI score0.00033EPSS
Exploits0References1
RedhatCVE
RedhatCVE
added 2025/05/22 4:12 a.m.6 views

CVE-2010-2036

Directory traversal vulnerability in the Percha Fields Attach comperchafieldsattach component 1.x for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impact via a .. dot dot in the controller parameter to index.php...

7.5CVSS7.6AI score0.00574EPSS
Exploits1References1
RedhatCVE
RedhatCVE
added 2025/05/22 4:12 a.m.8 views

CVE-2010-2034

Directory traversal vulnerability in the Percha Image Attach comperchaimageattach component 1.1 for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impact via a .. dot dot in the controller parameter to index.php...

7.5CVSS7.6AI score0.01646EPSS
Exploits1References1
RedHat Linux
RedHat Linux
added 2025/05/13 8:28 a.m.1 views

kernel: platform/x86: ISST: Fix the KASAN report slab-out-of-bounds bug

In the Linux kernel, the following vulnerability has been resolved: platform/x86: ISST: Fix the KASAN report slab-out-of-bounds bug Attaching SST PCI device to VM causes "BUG: KASAN: slab-out-of-bounds". kasan report: 19.411889 ==================================================================...

5.5CVSS6.4AI score0.00013EPSS
Exploits0References5
OpenVAS
OpenVAS
added 2025/05/07 12:0 a.m.4 views

Configure the Kernel Parameter ptrace_scope Properly

ptrace is a system call used for process tracing. It provides the capability for a parent process to observe and control child processes. Linux Kernel 3.4 and later versions support completely restricting or disabling the ptrace function. According to the Linux Kernel Yama Documentation, the...

6.9AI score
Exploits0References4
Rows per page
Query Builder