PULSE
LIVE14signals / 24h
FEED
ransomqilin reclama a Guntert & Zimmerman · CH · Manufacturingransomqilin reclama a Principle Diagnostics Laboratory · IN · Healthcareransommoneymessage reclama a Yourway Transportation · Transportationransomqilin reclama a GURR Abdichtungstechnik GmbH · DE · Manufacturingransomnova reclama a SistNet · IT · Not Foundransompayoutsking reclama a T****r · US · Technologyransomsecurotrop reclama a Advantage Sintered Metals · US · Manufacturingransomqilin reclama a GOP · GB · Otherransomnova reclama a Center Of Information Technologies In Finance Public Institution · Financial Servicesransomunsafe reclama a Jiva Health · IN · Healthcareransomsafepay reclama a upland.k12.ca.us · US · Educationransomsafepay reclama a gvsurgicalarts.com · US · Healthcareransomm3rx reclama a ausproof.com.au · AU · Professional Servicesransombooba project reclama a Zynex · CH · Healthcareransomqilin reclama a Guntert & Zimmerman · CH · Manufacturingransomqilin reclama a Principle Diagnostics Laboratory · IN · Healthcareransommoneymessage reclama a Yourway Transportation · Transportationransomqilin reclama a GURR Abdichtungstechnik GmbH · DE · Manufacturingransomnova reclama a SistNet · IT · Not Foundransompayoutsking reclama a T****r · US · Technologyransomsecurotrop reclama a Advantage Sintered Metals · US · Manufacturingransomqilin reclama a GOP · GB · Otherransomnova reclama a Center Of Information Technologies In Finance Public Institution · Financial Servicesransomunsafe reclama a Jiva Health · IN · Healthcareransomsafepay reclama a upland.k12.ca.us · US · Educationransomsafepay reclama a gvsurgicalarts.com · US · Healthcareransomm3rx reclama a ausproof.com.au · AU · Professional Servicesransombooba project reclama a Zynex · CH · Healthcare
CVE Watch352,772 in full archive

Vulnerabilities exploitable today

352,772in 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,653
New KEV · 24H0
Exploit Today ≥ 701,590

Distribution · last window

  • Critical
    2,281
  • High
    7,876
  • Medium
    7,167
  • Low
    676
Filters

Window

Severity

Flags

Vulnerabilities340,881–340,920 · 352,772
CVECVSSEPSSKEVRExploitTitleMod.
CVE-2023-53566
3.1%
1
CVE-2022-50904
3.1%
1
CVE-2024-34650
3.1%
1
CVE-2023-40094
3.1%
1
CVE-2026-41489
3.1%
1
CVE-2026-31627
3.1%
1
CVE-2025-14604
3.1%
1
CVE-2025-2068
3.1%
1
CVE-2026-21052
3.1%
1Path traversal in SemClipboardService prior to SMR Jul-2026 Release 1 allows local privileged attackers to access files with system privilege.11d
CVE-2025-48503
3.1%
1
CVE-2022-32592
3.1%
1
CVE-2024-43814
3.1%
1
CVE-2025-11565
3.1%
1
CVE-2026-430287.1 HIG
3.1%
1In the Linux kernel, the following vulnerability has been resolved: netfilter: x_tables: ensure names are nul-terminated Reject names that lack a \0 character before feeding them to functions that expect c-strings. Fixes tag is the most recent commit that needs this change.11d
CVE-2025-13143
3.1%
1
CVE-2026-530967.8 HIG
3.1%
1In the Linux kernel, the following vulnerability has been resolved: bpf: Use RCU-safe iteration in dev_map_redirect_multi() SKB path The DEVMAP_HASH branch in dev_map_redirect_multi() uses hlist_for_each_entry_safe() to iterate hash buckets, but this function runs under RCU protection (called from xdp_do_generic_redirect_map() in softirq context). Concurrent writers (__dev_map_hash_update_elem, dev_map_hash_delete_elem) modify the list using RCU primitives (hlist_add_head_rcu, hlist_del_rcu). hlist_for_each_entry_safe() performs plain pointer dereferences without rcu_dereference(), missing the acquire barrier needed to pair with writers' rcu_assign_pointer(). On weakly-ordered architectures (ARM64, POWER), a reader can observe a partially-constructed node. It also defeats CONFIG_PROVE_RCU lockdep validation and KCSAN data-race detection. Replace with hlist_for_each_entry_rcu() using rcu_read_lock_bh_held() as the lockdep condition, consistent with the rcu_dereference_check() used in the DEVMAP (non-hash) branch of the same functions. Also fix the same incorrect lockdep_is_held(&dtab->index_lock) condition in dev_map_enqueue_multi(), where the lock is not held either.4d
CVE-2026-234587.8 HIG
3.1%
1In the Linux kernel, the following vulnerability has been resolved: netfilter: ctnetlink: fix use-after-free in ctnetlink_dump_exp_ct() ctnetlink_dump_exp_ct() stores a conntrack pointer in cb->data for the netlink dump callback ctnetlink_exp_ct_dump_table(), but drops the conntrack reference immediately after netlink_dump_start(). When the dump spans multiple rounds, the second recvmsg() triggers the dump callback which dereferences the now-freed conntrack via nfct_help(ct), leading to a use-after-free on ct->ext. The bug is that the netlink_dump_control has no .start or .done callbacks to manage the conntrack reference across dump rounds. Other dump functions in the same file (e.g. ctnetlink_get_conntrack) properly use .start/.done callbacks for this purpose. Fix this by adding .start and .done callbacks that hold and release the conntrack reference for the duration of the dump, and move the nfct_help() call after the cb->args[0] early-return check in the dump callback to avoid dereferencing ct->ext unnecessarily. BUG: KASAN: slab-use-after-free in ctnetlink_exp_ct_dump_table+0x4f/0x2e0 Read of size 8 at addr ffff88810597ebf0 by task ctnetlink_poc/133 CPU: 1 UID: 0 PID: 133 Comm: ctnetlink_poc Not tainted 7.0.0-rc2+ #3 PREEMPTLAZY Call Trace: <TASK> ctnetlink_exp_ct_dump_table+0x4f/0x2e0 netlink_dump+0x333/0x880 netlink_recvmsg+0x3e2/0x4b0 ? aa_sk_perm+0x184/0x450 sock_recvmsg+0xde/0xf0 Allocated by task 133: kmem_cache_alloc_noprof+0x134/0x440 __nf_conntrack_alloc+0xa8/0x2b0 ctnetlink_create_conntrack+0xa1/0x900 ctnetlink_new_conntrack+0x3cf/0x7d0 nfnetlink_rcv_msg+0x48e/0x510 netlink_rcv_skb+0xc9/0x1f0 nfnetlink_rcv+0xdb/0x220 netlink_unicast+0x3ec/0x590 netlink_sendmsg+0x397/0x690 __sys_sendmsg+0xf4/0x180 Freed by task 0: slab_free_after_rcu_debug+0xad/0x1e0 rcu_core+0x5c3/0x9c014h
CVE-2020-0372
3.1%
1
CVE-2026-411547.8 HIG
3.1%
1Software installed and run as a non-privileged user may cause OOB kernel memory reads or writes through GPU API calls. When indexing pages larger than 4kB in the page freeing logic of the sparse memory implementation, incorrect buffer indexing leads to OOB access.12d
CVE-2026-32562
3.1%
1
CVE-2025-21827
3.1%
1
CVE-2021-0495
3.1%
1
CVE-2021-0494
3.1%
1
CVE-2026-31769
3.1%
1
CVE-2017-6288
3.1%
1
CVE-2022-38973
3.1%
1
CVE-2026-47242
3.1%
1
CVE-2024-34673
3.1%
1
CVE-2025-46367
3.1%
1
CVE-2023-33832
3.1%
1
CVE-2019-2345
3.1%
1
CVE-2025-13140
3.1%
1
CVE-2026-43166
3.1%
1
CVE-2026-20619
3.1%
1
CVE-2026-54639
3.1%
1
CVE-2023-28149
3.1%
1
CVE-2017-6287
3.1%
1
CVE-2026-44410
3.1%
1
CVE-2020-0290
3.1%
1
CVE-2026-477823.3 LOW
3.1%
1Android App "RoboForm Password Manager" provided by Siber Systems, Inc. handles Android intents without sufficient URL validation, user confirmation nor notification. If a URL to some malicious web page is given through an intent, RoboForm may silently download files without user confirmation nor notification.2d