SecPod

Learn Search

Search across all Learn content

← Back to Security Research
What Attackers Actually Exploited: Lessons from 75 CISA KEVs in Q1 FY 2026–27

What Attackers Actually Exploited: Lessons from 75 CISA KEVs in Q1 FY 2026–27

Between April and June 2026, CISA added 75 vulnerabilities to its Known Exploited Vulnerabilities catalogue, flaws already confirmed in active use, not simply flaws with a high severity score. Here is what they targeted, why the same weaknesses kept working, and what defenders should do about it.

Aug 13, 2026By Santosh Sethuraman
Period: Apr 1 – Jun 30, 2026 Scope: 75 CISA KEV additions Dataset: CISA KEV Catalog
01
75
KEV additions, Q1
02
15
from Microsoft
03
7
from Cisco
04
14 / 75
Known ransomware use
01 - Key findings

What the quarter's exploited vulnerabilities reveal

Q1 FY 2026–27 showed that attackers do not care whether a vulnerability is new or attached to the highest CVSS score. They care whether it provides a reliable path into a valuable system. The 75 vulnerabilities CISA added to the Known Exploited Vulnerabilities (KEV) catalogue during the quarter ranged from current network-management and enterprise-platform flaws to Microsoft vulnerabilities dating back to 2008.

  • 75 vulnerabilities were added to the KEV catalogue during the quarter, 31 in April, 21 in May, and 23 in June.
  • Microsoft accounted for 15 additions and Cisco for 7, together representing nearly 30% of the quarter's total.
  • The quarter spanned network edge appliances, enterprise platforms, browsers, developer tooling, and vulnerabilities first disclosed as far back as 2008.
  • Authentication failures, uncontrolled file manipulation, and code or command injection repeatedly turned isolated bugs into full system compromise.
  • Only 14 of 75 entries are marked "Known" for ransomware use. "Unknown" does not mean ransomware has not used them, it means CISA has not yet classified that use. CISA's KEV catalogue is an authoritative record of vulnerabilities exploited in the wild, not a simple list of high-severity CVEs (CISA KEV Catalog).
Scope: this is a review of CVEs added to CISA KEV from April 1 through June 30, 2026—the first quarter of Indian FY 2026–27. It is not a list of CVEs published in that period, and it is not the differently scoped SecPod article “2026 First quarter attacker campaigns.” CISA supplies catalog status and remediation fields; vendor advisories supply product and exploitation detail; campaign links and ATT&CK mappings are explicitly identified as sourced reporting or analyst interpretation.
02 - The quarter in numbers

75 exploited vulnerabilities were added in three months

April was the busiest month, including a substantial set of legacy Microsoft and Adobe flaws alongside Cisco SD-WAN entries. May and June leaned more heavily toward current edge appliances and enterprise platforms.

MetricResult
Total KEV additions75
April31
May21
June23
Microsoft entries15
Cisco entries7
Known ransomware use14
Ransomware use unknown61

Treat knownRansomwareCampaignUse: Unknown as an absence of confirmed classification, not as evidence a vulnerability has never been used in a ransomware intrusion. CISA maintains separate resources describing how it labels ransomware-linked vulnerabilities and misconfigurations (CISA ransomware-linked vulnerability resources).

Source hierarchy used in this review: (1) CISA KEV for inclusion date, required action, ransomware field, and catalog description; (2) vendor advisories for affected products, prerequisites, fixed releases, and vendor-confirmed exploitation; (3) named security research for campaign behavior and IOCs. Where the article connects separate CVEs into a plausible chain, it labels that connection as analysis rather than a claim that every observed intrusion used the full chain.
03 - Unauthorized access

Authentication failures allowed attackers to enter without valid credentials

Seven of the quarter's entries share the same underlying failure: a system trusted a request it should have challenged. Whether the missing check was a signature verification, a session validation, or a request filter, the result was the same, an attacker skipped authentication entirely and landed inside a privileged context.

Unauthenticated request Authentication / authorization failure Privileged API, session, or function File operation, code execution, or takeover
Technical example
How CVE-2026-48558 bypassed SimpleHelp authentication
What is exposed?
SimpleHelp's remote-support platform when OIDC (OpenID Connect) authentication is configured, a standard enterprise single-sign-on flow.
Who can trigger it?
A remote, unauthenticated attacker.
What fails?
The login flow accepts the identity token submitted at login without verifying its cryptographic signature. Anyone can hand-craft a token, populate its claims with an arbitrary identity, and have it accepted as genuine.
What does the attacker gain?
A fully authenticated technician session, and in some configurations, a bypass of multi-factor authentication, since the forged assertion satisfies whatever the identity provider was expected to guarantee.
What should defenders verify?
Vendor-fixed build in place, OIDC configuration reviewed, and technician session logs checked for tokens with implausible or unexpected identity claims.

The lesson generalizes cleanly: a token, session, or credential is only as strong as the verification step behind it. Skipping signature validation, or omitting a check entirely, is functionally identical to having no authentication at all, the interface just looks like there is one.

Related authentication and authorization CVEs
CVEProductFailure
CVE-2026-35273Oracle PeopleSoft Enterprise PeopleToolsMissing authentication for a critical function allows unauthenticated takeover.
CVE-2026-20253Splunk EnterpriseMissing authentication on a PostgreSQL sidecar endpoint permits arbitrary file create/truncate.
CVE-2026-39987MarimoPre-authorization remote code execution, no login step required at all.
CVE-2023-27351PaperCut NG/MFSecurityRequestFilter bypass allows unauthenticated attackers around the login check.
CVE-2025-32975Quest KACE SMAImproper authentication allows impersonation of legitimate users without valid credentials.
CVE-2024-57726SimpleHelpMissing authorization lets low-privilege technicians mint API keys with server-admin reach.
Evidence from active exploitation
Windchill and PeopleSoft show why patching alone may not remove a compromise

PTC Windchill (CVE-2026-12569) provides the quarter's clearest public trail from exploitation to persistence. PTC repeatedly expanded its indicators as operators rotated infrastructure and JSP web-shell names. High-signal artifacts included POST requests to /Windchill/login/*.jsp, six- or sixteen-character hexadecimal JSP filenames, the non-standard X-windchill-req header, and flst.txt in temporary or Windchill working directories.

Probe exposed application Pre-auth execution Write JSP web shell Command and file discovery

Oracle PeopleSoft (CVE-2026-35273) illustrates the data consequence. Oracle confirms remotely exploitable, unauthenticated RCE in PeopleTools 8.61 and 8.62; public incident analysis connected exploitation to data theft and extortion. Defenders should preserve pre-patch HTTP and application logs, review abnormal bulk access, and rotate secrets reachable by the PeopleSoft service.

Evidence standard: public reporting can identify sustained activity, campaign behavior, or reported victims, but CISA KEV does not publish comparable attack counts. These are the most campaign-significant cases with strong public evidence—not a numerical ranking of exploitation volume. Sources: PTC incident updates and Oracle Security Alert.

04 - Unsafe file handling

File-handling flaws allowed attackers to alter or take over systems

Nine entries this quarter involve path traversal, arbitrary upload, symlink abuse, or file-overwrite conditions. Calling these "path traversal" bugs understates the outcome, what actually matters is what the attacker can do once a file lands in the wrong place. The real severity depends on which directories are reachable, what privilege owns the written file, and whether that file happens to be a startup script, a configuration file, or an executable.

Path control Arbitrary file write Executable / configuration overwrite Code execution
Technical example
How CVE-2026-20262 allowed files to be created or overwritten
What is exposed?
The Catalyst SD-WAN Manager filesystem, reachable through an authenticated management interface.
Who can trigger it?
An authenticated, remote attacker, no special privilege beyond a valid session.
What fails?
Insufficient validation of file-path input lets requested paths escape the intended directory scope.
What does the attacker gain?
The ability to create a file or overwrite any file on the underlying filesystem, a primitive that can reach startup scripts, cron entries, or service binaries.
What should defenders verify?
Patched build installed, integrity of configuration and startup paths, and audit logs for file operations from unexpected sessions.
Related path, upload, and file-manipulation CVEs
CVEProductFailure
CVE-2026-20122Cisco Catalyst SD-WAN ManagerImproper file handling on an API interface allows arbitrary file overwrite and vmanage privileges.
CVE-2024-7399Samsung MagicINFO 9 ServerPath traversal allows arbitrary file writes with system authority.
CVE-2024-57728SimpleHelpZip-slip path traversal on file upload leads to code execution as the server user.
CVE-2025-2749Kentico XperienceStaging Sync Server path traversal allows arbitrary data upload to relative locations.
CVE-2024-27199JetBrains TeamCityRelative path traversal enables limited administrative actions.
CVE-2026-54420LiteSpeed cPanel PluginSymlink-following on shared hosting enables cross-account file access.
CVE-2024-1708ConnectWise ScreenConnectPath traversal enables remote code execution and direct impact to critical systems.
05 - Code and command execution

Unsafe input allowed attackers to run code and system commands

Command injection, SQL injection, and unsafe deserialization each let an attacker's input do more than the application designer intended, the difference is what that input controls once it reaches its destination.

Technical example
How CVE-2026-10520 enabled root-level command execution
What is exposed?
Ivanti Sentry (formerly MobileIron Sentry) appliances left in an unmanaged state with endpoints externally reachable.
Who can trigger it?
A remote, unauthenticated attacker.
What fails?
Attacker-controlled input reaches an OS command execution path without adequate sanitization.
What does the attacker gain?
Root-level remote code execution. The vendor notes exposure is reduced where mTLS with EPMM, or restricted HTTPS access through Neurons for MDM, keeps the interface unreachable externally.
What should defenders verify?
Patch applied, appliance managed (not standalone/unmanaged), and mTLS or access restrictions enforced on the interface.

How different input flaws lead to system compromise

PrimitiveAttacker controlsTypical consequence
Command injectionShell / OS command fragmentsHost-level command execution
SQL injectionDatabase query structureData access, authentication bypass, or code execution
DeserializationObject graph / serialized payloadUnexpected method execution, often full RCE
Code injectionInterpreted or compiled instructionsDirect arbitrary code execution
Related injection and deserialization CVEs
CVEProductPrimitive
CVE-2025-67038Lantronix EDS5000OS command injection via the username parameter, executed as root.
CVE-2026-42271BerriAI LiteLLMCommand injection reachable by any authenticated key, including low-privilege ones.
CVE-2026-42208BerriAI LiteLLMSQL injection exposes the proxy database and the credentials it manages.
CVE-2026-21643Fortinet FortiClient EMSSQL injection permits unauthorized code or command execution.
CVE-2026-9082Drupal CoreSQL injection via the database abstraction API enables privilege escalation and RCE.
CVE-2026-34197Apache ActiveMQImproper input validation enables code injection.
CVE-2026-12569PTC Windchill / FlexPLMImproper input validation allows unauthenticated remote code execution.
CVE-2023-21529Microsoft Exchange ServerDeserialization of untrusted data enables authenticated remote code execution.
CVE-2026-45247Mirasvit Full Page Cache WarmerDeserialization of a crafted PHP object in a cookie yields unauthenticated RCE.
06 - Network security systems

Attackers targeted systems that control access to the network

Nine product families in this quarter's KEV batch sit at network boundaries or hold privileged administrative roles: Cisco Catalyst SD-WAN Manager, Palo Alto PAN-OS, Ivanti EPMM and Sentry, Fortinet FortiClient EMS, Ubiquiti UniFi OS, Check Point Security Gateway, D-Link DIR-823X, Arista EOS, and Cisco Unified CM. The interesting insight isn't that these products had vulnerabilities, it's that they routinely combine external or broad network reachability, high system privileges, access to management networks, valuable stored credentials and configuration, and comparatively thin endpoint monitoring relative to ordinary servers.

Six Cisco SD-WAN vulnerabilities exposed several paths to control

Six separate CVEs against the SD-WAN Manager product line landed in KEV this quarter. Individually each looks modest; together they sketch a full attack surface across authentication, file handling, credential storage, and information disclosure.

CVE-2026-20182Authentication bypass, unauthenticated attacker obtains administrative privileges on the controller/manager.
CVE-2026-20262Directory traversal, authenticated attacker creates or overwrites arbitrary files.
CVE-2026-20122Privileged API misuse, malicious file upload overwrites system files, escalating to vmanage privileges.
CVE-2026-20133Sensitive information exposure, remote attackers view data they should not have access to.
CVE-2026-20128Recoverable password storage, local low-privilege user reaches a DCA credential file and escalates.
CVE-2026-20245Output encoding failure, authenticated local attacker executes commands as root via a crafted file.

Chained in the order an attacker would prefer, bypass authentication, escalate through file or credential handling, then execute as root, this cluster illustrates why CISA issued dedicated hunt-and-hardening guidance for Cisco SD-WAN systems rather than treating each CVE as an isolated patch item.

How the vulnerabilities could be chained
From authentication bypass to root access with CVE-2026-20182 and CVE-2026-20245
Reach peering service Bypass authentication Obtain netadmin context Upload crafted file Execute commands as root

Cisco states that CVE-2026-20245 requires netadmin privileges obtained through credentials or exploitation of CVE-2026-20182/CVE-2026-20127. Cisco observed limited cases in which the chain produced configuration changes on edge devices. Preserve controller diagnostics before upgrading; then review peer activity, administrator access, uploaded files, SSH keys, NETCONF actions, and configuration pushed outside approved windows.

ATT&CK tacticTechniqueObservable use
Initial AccessT1190, Exploit Public-Facing ApplicationAuthentication bypass against reachable SD-WAN control services
Privilege EscalationT1068, Exploitation for Privilege EscalationCrafted-file path converts privileged access into root execution
PersistenceT1098, Account ManipulationUnexpected administrative identities or SSH keys
Impact / ControlT1562.001, Impair DefensesUnauthorized control-plane and edge configuration changes

Technique mappings describe defensible analyst-level relationships; they do not claim that every victim exhibited every behavior. Source: Cisco's CVE-2026-20245 advisory.

Other edge and boundary systems in scope
CVEProductWhy the edge position matters
CVE-2026-0257Palo Alto PAN-OSAuthentication bypass enables an unauthorized VPN connection into the trusted network.
CVE-2026-0300Palo Alto PAN-OSOut-of-bounds write in the User-ID Captive Portal gives root RCE on internet-facing firewalls.
CVE-2026-6973Ivanti EPMMAdministrative-context input validation flaw reaches remote code execution.
CVE-2026-1340Ivanti EPMMCode injection allows unauthenticated RCE on mobile device management infrastructure.
CVE-2026-21643 / CVE-2026-35616Fortinet FortiClient EMSSQL injection and access-control failures both reach unauthorized command execution.
CVE-2026-3490834910Ubiquiti UniFi OSAccess control, path traversal, and command injection flaws on network-management infrastructure.
CVE-2026-50751Check Point Security GatewayIKEv1 authentication bypass allows a passwordless remote-access VPN session.
CVE-2025-29635D-Link DIR-823XCommand injection on an end-of-life consumer router still in active use.
CVE-2026-7473Arista EOSIncomplete tunnel-decapsulation comparison lets unexpected traffic reach the switch's decapsulation path.
CVE-2026-20230Cisco Unified CMServer-side request forgery lets an unauthenticated attacker write OS files, a stepping stone toward root.
07 - Long-standing vulnerabilities

Older vulnerabilities remained useful to attackers

This is probably the quarter's strongest narrative hook. Ten of the 75 additions were originally disclosed years, in several cases well over a decade, before they were added to KEV in Q1 FY 2026–27. That gap matters because it separates four dates that are easy to conflate: when a CVE was first published, when the vendor shipped a patch, when CISA added it to KEV, and when exploitation was actually observed. A vulnerability can sit quietly for years and then reappear as an active threat the moment legacy software, delayed patching, or reusable public exploit code puts it back in front of attackers.

Older CVEs added during the quarter
CVEProductOriginal disclosure era
CVE-2008-4250Microsoft Windows Server service2008, buffer overflow via crafted RPC request
CVE-2009-0238Microsoft Office Excel2009, remote code execution via malformed object
CVE-2009-1537Microsoft DirectX / DirectShow2009, NULL byte overwrite via crafted QuickTime file
CVE-2009-3459Adobe Acrobat and Reader2009, heap-based buffer overflow via crafted PDF
CVE-2010-0249Microsoft Internet Explorer2010, use-after-free (end-of-life product)
CVE-2010-0806Microsoft Internet Explorer2010, use-after-free (end-of-life product)
CVE-2012-1854Microsoft Visual Basic for Applications2012, insecure library loading
CVE-2020-9715Adobe Acrobat2020, use-after-free enabling code execution
CVE-2022-0492Linux Kernel2022, cgroups v1 release_agent privilege escalation
CVE-2023-21529Microsoft Exchange Server2023, deserialization enabling authenticated RCE

The takeaway is not that these products are inherently insecure today, most have long since been patched by vendors. It's that vulnerability age is not a useful proxy for operational risk. Wherever legacy software, unmanaged appliances, or unpatched end-of-life systems remain reachable, a fifteen-year-old bug is exactly as dangerous as a brand-new one.

08 - Recommended response

How defenders should prioritize and respond

Q1's KEV additions reveal that attackers repeatedly win through three transitions: unauthenticated access to privileged functionality, attacker-controlled input to code execution, and file-system access to full system compromise.
  1. 1
    Inventory by product and exposure. Find every affected edge, remote-management, developer, and enterprise platform in your environment, not just the ones that made headlines.
  2. 2
    Prioritize KEV presence first. KEV membership indicates observed exploitation; use CVSS to understand severity, not as the sole queueing mechanism.
  3. 3
    Identify the exploitation primitive. Authentication bypass, arbitrary file write, and command execution each require a different hunting strategy, map the CVE to its primitive before you hunt.
  4. 4
    Patch or isolate. Remove public reachability when remediation cannot be completed promptly, especially for edge and remote-management products.
  5. 5
    Hunt for compromise. Patching closes the vulnerability but does not remove an existing web shell, stolen credential, or persistence mechanism already planted through it.
  6. 6
    Validate the fix. Confirm the actual installed build and test that the vulnerable behavior is no longer reachable, don't rely on a changelog alone.

CISA's Binding Operational Directive establishes KEV remediation as a priority for U.S. federal civilian agencies and recommends the catalogue as an input to vulnerability-management prioritization more broadly (CISA BOD 22-01).

09 - Complete CVE list

All 75 CVEs added during Q1 FY 2026–27

Every CVE added to CISA KEV during the quarter, one line each. Click a CVE ID to view its detail page.

CVEVendorProductAttack prerequisiteExploitation primitiveMaximum outcomeRansomware
CVE-2026-48558 SimpleHelp SimpleHelp Unauth; OIDC auth enabled Forged OIDC identity token Technician session / MFA bypass Unknown
CVE-2026-12569 PTC Windchill / FlexPLM Unauthenticated, network access Improper input validation (deserialization) Remote code execution Known
CVE-2026-20230 Cisco Unified CM / Unified CM SME Unauthenticated, remote Server-side request forgery OS file write; path to root Unknown
CVE-2025-67038 Lantronix EDS5000 Network access to device OS command injection via username field Root-level command execution Unknown
CVE-2026-34910 Ubiquiti UniFi OS Network access Improper input validation Command injection Unknown
CVE-2026-34909 Ubiquiti UniFi OS Network access Path traversal File access; account manipulation Unknown
CVE-2026-34908 Ubiquiti UniFi OS Network access Improper access control Unauthorized system changes Unknown
CVE-2026-20253 Splunk Enterprise Unauthenticated Missing authentication on PostgreSQL sidecar endpoint Arbitrary file create/truncate Unknown
CVE-2026-48907 Widget Factory Joomla Content Editor Unauthenticated Improper access control on editor profiles PHP upload and execution Unknown
CVE-2026-54420 LiteSpeed cPanel Plugin FTP or web-shell access on CloudLinux/CageFS host Symlink (symlink-following) abuse Cross-account file access Unknown
CVE-2026-20262 Cisco Catalyst SD-WAN Manager Authenticated, remote Directory / path traversal Arbitrary file create/overwrite Unknown
CVE-2026-35273 Oracle PeopleSoft Enterprise PeopleTools Unauthenticated Missing authentication for critical function Full application takeover Known
CVE-2026-10520 Ivanti Sentry Unauthenticated; unmanaged, externally reachable appliance OS command injection Root remote code execution Unknown
CVE-2026-11645 Google Chromium V8 Victim opens crafted HTML page Out-of-bounds read/write in V8 Sandboxed code execution Unknown
CVE-2026-7473 Arista EOS (Extensible OS) Network access; tunnel decapsulation path Incomplete comparison with missing factors Unexpected tunneled-packet forwarding Unknown
CVE-2026-20245 Cisco Catalyst SD-WAN Manager Authenticated, local Improper encoding/escaping of output Root command execution via crafted file Unknown
CVE-2026-42271 BerriAI LiteLLM Authenticated (any key, incl. low-privilege) Command injection Arbitrary host command execution Unknown
CVE-2026-50751 Check Point Security Gateway Unauthenticated; deprecated IKEv1 enabled Improper authentication in IKEv1 key exchange Passwordless VPN session Known
CVE-2026-28318 SolarWinds Serv-U Unauthenticated Uncontrolled resource consumption (crafted deflate POST) Service crash / denial of service Unknown
CVE-2026-45247 Mirasvit Full Page Cache Warmer Unauthenticated Deserialization of untrusted PHP object (cookie) Remote code execution Unknown
CVE-2022-0492 Linux Kernel Local access; cgroups v1 in use Improper authentication in release_agent feature Local privilege escalation Unknown
CVE-2025-48595 Android Framework Local access Integer overflow Local privilege escalation Unknown
CVE-2024-21182 Oracle WebLogic Server Unauthenticated; network access via T3/IIOP Unspecified deserialization-adjacent flaw Full server compromise Unknown
CVE-2026-0257 Palo Alto Networks PAN-OS Remote Authentication bypass Unauthorized VPN connection Known
CVE-2026-48027 Nx Nx Console (VS Code extension) Victim installs compromised extension version Embedded malicious code / supply-chain compromise Credential harvesting from disk and memory Known
CVE-2026-45321 TanStack TanStack (npm packages) Victim installs compromised package version Compromised publishing / malicious npm release Credential-stealing malware execution Known
CVE-2026-8398 Daemon Daemon Tools Lite Victim installs compromised installer/update Embedded malicious code High impact to confidentiality, integrity, availability Unknown
CVE-2026-48172 LiteSpeed cPanel Plugin Any authenticated cPanel user Privilege escalation via user-end plugin Arbitrary script execution as root Unknown
CVE-2026-9082 Drupal Core Remote, crafted request to database API SQL injection Privilege escalation / remote code execution Unknown
CVE-2025-34291 Langflow Langflow Victim browses malicious page (CORS + SameSite=None cookie) Origin validation error (CSRF-style token theft) Token theft; authenticated RCE Unknown
CVE-2026-34926 Trend Micro Apex One (on-premise) Pre-authenticated, local attacker Directory traversal (key table modification) Malicious code injected into agent deployments Unknown
CVE-2008-4250 Microsoft Windows (Server service) Unauthenticated, remote Buffer overflow via crafted RPC / path canonicalization Remote code execution Unknown
CVE-2009-1537 Microsoft DirectX (DirectShow / quartz.dll) Victim opens crafted QuickTime media NULL byte overwrite Remote code execution Unknown
CVE-2009-3459 Adobe Acrobat and Reader Victim opens crafted PDF Heap-based buffer overflow Remote code execution Unknown
CVE-2010-0249 Microsoft Internet Explorer Victim browses crafted page (EoL product) Use-after-free Remote code execution Unknown
CVE-2010-0806 Microsoft Internet Explorer Victim browses crafted page (EoL product) Use-after-free Remote code execution Unknown
CVE-2026-41091 Microsoft Defender Local, authorized attacker Link following Local privilege escalation Unknown
CVE-2026-45498 Microsoft Defender Remote/local (unspecified) Unspecified flaw Denial of service Unknown
CVE-2026-42897 Microsoft Exchange Server Specific user interaction in OWA Cross-site scripting Arbitrary JavaScript in browser context Unknown
CVE-2026-20182 Cisco Catalyst SD-WAN Controller & Manager Unauthenticated, remote Authentication bypass Administrative privileges on controller/manager Unknown
CVE-2026-42208 BerriAI LiteLLM Authenticated SQL injection Database read/write; credential exposure Unknown
CVE-2026-6973 Ivanti Endpoint Manager Mobile (EPMM) Authenticated, administrative access Improper input validation Remote code execution Unknown
CVE-2026-0300 Palo Alto Networks PAN-OS Unauthenticated; User-ID Captive Portal exposed Out-of-bounds write Root code execution via crafted packets Unknown
CVE-2026-31431 Linux Kernel Local access Incorrect resource transfer between spheres Local privilege escalation Unknown
CVE-2026-41940 WebPros cPanel & WHM / WP2 Unauthenticated, remote Missing authentication in login flow Unauthorized control-panel access Known
CVE-2024-1708 ConnectWise ScreenConnect Remote Path traversal Remote code execution; data compromise Known
CVE-2026-32202 Microsoft Windows Shell Unauthenticated, network Protection mechanism failure Spoofing over a network Unknown
CVE-2025-29635 D-Link DIR-823X (EoL) Authorized attacker, network access Command injection via /goform/set_prohibiting Arbitrary command execution on device Unknown
CVE-2024-7399 Samsung MagicINFO 9 Server Remote Path traversal Arbitrary file write as system authority Unknown
CVE-2024-57728 SimpleHelp SimpleHelp Admin-level access Path traversal / zip-slip on file upload Arbitrary code execution as server user Known
CVE-2024-57726 SimpleHelp SimpleHelp Low-privileged technician account Missing authorization on API-key creation Escalation to server admin role Known
CVE-2026-39987 Marimo Marimo Unauthenticated Pre-authorization remote code execution Shell access; arbitrary command execution Unknown
CVE-2026-33825 Microsoft Defender Local, authorized attacker Insufficient granularity of access control Local privilege escalation Known
CVE-2026-20122 Cisco Catalyst SD-WAN Manager Attacker with API access Incorrect use of privileged APIs (file handling) Arbitrary file overwrite; vmanage privileges Unknown
CVE-2026-20133 Cisco Catalyst SD-WAN Manager Remote attacker Exposure of sensitive information Disclosure of sensitive system data Unknown
CVE-2025-2749 Kentico Xperience Authenticated (Staging Sync Server) Path traversal on file upload Arbitrary data upload to relative paths Unknown
CVE-2023-27351 PaperCut NG/MF Unauthenticated, remote Improper authentication (SecurityRequestFilter bypass) Authentication bypass; admin access Known
CVE-2025-48700 Synacor Zimbra Collaboration Suite Victim interaction Cross-site scripting Arbitrary JavaScript in user session Unknown
CVE-2026-20128 Cisco Catalyst SD-WAN Manager Authenticated, local, low-privileged Storing passwords in recoverable format Escalation to DCA user privileges Unknown
CVE-2025-32975 Quest KACE Systems Management Appliance Remote Improper authentication User impersonation without valid credentials Unknown
CVE-2024-27199 JetBrains TeamCity Remote Relative path traversal Limited administrative actions Known
CVE-2026-34197 Apache ActiveMQ Remote Improper input validation Code injection Unknown
CVE-2009-0238 Microsoft Office (Excel) Victim opens crafted Excel file Malformed object parsing flaw Remote code execution Unknown
CVE-2026-32201 Microsoft SharePoint Server Unauthorized, network Improper input validation Spoofing over a network Unknown
CVE-2012-1854 Microsoft Visual Basic for Applications Victim opens crafted document (EoL loading path) Insecure library loading (DLL search-order) Remote code execution Unknown
CVE-2025-60710 Microsoft Windows Local Link following Local privilege escalation Unknown
CVE-2023-21529 Microsoft Exchange Server Authenticated Deserialization of untrusted data Remote code execution Known
CVE-2023-36424 Microsoft Windows (Common Log File System driver) Local Out-of-bounds read Local privilege escalation Unknown
CVE-2020-9715 Adobe Acrobat Victim opens crafted PDF Use-after-free Code execution Unknown
CVE-2026-21643 Fortinet FortiClient EMS Unauthenticated, crafted HTTP request SQL injection Unauthorized code/command execution Unknown
CVE-2026-34621 Adobe Acrobat and Reader Victim opens crafted file Prototype pollution Arbitrary code execution Unknown
CVE-2026-1340 Ivanti Endpoint Manager Mobile (EPMM) Unauthenticated Code injection Remote code execution Unknown
CVE-2026-35616 Fortinet FortiClient EMS Unauthenticated, crafted requests Improper access control Unauthorized code/command execution Unknown
CVE-2026-3502 TrueConf Client Attacker controls update delivery path Download of code without integrity check Arbitrary code execution via tampered update Unknown
CVE-2026-5281 Google Dawn (Chromium graphics) Victim browses crafted page; renderer already compromised Use-after-free Arbitrary code execution Unknown

Featured Posts

Open Operation CameraSwarm: Inside the Toolkit Behind 14,530 Compromised Dahua Cameras
Operation CameraSwarm: Inside the Toolkit Behind 14,530 Compromised Dahua Cameras

CVE Research

Operation CameraSwarm: Inside the Toolkit Behind 14,530 Compromised Dahua Cameras

A single operator compromised 14,530+ Dahua cameras across Ukraine and Russia in 35 days, chaining credential brute-force, a CVE-2021-33044/33045 authentication bypass, and P2P relay abuse to plant a persistent backdoor and harvest transferable admin access.

Aug 21, 2026

Open Critical GitLab Flaw Exposes Public Projects to Deletion — Two CVEs Patched, Including High-Severity CSRF
Critical GitLab Flaw Exposes Public Projects to Deletion — Two CVEs Patched, Including High-Severity CSRF

CVE Research

Critical GitLab Flaw Exposes Public Projects to Deletion — Two CVEs Patched, Including High-Severity CSRF

CVE-2026-19478 is a critical code injection vulnerability in GitLab CE/EE that allows an unauthenticated attacker to modify or delete public projects and user data by abusing a GraphQL directive. A second high-severity issue, CVE-2026-19650, involves cross-site request forgery in the GraphQL multiplex query handler. This article examines how the critical vulnerability works, the availability of a public proof-of-concept, the potential impact on self-managed instances, the affected versions, and the security updates released to remediate both issues.

Aug 19, 2026

Open No Password Needed: macOS Screen Sharing Flaw (CVE-2026-65400) Used to Deploy Monero Miners
No Password Needed: macOS Screen Sharing Flaw (CVE-2026-65400) Used to Deploy Monero Miners

CVE Research

No Password Needed: macOS Screen Sharing Flaw (CVE-2026-65400) Used to Deploy Monero Miners

Aug 19, 2026

Open Evooo1Bot: Mirai-Based Linux Botnet Turns Edge Devices Into SOCKS5 Proxies
Evooo1Bot: Mirai-Based Linux Botnet Turns Edge Devices Into SOCKS5 Proxies

CVE Research

Evooo1Bot: Mirai-Based Linux Botnet Turns Edge Devices Into SOCKS5 Proxies

Aug 19, 2026