24h | 7d | 30d

Overview

  • Tenda
  • firmware

06 Jul 2026
Published
08 Jul 2026
Updated

CVSS
Pending
EPSS
0.67%

KEV

Description

The web server binary /bin/httpd contains a hidden backdoor authentication mechanism in the login() function at 004c88b8. - The function contains a normal authentication path using MD5/hash-based password verification (prod_encode64/PasswordToMd5/check_rand_key). - After normal authentication fails, it calls GetValue("sys.rzadmin.password") to read a backdoor password from the device configuration. - It performs a direct strcmp() comparison (plaintext, not hashed) between the config value and the user-supplied password. A successful match grants role=2 (admin-level access) and creates a valid session. The rzadmin username is never checked — any username works with the backdoor

Statistics

  • 1 Post

Last activity: 12 hours ago

Bluesky

Profile picture fallback
Unpatched Backdoor Identified in Firmware of Multiple Wi-Fi Routers #AuthenticationBypass #CVE202611405 #Cybersecurity
  • 0
  • 0
  • 0
  • 12h ago

Overview

  • CROMEDOME
  • Dancer2
  • Dancer2

20 Jul 2026
Published
20 Jul 2026
Updated

CVSS
Pending
EPSS
0.14%

KEV

Description

Dancer2 versions through 2.1.0 for Perl generate insecure session ids when CSPRNG modules are unavailable. Dancer2::Core::Role::SessionFactory::generate_id silently falls back to a built-in rand-derived session id when both Math::Random::ISAAC::XS and Crypt::URandom are unavailable. The fallback session id is generated from a SHA-1 hash of a call to the built-in rand function, the absolute path of the Dancer2::Core::Role::SessionFactory module, an internal counter, the process id, the module instance memory address, and a shuffled string of characters (using the List::Util::shuffle function, which also uses the built-in rand function). These are all low-entropy and easily guessed sources. The built-in rand() function is seeded with 32-bits and considered unsuitable for security applications. Predictable session ids could allow an attacker to gain access to systems.

Statistics

  • 1 Post

Last activity: 7 hours ago

Fediverse

Profile picture fallback

CVE-2026-13577 | HIGH severity in CROMEDOME Dancer2 ≤2.1.0: Predictable session IDs if CSPRNG modules are missing. Install Math::Random::ISAAC::XS/Crypt::URandom to mitigate. Full info: radar.offseq.com/threat/cve-20

  • 0
  • 0
  • 0
  • 7h ago

Overview

  • JCD
  • Windu CMS

20 Jul 2026
Published
20 Jul 2026
Updated

CVSS v4.0
CRITICAL (9.3)
EPSS
Pending

KEV

Description

A Blind SQL injection vulnerability has been identified in Windu CMS. A remote unauthenticated attacker is able to inject SQL syntax into URL path in HTTP header resulting in Blind SQL Injection. Because vendor contact attempts were unsuccessful, the vulnerability has only been confirmed in version 4.1 but may also affect other versions.

Statistics

  • 1 Post

Last activity: 5 hours ago

Fediverse

Profile picture fallback

CVE-2026-57309 (CRITICAL, CVSS 9.3): Windu CMS 4.1 suffers from a blind SQL injection via HTTP header URL path. No patch yet — restrict exposed endpoints and monitor for abnormal DB activity. Details: radar.offseq.com/threat/cve-20

  • 0
  • 0
  • 0
  • 5h ago

Overview

  • Apple
  • Safari

27 Jan 2025
Published
02 Apr 2026
Updated

CVSS
Pending
EPSS
0.71%

KEV

Description

A logging issue was addressed with improved data redaction. This issue is fixed in Safari 18.3, macOS Sequoia 15.3. A malicious app may be able to bypass browser extension authentication.

Statistics

  • 1 Post

Last activity: 22 hours ago

Bluesky

Profile picture fallback
Accessing sensitive Passwords app account data on macOS (CVE-2025-24169)
  • 0
  • 0
  • 0
  • 22h ago

Overview

  • Linux
  • Linux

01 Jul 2026
Published
18 Jul 2026
Updated

CVSS v3.1
HIGH (8.8)
EPSS
0.12%

KEV

Description

In the Linux kernel, the following vulnerability has been resolved: arm64: errata: Mitigate TLBI errata on various Arm CPUs A number of CPUs developed by Arm suffer from errata whereby a broadcast TLBI;DSB sequence may complete before the global observation of writes which are translated by an affected TLB entry. These errata ONLY affect the completion of memory accesses which have been translated by an invalidated TLB entry, and these errata DO NOT affect the actual invalidation of TLB entries. TLB entries are removed correctly. This issue has been assigned CVE ID CVE-2025-10263. To mitigate this issue, Arm recommends that software follows any affected TLBI;DSB sequence with an additional TLBI;DSB, which will ensure that all memory write effects affected by the first TLBI have been globally observed. The additional TLBI can use any operation that is broadcast to affected CPUs, and the additional DSB can use any option that is sufficient to complete the additional TLBI. The ARM64_WORKAROUND_REPEAT_TLBI workaround is sufficient to mitigate the issue. Enable this workaround for affected CPUs, and update the silicon errata documentation accordingly. Note that due to the manner in which Arm develops IP and tracks errata, some CPUs share a common erratum number.

Statistics

  • 1 Post
  • 2 Interactions

Last activity: 20 hours ago

Fediverse

Profile picture fallback

The Linux kernel security team announced 433 CVEs in under 7 hours today (2026-07-19 09:09-15:40 UTC) - how's your weekend going?

(Be aware that a kernel CVE can include anything that triggers a WARN_ON() - including where they are fixing a wrong check (eg CVE-2026-53345)  or is a kernel mitigation for hardware CVEs (eg CVE-2026-53354) , but that's still rather a lot to process)

lore.kernel.org/linux-cve-anno

#linux #security

  • 0
  • 2
  • 0
  • 20h ago

Overview

  • Linux
  • Linux

01 Jul 2026
Published
10 Jul 2026
Updated

CVSS
Pending
EPSS
0.16%

KEV

Description

In the Linux kernel, the following vulnerability has been resolved: KVM: Don't WARN if memory is dirtied without a vCPU when the VM is dying When marking a page dirty, complain about not having a running/loaded vCPU if and only if the VM is still alive, i.e. its refcount is non-zero. This will allow fixing a memory leak for x86 SEV-ES guests without hitting what is effectively a false positive on the WARN. For some SEV-ES VM-Exits, KVM keeps a writable mapping of a guest page across an exit to userspace, and typically unmaps the page on the next KVM_RUN. But if userspace never calls KVM_RUN after such an exit, then KVM needs to unmap the page when the vCPU is destroyed, which in turn triggers the WARN about not having a running vCPU. Alternatively, SEV-ES could temporarily load the vCPU to suppress the WARN, as is done in nested_vmx_free_vcpu() (but for completely unrelated reasons; suppressing WARN from nested_put_vmcs12_pages() is pure happenstance). But loading a vCPU during destruction is gross (ideally nVMX code would be cleaned up), risks complicating the SEV-ES code (KVM would need to ensure the temporarily load()+put() only runs when the vCPU isn't already loaded), and is ultimately pointless. The motivation for the WARN is to guard against KVM dirtying guest memory without pushing the corresponding GFN to the active vCPU's dirty ring, e.g. to ensure userspace doesn't miss a dirty page. But for the VM's refcount to reach zero, there can't be _any_ userspace mappings to the dirty ring, as mapping the dirty ring requires doing mmap() on the vCPU FD. I.e. if userspace had a valid mapping for the dirty ring, then the vCPU file and thus the owning VM would still be alive. And so since userspace can't possibly reach the dirty ring, whether or not KVM technically "misses" a push to the dirty ring is irrelevant.

Statistics

  • 1 Post
  • 2 Interactions

Last activity: 20 hours ago

Fediverse

Profile picture fallback

The Linux kernel security team announced 433 CVEs in under 7 hours today (2026-07-19 09:09-15:40 UTC) - how's your weekend going?

(Be aware that a kernel CVE can include anything that triggers a WARN_ON() - including where they are fixing a wrong check (eg CVE-2026-53345)  or is a kernel mitigation for hardware CVEs (eg CVE-2026-53354) , but that's still rather a lot to process)

lore.kernel.org/linux-cve-anno

#linux #security

  • 0
  • 2
  • 0
  • 20h ago

Overview

  • Pending

Pending
Published
Pending
Updated

CVSS
Pending
EPSS
Pending

KEV

Description

This candidate has been reserved by a CVE Numbering Authority (CNA). This record will be updated by the assigning CNA once details are available.

Statistics

  • 1 Post

Last activity: 8 hours ago

Fediverse

Profile picture fallback

CVE-2026-16242 (CRITICAL, CVSS 9.4) affects Red Hat Logging Subsystem for OpenShift: missing agent auth in Konnectivity proxy-server lets remote attackers intercept/control plane traffic. Restrict endpoint access & check radar.offseq.com/threat/cve-20

  • 0
  • 0
  • 0
  • 8h ago

Overview

  • ronf
  • asyncssh

08 Jul 2026
Published
10 Jul 2026
Updated

CVSS v3.1
MEDIUM (5.9)
EPSS
0.28%

KEV

Description

AsyncSSH is a Python package which provides an asynchronous client and server implementation of the SSHv2 protocol on top of the Python asyncio framework. Version 2.23.0 contains an incomplete fix for CVE-2026-45309 in SSHServerConfig._set_tokens that blocks /, , and .. before %u substitution in AuthorizedKeysFile but does not block a leading ~ or ${ENV}, allowing later expansion in _expand_val and Path(filename).expanduser() to escape the intended authorized-keys directory. This issue is fixed in version 2.23.1.

Statistics

  • 1 Post

Last activity: 9 hours ago

Bluesky

Profile picture fallback
🚨 ATENÇÃO admins Fedora 44! O python-asyncssh tem duas vulnerabilidades críticas (CVE-2026-54590 e CVE-2026-54591). Saiba mais :- > tinyurl.com/5ts4m4rt
  • 0
  • 0
  • 0
  • 9h ago

Overview

  • ronf
  • asyncssh

08 Jul 2026
Published
09 Jul 2026
Updated

CVSS v3.1
HIGH (8.1)
EPSS
0.32%

KEV

Description

AsyncSSH is a Python package which provides an asynchronous client and server implementation of the SSHv2 protocol on top of the Python asyncio framework. Prior to 2.23.1, a malicious SSH server can write arbitrary files on the asyncssh SCP client's filesystem by sending filenames containing ../ traversal sequences because _parse_cd_args in scp.py returns server-provided names verbatim and _recv_files joins them to the destination path without enforcing the target directory boundary. This issue is fixed in version 2.23.1.

Statistics

  • 1 Post

Last activity: 9 hours ago

Bluesky

Profile picture fallback
🚨 ATENÇÃO admins Fedora 44! O python-asyncssh tem duas vulnerabilidades críticas (CVE-2026-54590 e CVE-2026-54591). Saiba mais :- > tinyurl.com/5ts4m4rt
  • 0
  • 0
  • 0
  • 9h ago

Overview

  • Microsoft
  • Microsoft SharePoint Enterprise Server 2016

14 Jul 2026
Published
20 Jul 2026
Updated

CVSS v3.1
MEDIUM (5.3)
EPSS
5.60%

Description

Missing authentication for critical function in Microsoft Office SharePoint allows an unauthorized attacker to elevate privileges over a network.

Statistics

  • 1 Post

Last activity: 6 hours ago

Bluesky

Profile picture fallback
~Checkpoint~ Microsoft, WordPress, SonicWall patch actively exploited CVEs; Jscrambler npm supply chain attack steals credentials. - IOCs: CVE-2026-56164, CVE-2026-63030, CVE-2026-15409 - #Ransomware #ThreatIntel #Vuln
  • 0
  • 0
  • 0
  • 6h ago
Showing 31 to 40 of 40 CVEs