Lucene search
+L

349424 matches found

CVE
CVE
added 5 days ago43 views

CVE-2026-71215

CVE-2026-71215 affects art-template. Sub-template resolution (resolve-filename.js) resolves target file paths using path.resolve(root, filename) without validating the resulting path is inside root, allowing traversal via include()/extend() and passing the path to fs.readFileSync. An attacker can...

7.5CVSS5.7AI score0.00372EPSS
SaveExploits0References1
Vulnrichment
Vulnrichment
added 5 days ago8 views

CVE-2026-71212 xidown: Argument Injection via Unterminated yt-dlp Command Line Construction

xidown a yt-dlp/ffmpeg GUI wrapper builds its yt-dlp command-line invocation xidown/core/scanner.py and downloader.py by appending the user-provided or scanned URL as a bare trailing positional argument, with no '--' end-of-options marker and no scheme validation anywhere in the codebase. Because...

4.4CVSS6AI score0.00131EPSS
SaveExploits0References1
Cvelist
Cvelist
added 5 days ago35 views

CVE-2026-71212 xidown: Argument Injection via Unterminated yt-dlp Command Line Construction

xidown a yt-dlp/ffmpeg GUI wrapper builds its yt-dlp command-line invocation xidown/core/scanner.py and downloader.py by appending the user-provided or scanned URL as a bare trailing positional argument, with no '--' end-of-options marker and no scheme validation anywhere in the codebase. Because...

4.4CVSS0.00131EPSS
SaveExploits0References1
EUVD
EUVD
added 5 days ago7 views

EUVD-2026-53209

xidown a yt-dlp/ffmpeg GUI wrapper builds its yt-dlp command-line invocation xidown/core/scanner.py and downloader.py by appending the user-provided or scanned URL as a bare trailing positional argument, with no '--' end-of-options marker and no scheme validation anywhere in the codebase. Because...

4.4CVSS6AI score0.00131EPSS
SaveExploits0References1
ATTACKERKB
ATTACKERKB
added 5 days ago7 views

CVE-2026-71212

xidown a yt-dlp/ffmpeg GUI wrapper builds its yt-dlp command-line invocation xidown/core/scanner.py and downloader.py by appending the user-provided or scanned URL as a bare trailing positional argument, with no '--' end-of-options marker and no scheme validation anywhere in the codebase. Because...

4.4CVSS6AI score0.00131EPSS
SaveExploits0References2
CVE
CVE
added 5 days ago40 views

CVE-2026-71212

xidown (a yt-dlp/ffmpeg GUI wrapper) constructs its yt-dlp command by appending a user-supplied URL as a bare trailing positional argument, with no end-of-options marker (-- or scheme validation). Because yt-dlp treats any argument starting with '-' as an option, a crafted URL such as -U or --exe...

4.4CVSS6AI score0.00131EPSS
SaveExploits0References1
Vulnrichment
Vulnrichment
added 5 days ago7 views

CVE-2026-71209 audiobookshelf: %2F Encoding Discrepancy Bypasses Cover/Image Auth Exemption Regex, Enabling Unauthenticated Path Traversal

audiobookshelf's authentication-exemption check server/routers/Auth.js matches unauthenticated-allowed GET routes against req.path via a regex requiring a literal /items/:id/cover or /authors/:id/image shape, where req.path retains %2F sequences URL-encoded. Express's router decodes the :id route...

7.5CVSS5.7AI score0.00663EPSS
SaveExploits0References2
ATTACKERKB
ATTACKERKB
added 5 days ago8 views

CVE-2026-71209

audiobookshelf's authentication-exemption check server/routers/Auth.js matches unauthenticated-allowed GET routes against req.path via a regex requiring a literal /items/:id/cover or /authors/:id/image shape, where req.path retains %2F sequences URL-encoded. Express's router decodes the :id route...

7.5CVSS5.7AI score0.00663EPSS
SaveExploits0References3Affected Software1
Cvelist
Cvelist
added 5 days ago37 views

CVE-2026-71209 audiobookshelf: %2F Encoding Discrepancy Bypasses Cover/Image Auth Exemption Regex, Enabling Unauthenticated Path Traversal

audiobookshelf's authentication-exemption check server/routers/Auth.js matches unauthenticated-allowed GET routes against req.path via a regex requiring a literal /items/:id/cover or /authors/:id/image shape, where req.path retains %2F sequences URL-encoded. Express's router decodes the :id route...

7.5CVSS0.00663EPSS
SaveExploits0References2
CVE
CVE
added 5 days ago35 views

CVE-2026-71209

Audiobookshelf CVE-2026-71209 describes an authentication-exemption bypass in server/routers/Auth.js. The regex checks unauthenticated GET routes against req.path, but because req.path can contain URL-encoded %2F sequences, an encoded directory traversal like ..%2f..%2f..%2ftmp%2fpwned escapes th...

7.5CVSS5.7AI score0.00663EPSS
SaveExploits0References2
OSV
OSV
added 5 days ago5 views

CVE-2026-71209 audiobookshelf: %2F Encoding Discrepancy Bypasses Cover/Image Auth Exemption Regex, Enabling Unauthenticated Path Traversal

audiobookshelf's authentication-exemption check server/routers/Auth.js matches unauthenticated-allowed GET routes against req.path via a regex requiring a literal /items/:id/cover or /authors/:id/image shape, where req.path retains %2F sequences URL-encoded. Express's router decodes the :id route...

7.5CVSS5.5AI score0.04219EPSS
SaveExploits2References4
EUVD
EUVD
added 5 days ago7 views

EUVD-2026-53206

audiobookshelf's authentication-exemption check server/routers/Auth.js matches unauthenticated-allowed GET routes against req.path via a regex requiring a literal /items/:id/cover or /authors/:id/image shape, where req.path retains %2F sequences URL-encoded. Express's router decodes the :id route...

7.5CVSS5.7AI score0.00663EPSS
SaveExploits0References2
Cvelist
Cvelist
added 5 days ago35 views

CVE-2026-70377 imagecli: Uncontrolled Memory Allocation via Unbounded scale Ratio Causes Denial of Service

imagecli's scale pipeline operation Scale::apply in src/imageops.rs computes output width/height as dimension as f32 ratio as u32 with no upper-bound validation on the CLI-supplied ratio, which is parsed via nom::number::complete::float with no range check. A large ratio e.g. 100000 causes an...

7.5CVSS0.00357EPSS
SaveExploits0References1
CVE
CVE
added 5 days ago32 views

CVE-2026-70377

The CVE-2026-70377 entry affects imagecli. The vulnerability lies in the Scale::apply() function where output dimensions are computed as (dimension as f32 * ratio) as u32 without upper-bound validation on a CLI-supplied ratio, which is parsed via nom::number::complete::float with no range check. ...

7.5CVSS5.5AI score0.00357EPSS
SaveExploits0References1
OSV
OSV
added 5 days ago4 views

CVE-2026-70377 imagecli: Uncontrolled Memory Allocation via Unbounded scale Ratio Causes Denial of Service

imagecli's scale pipeline operation Scale::apply in src/imageops.rs computes output width/height as dimension as f32 ratio as u32 with no upper-bound validation on the CLI-supplied ratio, which is parsed via nom::number::complete::float with no range check. A large ratio e.g. 100000 causes an...

7.5CVSS5.5AI score
SaveExploits0References3
EUVD
EUVD
added 5 days ago9 views

EUVD-2026-53197

imagecli's scale pipeline operation Scale::apply in src/imageops.rs computes output width/height as dimension as f32 ratio as u32 with no upper-bound validation on the CLI-supplied ratio, which is parsed via nom::number::complete::float with no range check. A large ratio e.g. 100000 causes an...

7.5CVSS5.5AI score0.00357EPSS
SaveExploits0References1
Vulnrichment
Vulnrichment
added 5 days ago7 views

CVE-2026-70377 imagecli: Uncontrolled Memory Allocation via Unbounded scale Ratio Causes Denial of Service

imagecli's scale pipeline operation Scale::apply in src/imageops.rs computes output width/height as dimension as f32 ratio as u32 with no upper-bound validation on the CLI-supplied ratio, which is parsed via nom::number::complete::float with no range check. A large ratio e.g. 100000 causes an...

7.5CVSS5.5AI score0.00357EPSS
SaveExploits0References1
ATTACKERKB
ATTACKERKB
added 5 days ago8 views

CVE-2026-70377

imagecli's scale pipeline operation Scale::apply in src/imageops.rs computes output width/height as dimension as f32 ratio as u32 with no upper-bound validation on the CLI-supplied ratio, which is parsed via nom::number::complete::float with no range check. A large ratio e.g. 100000 causes an...

7.5CVSS5.5AI score0.00357EPSS
SaveExploits0References2
CVE
CVE
added 5 days ago38 views

CVE-2026-54418

CVE-2026-54418 affects Leantime up to version 3.6.2. The JSON-RPC endpoints leantime.rpc.TwoFA.TwoFA.getSetupData, saveSecret, verifyAndEnable, and disable2FA accept a caller-supplied userId without ownership checks, session pinning, or permission-attribute gating. An authenticated user can call ...

8.1CVSS5.7AI score0.00297EPSS
SaveExploits0References1
Vulnrichment
Vulnrichment
added 5 days ago7 views

CVE-2026-54418 Leantime: Missing Authorization on TwoFA JSON-RPC Methods Allows Cross-Account 2FA Secret Disclosure and Bypass

Leantime through 3.6.2 exposes the JSON-RPC methods leantime.rpc.TwoFA.TwoFA.getSetupData, saveSecret, verifyAndEnable, and disable2FA, which act on a caller-supplied userId parameter with no ownership check, session pinning, or permission-attribute gate unlike other RPC-exposed methods in the sa...

8.1CVSS5.7AI score0.00297EPSS
SaveExploits0References1
Rows per page
Query Builder