24h | 7d | 30d

Overview

  • AWS
  • Amazon SSM Agent

10 Sep 2026
Published
10 Sep 2026
Updated

CVSS v3.1
CRITICAL (9.9)
EPSS
0.36%

KEV

Description

A server-side request forgery issue due to improper validation of equivalent address representations in the port forwarding to remote hosts functionality in Amazon AWS Systems Manager Agent (SSM Agent) before 3.3.4851.0 on all platforms might allow an authenticated remote user to bypass the remote destination denylist and reach link-local endpoints, potentially obtaining the temporary IAM role credentials of a managed instance and acting with that role's permissions from outside the instance, via a crafted destination host value that uses an alternate representation of a denied link-local address. To remediate this issue, users should upgrade to version 3.3.4851.0 or later.

Statistics

  • 1 Post

Last activity: 9 hours ago

Bluesky

Profile picture fallback
AWS SSM Agent の脆弱性(CVE-2026-89049) の被害があったかどうかを CloudTrail で確認する方法 https://zenn.dev/cscloud_blog/articles/4d6e13b853109e
  • 0
  • 0
  • 0
  • 9h ago

Overview

  • Linux
  • Linux

11 Sep 2026
Published
13 Sep 2026
Updated

CVSS v3.1
HIGH (7.8)
EPSS
0.16%

KEV

Description

In the Linux kernel, the following vulnerability has been resolved: wifi: rtl8xxxu: fix use-after-free from rx_urb_wq on stop rtl8xxxu arms rx_urb_wq from the RX completion path: rtl8xxxu_rx_complete() hands the URB to rtl8xxxu_queue_rx_urb(), which queues it on rx_urb_pending_list and, once the list grows past RTL8XXXU_RX_URB_PENDING_WATER, schedules rx_urb_wq. The worker rtl8xxxu_rx_urb_work() drains rx_urb_pending_list, recovers priv through container_of, and resubmits each URB through rtl8xxxu_submit_rx_urb(), which anchors it on rx_anchor and dereferences priv->udev. rtl8xxxu_stop() cancels the sibling work items (c2hcmd_work, ra_watchdog, update_beacon_work) but never cancels rx_urb_wq, so a worker armed during the last burst of RX traffic can run rtl8xxxu_rx_urb_work() after rtl8xxxu_disconnect() has called ieee80211_free_hw(), which frees priv, producing a use-after-free. The window opens under active RX traffic (pending count above the watermark) followed by a disconnect. There are two teardown races to close: * rtl8xxxu_queue_rx_urb() decided whether to enqueue under rx_urb_lock but called schedule_work() after dropping the lock. A completion that observed shutdown == false and released the lock could then call schedule_work() after rtl8xxxu_stop() had set shutdown and cancel_work_sync() had already returned, arming the worker to run after the teardown. Move schedule_work() under the same !shutdown branch so the arming decision is atomic with the shutdown check. * rtl8xxxu_rx_urb_work() anchors every URB it drained back onto rx_anchor through rtl8xxxu_submit_rx_urb(). A worker still running when usb_kill_anchored_urbs(&priv->rx_anchor) returned would submit a URB that escaped the kill. In rtl8xxxu_stop(), call cancel_work_sync(&priv->rx_urb_wq) before the kill so the worker is drained first. After priv->shutdown is set under rx_urb_lock, completions can no longer queue rx_urb_wq. cancel_work_sync() then drains the last queued or running worker, and the following usb_kill_anchored_urbs() kills the URBs it may have submitted. rtl8xxxu_disconnect() is covered because ieee80211_unregister_hw() guarantees .stop() runs for a live interface before ieee80211_free_hw() frees priv. The probe error path needs no cancel: rx_urb_wq is INIT_WORK()'d there but cannot have been scheduled, since no URB is submitted before ieee80211_register_hw() succeeds. This bug was found by static analysis.

Statistics

  • 1 Post

Last activity: 4 hours ago

Fediverse

Profile picture fallback

CVE-2026-80947 Linux kernel rtl8xxxu wifi driver use-after-free on stop, triggered via RX path. CVSS N/A, no patch yet. Update your kernel now. valtersit.com/cve/CVE-2026-809 #CVE #Linux #infosec

  • 0
  • 0
  • 0
  • 4h ago

Overview

  • Linux
  • Linux

11 Sep 2026
Published
14 Sep 2026
Updated

CVSS v3.1
HIGH (7.8)
EPSS
0.12%

KEV

Description

In the Linux kernel, the following vulnerability has been resolved: openvswitch: Fix CT limit teardown use-after-free Packet processing uses CT limit state under RCU, while netns teardown frees that state under ovs_mutex. The CT limit pointer was neither removed from readers nor protected by a grace period, allowing packet processing to dereference the freed state. An unprivileged user can trigger this bug from a user and network namespace, causing a slab-use-after-free in ovs_ct_execute() when the netns is torn down. Publish the CT limit pointer through RCU, remove it before teardown, and wait for readers before freeing its contents. Keep ovs_mutex around individual CT limit updates, and use the RCU read-side lock while GET traverses the RCU-protected limit lists. Netns teardown detaches the RCU-protected CT limit state in the pernet .pre_exit callback while holding ovs_mutex. The pernet core guarantees an RCU grace period between the .pre_exit and .exit callbacks, so the .exit callback completes the teardown without adding any extra synchronization. The netlink command handlers do not need NULL checks because the userspace netlink socket holds an active reference to its network namespace while a request is processed. The per-netns exit path therefore cannot run concurrently with SET, DEL, or GET for that socket's namespace.

Statistics

  • 1 Post

Last activity: 14 hours ago

Fediverse

Profile picture fallback

CVE-2026-89488: use-after-free in Linux openvswitch CT limit teardown. Unprivileged user can trigger slab-UAF in ovs_ct_execute(). CVSS N/A, no patch yet. Update immediately. valtersit.com/cve/CVE-2026-894 #CVE #Linux #infosec

  • 0
  • 0
  • 0
  • 14h ago

Overview

  • Linux
  • Linux

11 Sep 2026
Published
11 Sep 2026
Updated

CVSS
Pending
EPSS
0.20%

KEV

Description

In the Linux kernel, the following vulnerability has been resolved: sched_ext: Fix rq->core_pick corruption under core scheduling Core scheduling's pick_next_task() picks what to run on every SMT sibling of the core in a single pass under the shared core-wide rq lock. The selection state is consistent only while the lock is held continuously, so ->pick_task() originally could not release it. However, since 4c95380701f5 ("sched/ext: Fold balance_scx() into pick_task_scx()"), sched_ext runs dispatch from inside the pick and dispatching can drop the rq lock. To support this, pick_next_task() has been updated to restart the whole selection when a pick returns RETRY_TASK after releasing the lock. When selections on the same core interleave through the dropped lock, they corrupt each other's state: one clears the other's rq->core_pick leading to a NULL deref, or invalidates its keep-the-previous-task decision leaving a dequeued task running, which deadlocks the next wakeup and matches the reported hard hangs. A cookied ping-pong load on an SMT machine makes the interleavings frequent and kills the kernel within seconds. Fix it by making the pick return RETRY_TASK whenever dispatch released the rq lock, so that a selection only ever commits picks made under a continuously held lock. The previous patch's rq->scx.lock_drop_seq counts the releases. A dispatch that touched nothing never releases the lock and its verdict, including "nothing to run", stands: retries are bounded, each following a dispatch that actually did something, and an idle CPU does not loop. If another dispatch is already in flight on the rq, skip dispatching and pick from what is already queued locally - the in-flight dispatch has released the lock, so its own selection will retry and re-pick this rq, while returning RETRY_TASK here would only spin on the lock that dispatch needs to finish. Balance callbacks must run in the context that queued them, so they can only be queued on the CPU's own rq. When dispatching for another rq, run the deferred work directly instead - that rq may consume all its picks through the core-sched fast path and never queue the callback itself. The put_prev_task_scx() warning about a runnable task being left behind assumed that dispatch ran as part of the very pick that is switching away. That now only holds on the non-core path, so gate it and drop the cookie-match test, which is always true without core scheduling, from its condition.

Statistics

  • 1 Post

Last activity: 7 hours ago

Fediverse

Profile picture fallback

CVE-2026-89517 Linux kernel: sched_ext rq->core_pick corruption under core scheduling. CVSS N/A, patch status unknown. Kernel memory corruption risk. Patch now if a fix lands. valtersit.com/cve/CVE-2026-895 #CVE #Linux #infosec

  • 0
  • 0
  • 0
  • 7h ago

Overview

  • Microsoft Corporation
  • Windows SMB

17 Mar 2017
Published
14 Aug 2026
Updated

CVSS
Pending
EPSS
99.23%

Description

The SMBv1 server in Microsoft Windows Vista SP2; Windows Server 2008 SP2 and R2 SP1; Windows 7 SP1; Windows 8.1; Windows Server 2012 Gold and R2; Windows RT 8.1; and Windows 10 Gold, 1511, and 1607; and Windows Server 2016 allows remote attackers to execute arbitrary code via crafted packets, aka "Windows SMB Remote Code Execution Vulnerability." This vulnerability is different from those described in CVE-2017-0143, CVE-2017-0145, CVE-2017-0146, and CVE-2017-0148.

Statistics

  • 2 Posts

Last activity: 16 hours ago

Fediverse

Profile picture fallback

¿Qué es un CVE? ¿y por qué es clave en ciberseguridad?

«¿Alguna vez viste un código como CVE-2017-0144 y no entendiste nada? No te preocupes, no solo a ti te pasó»

Vía: Aleida Pérez (Tripledobleu)

youtube.com/watch?v=JNsv58IR1X4

  • 0
  • 0
  • 1
  • 16h ago

Overview

  • Linux
  • Linux

11 Sep 2026
Published
14 Sep 2026
Updated

CVSS v3.1
HIGH (8.4)
EPSS
0.14%

KEV

Description

In the Linux kernel, the following vulnerability has been resolved: regulator: as3722_get_regulator_dt_data: fix premature of_node_put leaving dangling of_node pointer In as3722_get_regulator_dt_data(), of_get_child_by_name() acquires a reference on np, which is then assigned to pdev->dev.of_node. The function immediately calls of_node_put(np), releasing the reference and leaving pdev->dev.of_node as a dangling pointer. Remove the of_node_put(np) call to let the device hold the reference.

Statistics

  • 1 Post

Last activity: 16 hours ago

Fediverse

Profile picture fallback

CVE-2026-89504 Linux kernel regulator as3722 use-after-free via premature of_node_put, dangling of_node pointer. CVSS N/A, no patch yet. Audit your kernels and apply fixes as soon as they land. valtersit.com/cve/CVE-2026-895 #CVE #Linux #infosec

  • 0
  • 0
  • 0
  • 16h ago

Overview

  • irontec
  • sngrep

12 Sep 2026
Published
14 Sep 2026
Updated

CVSS v4.0
CRITICAL (9.3)
EPSS
0.51%

KEV

Description

sngrep through 1.8.4 contains stack buffer overflow vulnerabilities in SIP attribute formatting routines when header values exceed the 255-byte buffer limit. Attackers can craft malicious SIP packets with oversized Call-ID, X-Call-ID, or other header fields to overflow stack buffers and cause crashes or execute arbitrary code during packet parsing and rendering.

Statistics

  • 1 Post

Last activity: 17 hours ago

Bluesky

Profile picture fallback
[Backport release-26.05] sngrep: 1.8.3 -> 1.8.4, fix CVE-2026-90558 https://github.com/NixOS/nixpkgs/pull/563160 https://tracker.security.nixos.org/issues/NIXPKGS-2026-2567 #security
  • 0
  • 0
  • 0
  • 17h ago

Overview

  • EFM
  • ipTIME C200E

15 Sep 2026
Published
15 Sep 2026
Updated

CVSS v4.0
CRITICAL (9.4)
EPSS
Pending

KEV

Description

A vulnerability was determined in EFM ipTIME C200E 1.094. The impacted element is an unknown function of the file iux_set.cgi of the component System Setup. This manipulation causes os command injection. It is possible to initiate the attack remotely. The exploit has been publicly disclosed and may be utilized.

Statistics

  • 1 Post

Last activity: 7 hours ago

Fediverse

Profile picture fallback

EFM ipTIME C200E v1.094 suffers CRITICAL OS command injection (CVE-2026-90847, CVSS 9.4) via iux_set.cgi. Remotely exploitable, public exploit available. Restrict device access and monitor. radar.offseq.com/threat/cve-20

  • 0
  • 0
  • 0
  • 7h ago

Overview

  • Linux
  • Linux

11 Sep 2026
Published
11 Sep 2026
Updated

CVSS
Pending
EPSS
0.17%

KEV

Description

In the Linux kernel, the following vulnerability has been resolved: timekeeping: Check the return value of tk_get_aux_ts64 in __do_adjtimex() If the auxiliary clock is disabled during tk_get_aux_ts64() but is enabled before tks->clock_valid is checked, then uninitialized stackdata will be used in the calculations and indirectly leaked to userspace. The same race window also exists after this change and also for the core timekeeper. But in these cases the only effect would be incorrect adjustments and this is userspace's responsibility to avoid this.

Statistics

  • 1 Post

Last activity: 3 hours ago

Fediverse

Profile picture fallback

CVE-2026-80927: Linux kernel timekeeping race leaks uninitialized stack data to userspace. CVSS N/A, patch status unknown. Update your kernel now. valtersit.com/cve/CVE-2026-809 #CVE #infosec #LinuxKernel

  • 0
  • 0
  • 0
  • 3h ago

Overview

  • Linux
  • Linux

11 Sep 2026
Published
11 Sep 2026
Updated

CVSS
Pending
EPSS
0.20%

KEV

Description

In the Linux kernel, the following vulnerability has been resolved: mfd: sm501: Fix potential memory leaks during remove The memory allocated for struct sm501_devdata in sm501_pci_probe() and sm501_plat_probe() is not freed by the corresponding remove functions sm501_pci_remove() and sm501_plat_remove(). Fix that by adding a call to kfree().

Statistics

  • 1 Post

Last activity: 19 hours ago

Fediverse

Profile picture fallback

CVE-2026-80974 Linux kernel sm501 mfd driver leaks memory on device removal. No CVSS assigned, patch status unknown. Update your kernel when a fix lands. Details: valtersit.com/cve/CVE-2026-809 #CVE #Linux #infosec

  • 0
  • 0
  • 0
  • 19h ago
Showing 21 to 30 of 84 CVEs