PULSE
LIVE22signals / 24h
FEED
ransomqilin reclama a Mera Metal · PL · Manufacturingransomglobal secret group reclama a Pavillon · US · Otherransomdragonforce reclama a P. A. Inc. (Performance Alloys) · US · Manufacturingransomdragonforce reclama a Mike Graham Heating And Air Conditioning · US · Otherransomqilin reclama a STADLER Sensorik CNC-Technik · AT · Manufacturingransomchaos reclama a tomorrowsoffice.com · GB · Professional Servicesransomdark project reclama a Long-Lewis Automotive Group · US · Not Foundransomtriple x reclama a Henshaw Law · GB · Professional Servicesransomqilin reclama a Stade Francais · FR · Hospitalityransompayoutsking reclama a H****r · US · Not Foundransomdark project reclama a Mayco International · US · Manufacturingransomdark project reclama a Brainhunter Companies LLC. and Brainhunter Systems Ltd. · US · Professional Servicesransomdark project reclama a Leviton · US · Manufacturingransomdark project reclama a The Miller Group · GB · Otherransomqilin reclama a Mera Metal · PL · Manufacturingransomglobal secret group reclama a Pavillon · US · Otherransomdragonforce reclama a P. A. Inc. (Performance Alloys) · US · Manufacturingransomdragonforce reclama a Mike Graham Heating And Air Conditioning · US · Otherransomqilin reclama a STADLER Sensorik CNC-Technik · AT · Manufacturingransomchaos reclama a tomorrowsoffice.com · GB · Professional Servicesransomdark project reclama a Long-Lewis Automotive Group · US · Not Foundransomtriple x reclama a Henshaw Law · GB · Professional Servicesransomqilin reclama a Stade Francais · FR · Hospitalityransompayoutsking reclama a H****r · US · Not Foundransomdark project reclama a Mayco International · US · Manufacturingransomdark project reclama a Brainhunter Companies LLC. and Brainhunter Systems Ltd. · US · Professional Servicesransomdark project reclama a Leviton · US · Manufacturingransomdark project reclama a The Miller Group · GB · Other
CVE Watch355,789 in full archive

Vulnerabilities exploitable today

355,789in current view

Single score combining CVSS, KEV membership and EPSS. Every CVE with its own record — timeline from publication to active exploitation.

In KEV catalog1,660
New KEV · 24H0
Exploit Today ≥ 701,604

Distribution · last window

  • Critical
    2,756
  • High
    11,047
  • Medium
    7,302
  • Low
    703
Filters

Window

Severity

Flags

Vulnerabilities329,481–329,520 · 355,789
CVECVSSEPSSKEVRExploitTitleMod.
CVE-2026-15829
7.2%
2A SQL injection (CWE-89) and security boundary bypass (CWE-863) vulnerability exists in the prebuilt BigQuery forecasting tool (bigquery-forecast) of googleapis/mcp-toolbox. The tool accepts client-controlled parameters (data_col, timestamp_col, and id_cols) as plain strings and interpolates them unescaped via fmt.Sprintf directly into a generated AI.FORECAST table-valued SELECT statement. While MCP Toolbox utilizes an allowedDatasets mechanism to restrict queries, this defense only validates the history_data parameter; the final assembled query is executed without re-validation. An attacker can break out of the string literal fields (such as timestamp_col) to inject a valid multi-statement or cross-dataset query block. This allows an unauthorized user to bypass the operator-configured allowedDatasets boundary and read arbitrary BigQuery tables.14d
CVE-2026-27111
7.2%
2
CVE-2026-25901
7.2%
2
CVE-2023-540507.8 HIG
7.2%
2In the Linux kernel, the following vulnerability has been resolved: ubifs: Fix memleak when insert_old_idx() failed Following process will cause a memleak for copied up znode: dirty_cow_znode zn = copy_znode(c, znode); err = insert_old_idx(c, zbr->lnum, zbr->offs); if (unlikely(err)) return ERR_PTR(err); // No one refers to zn. Fetch a reproducer in [Link]. Function copy_znode() is split into 2 parts: resource allocation and znode replacement, insert_old_idx() is split in similar way, so resource cleanup could be done in error handling path without corrupting metadata(mem & disk). It's okay that old index inserting is put behind of add_idx_dirt(), old index is used in layout_leb_in_gaps(), so the two processes do not depend on each other.1d
CVE-2020-0116
7.2%
2
CVE-2024-36245
7.2%
2
CVE-2025-36132
7.2%
2
CVE-2022-50710
7.2%
2
CVE-2021-25692
7.2%
2
CVE-2024-58084
7.2%
2
CVE-2026-112744.3 MED
7.2%
2Inappropriate implementation in DOM Distiller in Google Chrome on iOS prior to 149.0.7827.53 allowed a remote attacker to bypass navigation restrictions via a crafted HTML page. (Chromium security severity: Low)14d
CVE-2026-33457
7.2%
2
CVE-2025-22300
7.2%
2
CVE-2026-33624
7.2%
2
CVE-2026-69247
7.2%
2cryptography is a package designed to expose cryptographic primitives and recipes to Python developers. From 44.0.0 until 50.0.0, pkcs7_decrypt_der, pkcs7_decrypt_pem, and pkcs7_decrypt_smime reported the outcome of decrypting a RecipientInfo's encryptedKey in several distinguishable ways, one of which disclosed the exact length recovered from the RSA operation. The same distinction was also observable by timing. An application that decrypts attacker-supplied EnvelopedData and reflects the outcome gives the attacker a Bleichenbacher oracle against the content-encryption key. Decryption ran as RSA PKCS#1 v1.5 decrypt of encryptedKey, build an AES cipher from the result, then AES-CBC decrypt and PKCS#7 unpad. Invalid RSA padding, a valid padding with a bad key length, a correct length with a wrong key, and the real key each failed or succeeded differently. Case 1 is reachable only where the linked library lacks implicit rejection: OpenSSL 3.0 and 3.1, LibreSSL, and BoringSSL. Exploitation requires a service that auto-decrypts untrusted EnvelopedData matching the victim certificate and answers adaptively at high volume, such as an S/MIME gateway or mail filter. This issue is fixed in 50.0.0.1d
CVE-2026-22895
7.2%
2
CVE-2026-180897.5 HIG
7.2%
2Net::SAML2 versions before 0.86 for Perl allow SAML authentication bypass by verifying responses against the response-embedded certificate in verify_xml when no trust anchor is configured. verify_xml in Net::SAML2::Role::VerifyXML runs "return if !$anchors && !$cacert;" as soon as the XML::Sig check succeeds, and that check uses the X.509 certificate taken from the response's own dsig:KeyInfo/dsig:X509Certificate element, so an unanchored response is checked only against the key it carries. Binding::POST declares cacert as an optional Maybe[Str] with no default, so a POST binding built without one takes that path, and _verify_encrypted_assertion returns early the same way with "return $xml unless $cacert;". Any caller that constructs Binding::POST or calls Assertion->new_from_xml without a cacert, cert_text, or anchors argument accepts a response signed by an attacker generated key whose self-signed certificate is embedded in that response, authenticating an arbitrary assertion.2d
CVE-2024-58082
7.2%
2
CVE-2022-50699
7.2%
2
CVE-2023-54229
7.2%
2
CVE-2022-41783
7.2%
2
CVE-2023-54311
7.2%
2
CVE-2025-11496
7.2%
2
CVE-2025-62313
7.2%
2
CVE-2025-8456
7.2%
2
CVE-2024-46704
7.2%
2
CVE-2024-4499
7.2%
2
CVE-2025-379217.8 HIG
7.2%
2In the Linux kernel, the following vulnerability has been resolved: vxlan: vnifilter: Fix unlocked deletion of default FDB entry When a VNI is deleted from a VXLAN device in 'vnifilter' mode, the FDB entry associated with the default remote (assuming one was configured) is deleted without holding the hash lock. This is wrong and will result in a warning [1] being generated by the lockdep annotation that was added by commit ebe642067455 ("vxlan: Create wrappers for FDB lookup"). Reproducer: # ip link add vx0 up type vxlan dstport 4789 external vnifilter local 192.0.2.1 # bridge vni add vni 10010 remote 198.51.100.1 dev vx0 # bridge vni del vni 10010 dev vx0 Fix by acquiring the hash lock before the deletion and releasing it afterwards. Blame the original commit that introduced the issue rather than the one that exposed it. [1] WARNING: CPU: 3 PID: 392 at drivers/net/vxlan/vxlan_core.c:417 vxlan_find_mac+0x17f/0x1a0 [...] RIP: 0010:vxlan_find_mac+0x17f/0x1a0 [...] Call Trace: <TASK> __vxlan_fdb_delete+0xbe/0x560 vxlan_vni_delete_group+0x2ba/0x940 vxlan_vni_del.isra.0+0x15f/0x580 vxlan_process_vni_filter+0x38b/0x7b0 vxlan_vnifilter_process+0x3bb/0x510 rtnetlink_rcv_msg+0x2f7/0xb70 netlink_rcv_skb+0x131/0x360 netlink_unicast+0x426/0x710 netlink_sendmsg+0x75a/0xc20 __sock_sendmsg+0xc1/0x150 ____sys_sendmsg+0x5aa/0x7b0 ___sys_sendmsg+0xfc/0x180 __sys_sendmsg+0x121/0x1b0 do_syscall_64+0xbb/0x1d0 entry_SYSCALL_64_after_hwframe+0x4b/0x537d
CVE-2025-14556
7.2%
2
CVE-2026-32386
7.2%
2
CVE-2025-2184
7.2%
2
CVE-2025-0003
7.2%
2
CVE-2026-466375.4 MED
7.2%
2Twig is a template language for PHP. Prior to 3.26.0, several filters in twig/markdown-extra and twig/cssinliner-extra are registered with is_safe => [all], causing Twig to treat plain text or HTML output as safe in HTML, JavaScript, CSS, URL, and other contexts where the output is not properly escaped. This issue is fixed in version 3.26.0.20d
CVE-2025-68029
7.2%
2
CVE-2025-68380
7.2%
2
CVE-2025-22301
7.2%
2
CVE-2023-54246
7.2%
2
CVE-2025-65230
7.2%
2
CVE-2025-21695
7.2%
2
CVE-2018-253875.3 MED
7.2%
2HaPe PKH 1.1 contains a cross-site request forgery vulnerability that allows attackers to change administrator passwords by submitting forged requests to the user update endpoint. Attackers can craft malicious forms targeting the aksi_user.php script with parameters like id_user, password, and level to modify admin credentials without authentication.15d