Lucene search
+L

23 matches found

OSV
OSV
added 2026/07/17 7:42 p.m.4 views

GO-2026-5979 Anyquery: Arbitrary File Write (AFW) which could lead to Remote Code Execution (RCE) via Unrestricted ATTACH DATABASE in Server Mode in github.com/julien040/anyquery

Anyquery: Arbitrary File Write AFW which could lead to Remote Code Execution RCE via Unrestricted ATTACH DATABASE in Server Mode in github.com/julien040/anyquery...

5.5AI score0.00416EPSS
SaveExploits0References2
Veracode
Veracode
added 2026/07/16 1:16 p.m.10 views

Remote Code Execution (RCE)

github.com/julien040/anyquery, is vulnerable to Remote Code Execution RCE. The vulnerability is due to the server mode allowing unrestricted use of native SQLite ATTACH DATABASE commands, which allows an unauthenticated attacker to write arbitrary files to writable locations on the filesystem and...

6.6AI score0.00416EPSS
SaveExploits0References2Affected Software1
OSV
OSV
added 2026/07/14 6:33 p.m.4 views

GHSA-XRCF-6JH3-GGVX Anyquery: Arbitrary File Write (AFW) which could lead to Remote Code Execution (RCE) via Unrestricted ATTACH DATABASE in Server Mode

Summary Anyquery's server mode does not disable or restrict native SQLite disk manipulation commands. Unauthenticated attackers connecting to the MySQL-compatible server port can use the ATTACH DATABASE command to write arbitrary SQLite databases to any path on the victim's filesystem where the...

9.1CVSS6.3AI score0.00416EPSS
SaveExploits0References3
Snyk
Snyk
added 2026/07/14 6:33 p.m.7 views

Missing Authorization

Overview Affected versions of this package are vulnerable to Missing Authorization through the ATTACH DATABASE process. An attacker can overwrite arbitrary files on the filesystem by sending crafted SQL commands to the server, potentially leading to execution of malicious code or disruption of...

9.1CVSS6.3AI score0.00416EPSS
SaveExploits0References6
Snyk
Snyk
added 2026/07/14 6:33 p.m.6 views

Missing Authorization

Overview Affected versions of this package are vulnerable to Missing Authorization through the ATTACH DATABASE process. An attacker can overwrite arbitrary files on the filesystem by sending crafted SQL commands to the server, potentially leading to execution of malicious code or disruption of...

9.1CVSS6.3AI score0.00416EPSS
SaveExploits0References6
Positive Technologies
Positive Technologies
added 2026/07/14 12:0 a.m.13 views

PT-2026-60080

Name of the Vulnerable Software and Affected Versions Anyquery affected versions not specified Description When running in server mode, the software fails to restrict native SQLite disk manipulation commands. Unauthenticated attackers connecting to the MySQL-compatible server port can use the...

9.1CVSS5.7AI score0.00416EPSS
SaveExploits0References5
OSV
OSV
added 2026/07/09 11:42 p.m.5 views

CVE-2026-50180 Langroid: SQLChatAgent _validate_query blocklist misses pg_read_file family enabling arbitrary file read

Langroid is a framework for building large-language-model-powered applications. Prior to version 0.64.0, SQLChatAgent in langroid ships a validatequery defense-in-depth layer whose DANGEROUSSQLPATTERNS regex blocklist enumerates dangerous SQL primitives by specific function name. The list misses...

8.7CVSS6.2AI score0.00568EPSS
SaveExploits0References4
SUSE CVE
SUSE CVE
added 2025/06/06 2:14 a.m.5 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.0041EPSS
SaveExploits1References3
OSV
OSV
added 2025/06/04 9:22 p.m.7 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.0041EPSS
SaveExploits1References5
Github Security Blog
Github Security Blog
added 2025/06/04 9:22 p.m.16 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.0041EPSS
SaveExploits1References5Affected Software2
Cvelist
Cvelist
added 2025/06/04 7:31 p.m.19 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.0041EPSS
SaveExploits1References2
CNNVD
CNNVD
added 2025/06/04 12:0 a.m.7 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.0041EPSS
SaveExploits1References2
Positive Technologies
Positive Technologies
added 2025/06/04 12:0 a.m.9 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.0041EPSS
SaveExploits1References9
RustSec
RustSec
added 2025/06/03 12:0 p.m.11 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.0041EPSS
SaveExploits1Affected Software1
OSV
OSV
added 2025/06/03 12:0 p.m.6 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.0041EPSS
SaveExploits1References4
RedhatCVE
RedhatCVE
added 2025/05/23 9:7 a.m.7 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.01596EPSS
SaveExploits1References1
OSV
OSV
added 2024/08/05 9:29 p.m.158 views

GHSA-H7CM-JVPP-69XF Meshery SQL Injection vulnerability

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...

6.1CVSS5.9AI score0.01552EPSS
SaveExploits1References7
Veracode
Veracode
added 2024/05/30 10:40 a.m.16 views

SQL Injection

Meshery is vulnerable to SQL Injection. The vulnerability is due to improper handling of the sort query parameter in the GetAllEvents function, allowing for SQL injection through stacked queries and the ATTACH DATABASE command...

5.9CVSS7.8AI score0.01552EPSS
SaveExploits1References5Affected Software1
Veracode
Veracode
added 2024/05/30 9:54 a.m.15 views

SQL Injection

Meshery is vulnerable to SQL Injection. The vulnerability is due to improper handling of the order query parameter in the GetMeshSyncResourcesKinds function, allowing for SQL injection through stacked queries and the ATTACH DATABASE command...

5.9CVSS7.8AI score0.01596EPSS
SaveExploits1References7Affected Software1
OSV
OSV
added 2024/05/27 6:18 p.m.46 views

CVE-2024-35182 GHSL-2024-014 Meshery SQL Injection vulnerability

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...

5.9CVSS6.5AI score0.01552EPSS
SaveExploits1References7
Rows per page
Query Builder