Export limit exceeded: 372567 CVEs match your query. Please refine your search to export 10,000 CVEs or fewer.

Export limit exceeded: 372567 CVEs match your query. Please refine your search to export 10,000 CVEs or fewer.

Search

Search Results (372567 CVEs found)

CVE Vendors Products Updated CVSS v3.1
CVE-2026-12609 2026-08-05 7.5 High
In Eclipse Theia versions 1.66.0 and up until including 1.73.1, the `@theia/plugin-ext` backend exposes the `/hostedPlugin/:pluginId/:path(*)` HTTP endpoint, which resolves the requested file path with `path.resolve(localPath, filePath)` without verifying that the resolved path stays within the plugin's directory. An unauthenticated network attacker can send percent-encoded `../` sequences (`%2e%2e%2f`) that decode into the path parameter and escape the plugin directory, allowing arbitrary files readable by the Theia backend process to be retrieved. Plugin IDs are derived deterministically from a plugin's publisher and name, so built-in plugins serve as reliable anchors that require no prior knowledge of the target system.
CVE-2026-71236 1 Grocy 1 Grocy 2026-08-05 8 High
Grocy's API request-body parser (controllers/Api/BaseApiController.php, GetParsedAndFilteredRequestBody) purifies incoming field values with HTMLPurifier, then manually reverses HTML-entity encoding of the resulting output by replacing &amp;lt;, &amp;gt;, and &amp;amp; back to <, >, and & immediately after purification. This double-decode reconstructs live HTML/script tags from the entity-encoded form that HTMLPurifier produced to neutralize them, re-introducing stored XSS across API-writable fields (products, recipes, stock, users, chores, and others) that are rendered elsewhere without re-sanitization.
CVE-2026-71245 1 Mautic 1 Mautic 2026-08-05 7.1 High
Mautic's getLeadIdsByFieldValueAction (LeadBundle/Controller/AjaxController.php) reads a field parameter from the request, sanitizes it only with InputHelper::clean() (which HTML-entity-encodes quotes and angle brackets but does not restrict other characters), and passes it into LeadRepository::buildQueryForGetLeadsByFieldValue() where it is concatenated directly as a raw SQL column identifier ($col = 'l.'.$field) rather than being validated against a whitelist of real column names or passed as a bound parameter. Since Doctrine cannot parameterize identifiers, and the sanitizer does not block spaces, parentheses, or other SQL-relevant characters, an attacker can inject SQL via the field name itself. The action requires only a valid session (any authenticated user), unlike sibling actions in the same controller that carry additional permission checks.
CVE-2026-71247 1 Documenso 1 Documenso 2026-08-05 6.5 Medium
Documenso's sign-field-with-token.ts, used by the live document-signing UI, allows a recipient with the ASSISTANT role to fetch and complete fields belonging to any later-or-equal-order, not-yet-signed recipient in the same envelope, with no restriction on field type. The handler upserts a Signature record tied to the target field's recipientId with no check that field.type is SIGNATURE and the acting recipient owns it. A newer V2 signing path (sign-envelope-field.ts) explicitly blocks assistants from completing SIGNATURE fields, and the project's own test suite comments confirm this guard is absent from the V1 path used here. In a sequential-signing document, an assistant recipient can therefore forge another signer's signature field.
CVE-2026-71250 1 Firefly-iii 1 Firefly Iii 2026-08-05 4.3 Medium
Firefly III's webhook URL validator (IsValidWebhookUrl.php) filters most private/reserved IPv4 ranges but contains an explicit early-return that allows any resolved address in 127.0.0.0/8, permitting an authenticated user (with webhooks enabled, which is off by default) to configure a webhook targeting loopback services on the server. Additionally, the validator resolves the target hostname once via gethostbyname() at validation time, but the actual outbound request (StandardWebhookSender.php, via Guzzle) re-resolves the hostname independently at send time, allowing a DNS-rebinding attacker to pass validation against a public IP and have the real request delivered to a private or internal address. The webhook response body is only written to a server-side debug log, not returned to the triggering user, so this is a blind SSRF primitive rather than one with direct response read-back.
CVE-2026-14574 1 Eclipse 1 Theia 2026-08-05 N/A
In Eclipse Theia versions 0.7.0 and up until including 1.73.1, the `PreferenceUtils.merge` function in `@theia/core` recursively merges preference values without rejecting prototype-related keys (`__proto__`, `constructor`, `prototype`). Because this function is invoked by `PreferenceServiceImpl.doResolve` for every preference resolution across scopes (default, user, workspace, folder), a crafted preference value in a workspace settings file (`.theia/settings.json` or `.vscode/settings.json`) can pollute `Object.prototype` when the user opens the workspace, potentially altering application logic across the Theia process.
CVE-2026-71246 1 Pixelfed 1 Pixelfed 2026-08-05 5.7 Medium
Pixelfed's SearchController (behind the auth middleware) accepts a URL via its remote-search parameters and fetches it server-side through ActivityPubFetchService, whose validateUrl() only blocks the literal hosts 127.0.0.1, localhost, and ::1 and requires https, without checking the resolved IP against private, internal, or link-local ranges (e.g. 169.254.169.254). Optional DNS validation is disabled by default and, when enabled, only confirms a DNS record exists without filtering by IP range. The fetch response body is returned to the requester only when the Content-Type matches an ActivityPub content type, making this a semi-blind but authenticated SSRF primitive reachable by any logged-in user.
CVE-2026-71251 1 Akaunting 1 Akaunting 2026-08-05 6.5 Medium
Akaunting's shared download route (app/Http/Controllers/Common/Uploads.php::download(), reachable at uploads/{id}/download behind only generic auth middleware) fetched the requested Media record by ID with no verification that it belonged to the requesting portal customer's own company, allowing any authenticated portal customer to download any other company's uploaded files by guessing or enumerating media IDs. Fixed in commit 80ef6d3 (2026-07-12), which added an explicit ownership check comparing the media's parent record contact_id against the requesting user's own contact.
CVE-2026-60009 1 Eclipse 1 Theia 2026-08-05 8.8 High
In Eclipse Theia versions up to and including 1.73.1, the `@theia/filesystem` backend binds `POST /file-upload` in every filesystem-enabled deployment. The handler takes an attacker-supplied absolute path from the multipart `uri` field and calls `fs.move(tmp, target, { overwrite: true })` with no workspace confinement and no authentication. In browser (non-Electron) deployments the connection token is enforced only on WebSocket upgrades; the HTTP middleware in `@theia/core` re-issues the cookie and calls `next()` without rejecting tokenless HTTP requests. Because `multipart/form-data` is a CORS-safelisted request type, a cross-origin web page can trigger the write with no preflight and no credentials, resulting in an unauthenticated arbitrary file write outside the workspace to any absolute path the backend process can write. This can escalate to remote code execution, for example by overwriting a startup-executed file such as `~/.bashrc`. Electron mode uses a separate `ElectronSecurityToken` and is not affected via this path.
CVE-2026-71225 1 Redhat 3 Enterprise Linux, Hummingbird, Openshift 2026-08-05 6.5 Medium
A flaw was found in libkcapi. When performing one-shot symmetric cipher operations on large inputs (over 64 KiB) in stateful modes such as Counter (CTR) or Cipher Block Chaining (CBC), the library improperly reuses the Initialization Vector (IV) for each internal data chunk. A remote attacker could potentially exploit this by making an application that uses libkcapi process specially crafted large inputs. This can lead to a significant weakening of data confidentiality, as the repeated IV use can expose relationships in encrypted plaintext, and may also affect data integrity by causing incorrect cryptographic processing.
CVE-2026-16022 2026-08-05 7.8 High
@oblique/cli 15.4.0 contains an OS command injection vulnerability in the project creation functionality. The CLI constructs shell commands through string concatenation and executes them with execSync(). A user-controlled project-name argument is inserted into the shell command without proper neutralization, allowing shell metacharacters to execute additional operating-system commands when the CLI is invoked with a crafted project name.
CVE-2026-21548 1 Unisoc 4 T8100, T8200, T8300 and 1 more 2026-08-05 7.5 High
In nr modem, there is a possible improper input validation. This could lead to remote denial of service with System execution privileges needed.
CVE-2026-21549 1 Unisoc 4 T8100, T8200, T8300 and 1 more 2026-08-05 7.5 High
In modem, there is a possible improper input validation. This could lead to remote denial of service with no additional execution privileges needed
CVE-2026-21550 1 Unisoc 4 T8100, T8200, T8300 and 1 more 2026-08-05 7.5 High
In modem, there is a possible improper input validation. This could lead to remote denial of service with no additional execution privileges needed
CVE-2026-21551 1 Unisoc 4 T8100, T8200, T8300 and 1 more 2026-08-05 7.5 High
In modem, there is a possible improper input validation. This could lead to remote denial of service with no additional execution privileges needed
CVE-2026-21552 1 Unisoc 4 T8100, T8200, T8300 and 1 more 2026-08-05 7.5 High
In modem, there is a possible improper input validation. This could lead to remote denial of service with no additional execution privileges needed
CVE-2026-21553 1 Unisoc 4 T8100, T8200, T8300 and 1 more 2026-08-05 7.5 High
In modem, there is a possible improper input validation. This could lead to remote denial of service with no additional execution privileges needed
CVE-2026-21554 1 Unisoc 1 Udx710 2026-08-05 7.5 High
In modem, there is a possible improper input validation. This could lead to remote denial of service with no additional execution privileges needed
CVE-2026-21555 1 Unisoc 1 Udx710 2026-08-05 7.5 High
In modem, there is a possible improper input validation. This could lead to remote denial of service with no additional execution privileges needed
CVE-2026-15452 2 Smub, Wordpress 2 Smash Balloon Social Photo Feed – Easy Social Feeds Plugin, Wordpress 2026-08-05 4.7 Medium
The Smash Balloon Social Photo Feed – Easy Social Feeds Plugin plugin for WordPress is vulnerable to Reflected Cross-Site Scripting via REQUEST_URI Query String in all versions up to, and including, 6.11.3 due to insufficient input sanitization and output escaping. This makes it possible for unauthenticated attackers to inject arbitrary web scripts in pages that execute if they can successfully trick a user into performing an action such as clicking on a link.