Search
CVE Explorer
Search the full tracked CVE corpus across every vendor — by keyword, vendor, severity, CVSS band and publication date. Server-rendered; each filtered view has its own URL.
01
Filters
Submit to refine — state is held in the URL.
02
Results
42,571 matching · page 416/852Each CVE id links to its NVD record.
| CVE | Severity | CVSS | Summary | Published |
|---|---|---|---|---|
| CVE-2026-65902(opens NVD record) | Medium | 6.1 | DOMPurify before 3.4.7 (affected versions <= 3.4.5) passes direct references to the module-level DEFAULT_ALLOWED_TAGS and DEFAULT_ALLOWED_ATTR sets to the uponSanitizeElement and uponSanitizeAttribute hooks via data.allowedTags / data.allowedAttributes when sanitize is called without an explicit cfg.ALLOWED_TAGS / cfg.ALLOWED_ATTR array. A hook that mutates these fields permanently widens the default allow-lists for the lifetime of the DOMPurify instance, so all subsequent default-config sanitize calls inherit the widened defaults and attacker payloads using the poisoned tag/attribute name survive sanitization. removeAllHooks(), clearConfig(), and passing a fresh cfg do not recover the state; only constructing a new DOMPurify instance does. | Jul 23, 2026 |
| CVE-2026-65901(opens NVD record) | Medium | 6.1 | DOMPurify through 3.4.6 contains a cross-site scripting vulnerability in IN_PLACE mode that trusts attacker-controlled nodeName on live non-form nodes. Attackers can supply hostile live DOM objects with real script children whose observable nodeName is clobbered to appear as allowed elements, causing scripts to execute when the sanitized tree is inserted into a live document. | Jul 23, 2026 |
| CVE-2026-65900(opens NVD record) | Medium | 6.1 | DOMPurify versions >=3.0.0 and before 3.4.8, when configured with SAFE_FOR_TEMPLATES together with a DOM output mode (RETURN_DOM, RETURN_DOM_FRAGMENT, or IN_PLACE), fail to strip template expressions (e.g. ${evil}, {{evil}}, <%evil%>) inside <template> element content. The final normalization/scrub pass (_scrubTemplateExpressions) uses a NodeIterator and node.normalize() that do not descend into template.content, so expressions that only form after adjacent text nodes merge survive sanitization. This bypasses SAFE_FOR_TEMPLATES and can allow a downstream template engine to evaluate attacker-supplied expressions. The string output path is not affected. | Jul 23, 2026 |
| CVE-2026-65899(opens NVD record) | Medium | 6.1 | DOMPurify 3.0.0 before 3.4.9 does not reset the retained Trusted Types policy when clearConfig() is called, so a DOMPurify instance reused across trust boundaries stays bound to a previously supplied TRUSTED_TYPES_POLICY. A later caller that requests RETURN_TRUSTED_TYPE output receives a TrustedHTML object created by the old (potentially unsafe) policy rather than a clean default, which can lead to script execution at a Trusted Types sink. Passing TRUSTED_TYPES_POLICY: null on the later call also does not clear the retained policy. | Jul 23, 2026 |
| CVE-2026-65898(opens NVD record) | High | 7.2 | DOMPurify before 3.4.11 fails to clone the ALLOWED_ATTR allowlist when setConfig() is used with an uponSanitizeAttribute hook, allowing the hook to permanently mutate the shared allowlist. Attackers can register a hook that conditionally allows dangerous attributes like onerror for trusted elements, then submit untrusted content that inherits the polluted allowlist and executes event handlers as stored XSS. | Jul 23, 2026 |
| CVE-2026-65690(opens NVD record) | High | 8.8 | Bold Reports Standalone Report Designer before 14.1.12 contains a missing filepath validation vulnerability in its file upload functionality that allows authenticated attackers to traverse outside the intended directory by supplying a crafted filename. Attackers can exploit this path traversal weakness to execute arbitrary commands with high privileges on the server. The vulnerability is specific to the DataHub module, which was introduced in Bold Reports 6.3. Therefore, versions prior to 6.3 are not affected. | Jul 23, 2026 |
| CVE-2026-65689(opens NVD record) | Critical | 9.8 | Bold Reports Standalone Report Designer before 14.1.12 contains a missing filepath validation vulnerability in its database download feature that allows unauthenticated attackers to read arbitrary files from the server filesystem by supplying a crafted request. Attackers can exploit this path traversal weakness to disclose sensitive server files, including authentication credentials, enabling full unauthorized access to the application. The vulnerability is specific to the DataHub module, which was introduced in Bold Reports 6.3. Therefore, versions prior to 6.3 are not affected. | Jul 23, 2026 |
| CVE-2026-65688(opens NVD record) | Critical | 9.8 | Bold Reports Standalone Report Designer before 14.1.12 contains a missing filepath validation vulnerability in its font processing feature that allows unauthenticated attackers to read arbitrary files from the server filesystem by supplying a crafted request. Attackers can exploit this path traversal weakness to disclose sensitive server files, including authentication credentials, enabling full unauthorized access to the application. The vulnerability is specific to the DataHub module, which was introduced in Bold Reports 6.3. Therefore, versions prior to 6.3 are not affected. | Jul 23, 2026 |
| CVE-2026-65687(opens NVD record) | Critical | 9.8 | Bold Reports Standalone Report Designer before 14.1.12 contains a missing filepath validation vulnerability in its SVG processing feature that allows unauthenticated attackers to read arbitrary files from the server filesystem by supplying a crafted request. Attackers can exploit this path traversal weakness to disclose sensitive server files, including authentication credentials, enabling full unauthorized access to the application. The vulnerability is specific to the DataHub module, which was introduced in Bold Reports 6.3. Therefore, versions prior to 6.3 are not affected. | Jul 23, 2026 |
| CVE-2026-16735(opens NVD record) | Medium | 5.3 | A security vulnerability has been detected in release-it conventional-changelog up to 11.0.1. This affects the function writeChangelog of the file index.js of the component Changelog File Handler. Such manipulation of the argument infile leads to os command injection. The attack must be carried out locally. The exploit has been disclosed publicly and may be used. The project was informed of the problem early through an issue report but has not responded yet. | Jul 23, 2026 |
| CVE-2026-16733(opens NVD record) | Medium | 5.3 | A weakness has been identified in bahmutov find-cypress-specs up to 1.54.12. The impacted element is the function shell.exec of the file src/index.js of the component Branch Handler. This manipulation of the argument --branch causes os command injection. The attack is restricted to local execution. The exploit has been made available to the public and could be used for attacks. The project was informed of the problem early through an issue report but has not responded yet. | Jul 23, 2026 |
| CVE-2026-14257(opens NVD record) | High | 7.5 | brace-expansion through 5.0.7 is vulnerable to denial of service via memory exhaustion. The expand() function limits the number of results with a max option (default 100,000) but does not bound the length of each result string. By chaining multiple brace groups, an attacker keeps the result count under the limit while making each result progressively longer, so total memory scales with both count and string length until the process hits a fatal, uncatchable out-of-memory error. About 7.5 KB of input ('{a,b}'.repeat(1500)) crashes a default Node.js process. Any application that passes attacker-influenced strings to brace-expansion.expand() - directly or transitively via minimatch / glob brace patterns - can be crashed by a small request. Fixed in 5.0.8 by adding a maxLength option (default 4,000,000) that bounds accumulated output and intermediate arrays. | Jul 23, 2026 |
| CVE-2026-65908(opens NVD record) | High | 8.6 | In JetBrains PyCharm before 2026.1.4, 2026.2 arbitrary code execution via malicious Python executable was possible on untrusted project open | Jul 23, 2026 |
| CVE-2026-65907(opens NVD record) | Critical | 9.1 | In JetBrains TeamCity before 2026.1.2, 2025.11.6 code execution in Git VCS roots was possible | Jul 23, 2026 |
| CVE-2026-65906(opens NVD record) | High | 8.8 | In JetBrains TeamCity before 2026.1.2, 2025.11.6 сode execution via Kotlin DSL sandbox escape was possible | Jul 23, 2026 |
| CVE-2026-15037(opens NVD record) | Unscored | — | Improper output neutralization (XML injection) in QDom comment, CDATA, and processing-instruction serialization in Qt XML from 4.0.0 through 6.11 allows untrusted text serialized by an application into those nodes to inject arbitrary XML markup, because the node terminators are not escaped under the default InvalidDataPolicy (AcceptInvalidChars). Fixed in Qt 6.12. | Jul 23, 2026 |
| CVE-2026-65897(opens NVD record) | High | 8.8 | Grav API Plugin versions before 1.0.10 fail to validate the groups field in InvitationsController::create(), allowing authenticated api.users.write callers to assign invited accounts to groups that grant api.super permissions. Attackers can create invitation records with elevated group membership, and when accepted, the new account gains full super-admin API access without the inviter holding those permissions. | Jul 23, 2026 |
| CVE-2026-65896(opens NVD record) | High | 7.1 | Grav API Plugin (Composer package getgrav/grav-plugin-api) before 1.0.10 fails to properly validate the slug field in the POST /pages/{route}/move endpoint. PagesController::move() sanitizes the slug only with ltrim($body['slug'], '.'), which strips leading periods but does not neutralize '/' or '..' segments. An authenticated API caller with the api.pages.write permission can supply path traversal sequences (e.g., 01.home/../../../pwned) to move an entire page directory (content and media) to an arbitrary writable location outside user/pages/, including outside the Grav installation. | Jul 23, 2026 |
| CVE-2026-65895(opens NVD record) | High | 8.5 | Grav API Plugin versions before 1.0.10 fail to restrict write access to security-critical plugin configuration scopes, allowing authenticated users with api.config.write privilege to modify rate limiting and CORS settings. Attackers can disable rate limiting site-wide to enable credential brute-forcing attacks and reconfigure CORS policies to include attacker-controlled origins with credentials enabled. | Jul 23, 2026 |
| CVE-2026-65608(opens NVD record) | High | 8.8 | Grav versions >= 1.7.0 and before 2.0.9 contain a remote code execution vulnerability. FlexDirectory::dynamicDataField() resolves blueprint data-*@: directives by calling call_user_func_array() on attacker-influenced input, validating only that the target is callable (is_callable()) without restricting dangerous functions such as exec, system, passthru, or shell_exec. Because FlexDirectory registers this handler for every Flex directory, it bypasses the validation added to Blueprint::dynamicData() in 2.0.7 (GHSA-fj2p-qj2f-74v5). Any authenticated user with create or update permission on any Flex-based directory (Flex Users, Flex Pages, Flex Objects, or custom Flex types) can execute arbitrary shell commands on the server. | Jul 23, 2026 |
| CVE-2026-65607(opens NVD record) | Medium | 6.5 | SiYuan before v3.7.2 contains a path traversal vulnerability in the /export/temp/ short-circuit branch of the serveExport handler (kernel/server/serve.go). Unlike the main export branch, this branch joins the raw, percent-decoded request path with util.TempDir and serves the file without the IsSubPath or IsSensitivePath checks added in the earlier export-disclosure hardening (GHSA-6865-qjcf-286f). An authenticated attacker can send percent-encoded traversal sequences (e.g. /export/temp/%2e%2e/.../etc/passwd, where %2e%2e is decoded to '..') to read arbitrary files outside TempDir, including /etc/passwd, SSH keys (~/.ssh/*), and SiYuan workspace *.db and *.log files, bypassing the sensitive-file protection. | Jul 23, 2026 |
| CVE-2026-65606(opens NVD record) | Critical | 9.6 | SiYuan before v3.7.2 contains a cross-site scripting vulnerability in the siyuan:// protocol handler. When a siyuan://plugins/<name> link references a name that is not an installed plugin, the application opens a custom tab and inserts the link's icon parameter into the tab header via innerHTML without escaping it (app/src/layout/Tab.ts), allowing injection of an <img onerror=...> element. Because the SiYuan Desktop renderer runs with nodeIntegration:true, the injected JavaScript can access Node's require and call require('child_process').execSync(...), escalating the cross-site scripting into arbitrary operating-system command execution. | Jul 23, 2026 |
| CVE-2026-65605(opens NVD record) | Critical | 9.6 | SiYuan before v3.7.2 contains a stored cross-site scripting vulnerability in Attribute View (database) cell rendering. A Template column value is rendered as HTML via text/template without auto-escaping, and EscapeHTML is only applied when HasUnclosedHtmlTag returns true; because balanced self-closing tags such as <img> are skipped by that check, a payload like <img src=x onerror=...> is stored unescaped and later inserted into the page via innerHTML, executing when the database is viewed. Because the desktop renderer runs with nodeIntegration enabled, the injected script can reach require and escalate to arbitrary command execution. | Jul 23, 2026 |
| CVE-2026-65550(opens NVD record) | Medium | 5.9 | Shop Manager Cross Site Scripting (XSS) in Tabs <= 2.5 versions. | Jul 23, 2026 |
| CVE-2026-65540(opens NVD record) | High | 7.1 | Unauthenticated Cross Site Request Forgery (CSRF) in Popup for CF7 with Sweet Alert <= 1.6.5 versions. | Jul 23, 2026 |
| CVE-2026-65539(opens NVD record) | High | 7.1 | Unauthenticated Cross Site Request Forgery (CSRF) in Kwayy HTML Sitemap <= 4.0 versions. | Jul 23, 2026 |
| CVE-2026-65538(opens NVD record) | Medium | 5.9 | Author Cross Site Scripting (XSS) in Machete <= 5.2 versions. | Jul 23, 2026 |
| CVE-2026-65537(opens NVD record) | Medium | 4.3 | Subscriber Broken Access Control in Cyr to Lat reloaded – transliteration of links and file names <= 1.3.3 versions. | Jul 23, 2026 |
| CVE-2026-65536(opens NVD record) | Medium | 6.5 | Unauthenticated Cross Site Request Forgery (CSRF) in افزونه حمل و نقل ووکامرس (پست پیشتاز و سفارشی، پیک موتوری) <= 4.4.5 versions. | Jul 23, 2026 |
| CVE-2026-65535(opens NVD record) | Medium | 4.3 | Contributor Sensitive Data Exposure in TinyMCE Templates <= 4.8.1 versions. | Jul 23, 2026 |
| CVE-2026-65534(opens NVD record) | Medium | 5.9 | Author Cross Site Scripting (XSS) in Custom links in Elementor Image Carousel <= 1.1.1 versions. | Jul 23, 2026 |
| CVE-2026-65533(opens NVD record) | Medium | 6.5 | Contributor Cross Site Scripting (XSS) in Smart SEO Tool <= 4.1.2 versions. | Jul 23, 2026 |
| CVE-2026-65532(opens NVD record) | High | 7.6 | Shop manager SQL Injection in Persian Woocommerce SMS <= 7.2.2 versions. | Jul 23, 2026 |
| CVE-2026-65531(opens NVD record) | Medium | 4.8 | Unauthenticated Broken Access Control in Qubely <= 1.8.14 versions. | Jul 23, 2026 |
| CVE-2026-65530(opens NVD record) | Medium | 4.3 | Subscriber Broken Access Control in TemplateSpare <= 4.2.2 versions. | Jul 23, 2026 |
| CVE-2026-65529(opens NVD record) | Medium | 5.3 | Unauthenticated Broken Access Control in Graphina <= 3.1.12 versions. | Jul 23, 2026 |
| CVE-2026-65528(opens NVD record) | Medium | 6.5 | Contributor Cross Site Scripting (XSS) in BSK PDF Manager <= 3.8 versions. | Jul 23, 2026 |
| CVE-2026-65527(opens NVD record) | Medium | 6.5 | Contributor Cross Site Scripting (XSS) in LIQUID SPEECH BALLOON <= 1.2.5 versions. | Jul 23, 2026 |
| CVE-2026-65526(opens NVD record) | High | 8.5 | Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Themeisle Visualizer allows Blind SQL Injection. This issue affects Visualizer: from n/a through 4.0.1. | Jul 23, 2026 |
| CVE-2026-65525(opens NVD record) | Medium | 5.3 | Unauthenticated Broken Access Control in Civi Framework <= 2.2.0 versions. | Jul 23, 2026 |
| CVE-2026-65524(opens NVD record) | Medium | 4.3 | Contributor Broken Access Control in Avada Custom Branding <= 1.2 versions. | Jul 23, 2026 |
| CVE-2026-65522(opens NVD record) | Medium | 6.5 | Contributor Cross Site Scripting (XSS) in Manual - Documentation, Knowledge Base & Education WordPress Theme <= 7.5.4 versions. | Jul 23, 2026 |
| CVE-2026-65521(opens NVD record) | Medium | 5.3 | Unauthenticated Sensitive Data Exposure in WP Social Ninja <= 4.3.0 versions. | Jul 23, 2026 |
| CVE-2026-65519(opens NVD record) | Medium | 6.5 | Author Cross Site Scripting (XSS) in Photo Gallery <= 2.7.7.29 versions. | Jul 23, 2026 |
| CVE-2026-65518(opens NVD record) | Medium | 6.5 | Contributor Cross Site Scripting (XSS) in Accept Donations with PayPal & Stripe <= 1.5.5 versions. | Jul 23, 2026 |
| CVE-2026-65516(opens NVD record) | High | 7.2 | Unauthenticated Server Side Request Forgery (SSRF) in PeproDev Ultimate Invoice <= 2.2.6 versions. | Jul 23, 2026 |
| CVE-2026-65514(opens NVD record) | Medium | 6.5 | Contributor Cross Site Scripting (XSS) in Appointment Hour Booking <= 1.5.86 versions. | Jul 23, 2026 |
| CVE-2026-65512(opens NVD record) | Medium | 5.4 | Cross-Site request forgery (CSRF) vulnerability in Melapress WP Activity Log and Melapress WP Activity Log Premium allows Cross Site Request Forgery. This issue affects WP Activity Log: through 5.6.4; WP Activity Log Premium: through 5.6.4. | Jul 23, 2026 |
| CVE-2026-65511(opens NVD record) | High | 7.1 | Unauthenticated Cross Site Scripting (XSS) in Manual - Documentation, Knowledge Base & Education WordPress Theme <= 7.5.4 versions. | Jul 23, 2026 |
| CVE-2026-65510(opens NVD record) | High | 7.1 | Unauthenticated Cross Site Scripting (XSS) in PeproDev Ultimate Invoice <= 2.2.6 versions. | Jul 23, 2026 |