<feed xmlns="http://www.w3.org/2005/Atom">
  <title>Beazley Security Labs Advisories</title>
  <link href="https://labs.beazley.security/advisories" rel="alternate"/>
  <id>https://labs.beazley.security/advisories</id>
  <updated>Tue, 11 Aug 2026 22:00:00 GMT</updated>

  <entry><title>Metabase SQL Injection Actively Exploited in the Wild (CVE-2026-70468)</title><link href="https://labs.beazley.security/advisories/BSL-A1198" rel="alternate"/><updated>2026-08-11T22:00:00.000Z</updated><published>2026-08-11T22:00:00.000Z</published><id>https://labs.beazley.security/advisories/BSL-A1198</id><content type="html"><![CDATA[<div class="rtf"><h3 class="rtf-title">Executive Summary</h3><p>On August 10<sup>th</sup>,<sup> </sup>2026, Metabase announced in a security advisory that they had been targeted in the wild with an undisclosed vulnerability. In the advisory, they identified a critical SQL injection vulnerability within their product and released patches, urging their users to upgrade. On August 11<sup>th</sup>, CISA confirmed active exploitation, adding the vulnerability to its Known Exploited Vulnerabilities (KEV) catalog. </p><p>Tracked as CVE-2026-72898, the flaw allows a remote unauthenticated attacker to inject arbitrary SQL into Metabase’s internal application database via the password reset API endpoint, allowing full administrator access without any credentials. </p><p>Metabase is an open-source business intelligence platform where organizations connect directly to production databases and data warehouses to build dashboards and run analytics. Because Metabase instances hold credentials to these data stores, an attacker who exploits this endpoint has potential to pivot into an organization’s backend systems. </p><p>Metabase confirmed the vulnerability was exploited against its own Metabase Cloud service prior to public disclosure, and several self-hosted customers have since reported being impacted by the same flaw. Given the active exploitation and the sensitive data often accessible through Metabase deployments, Beazley Security recommends affected organizations apply available fixes immediately and conduct a thorough review for signs of compromise.</p></div><div class="rtf"><h3 class="rtf-title">Affected Systems or Products</h3><table><tbody><tr><th><p><b>Product</b> </p></th><th><p><b>Affected Version</b> </p></th><th><p><b>Fixed Version</b> </p></th></tr><tr><td><p>Metabase Open-Source 58 </p></td><td><p>0.58.0-0.58.23 </p></td><td><p>0.58.24 </p></td></tr><tr><td><p>Metabase Open-Source 59 </p></td><td><p>0.59.0-0.59.20 </p></td><td><p>0.59.21 </p></td></tr><tr><td><p>Metabase Open-Source 60 </p></td><td><p>0.60.0-0.60.16 </p></td><td><p>0.60.17 </p></td></tr><tr><td><p>Metabase Open-Source 61 </p></td><td><p>0.61.0-0.61.10 </p></td><td><p>0.61.11 </p></td></tr><tr><td><p>Metabase Open-Source 62 </p></td><td><p>0.62.0-0.62.8 </p></td><td><p>0.62.9 </p></td></tr><tr><td><p>Metabase Open-Source 63 </p></td><td><p>0.63.0-0.63.4 </p></td><td><p>0.63.5 </p></td></tr></tbody></table></div><div class="rtf"><h3 class="rtf-title">Mitigations / Workarounds</h3><p>Upgrading to the release for your branch remediates this vulnerability; Metabase Cloud customers were patched automatically and do not need to take action. Given Metabase announced their Cloud instance was already attacked, users of this service should monitor communications from Metabase regarding whether their data was accessed. If the <code>/api/session/reset_password</code> endpoint on a self-hosted instance was publicly accessible, treat the instance as potentially compromised and take the following steps after upgrading: </p><ol><li><p>Remove the Metabase instance from publicly accessible networks. </p></li><li><p>Revoke all active user sessions by deleting every row in the <code>core_session</code> table of the Metabase application database. </p></li><li><p>Review API keys and delete any that are unrecognized. </p></li><li><p>Review administrator accounts for unexpected changes. </p></li><li><p>Rotate credentials for every database connected to the instance. </p></li><li><p>Review data warehouse logs for signs of unauthorized access. </p></li><li><p>Review Metabase activity and query history for unexpected activity. </p></li></ol><p>Organizations that cannot upgrade immediately should consider blocking network access to their Metabase instance, and if possible, block the <code>/api/session/reset_password</code> endpoint at the reverse proxy or firewall as a temporary workaround until the update can be applied.</p></div><div class="rtf"><h3 class="rtf-title">Patches</h3><p>Metabase Cloud instances have already received the fix from the vendor. Metabase has released patched point releases for each affected self-hosted branch (58 through 63). Administrators can find the version numbers for affected products in the Affected Systems and Products section above. Update instructions and patches can be accessed within <a href="https://www.metabase.com/blog/security-update"><u>Metabase’s official security advisory</u></a>.</p></div><div class="rtf"><h3 class="rtf-title">Indicators of Compromise (IoCs)</h3><p>Metabase has published the specific request sequence attackers used to exploit the flaw that defenders can watch for: </p><ul><li><p>a POST request to <code>/api/session/reset_password</code> that returns a 400 http status code followed by </p></li><li><p>a GET request to <code>/api/user/current</code> which returns a 200 http status code. </p></li></ul><p>Organizations that find this pattern in Metabase server ingress logs or application logs should look for signs of post exploitation activity and review Metabase for unexpected administrator accounts, unrecognized API keys, and unusual query activity against connected data warehouses. Regardless of exploitation activity, rotation of Metabase connection API keys should be considered if the organization had ran a publicly accessible Metabase instance before the vulnerability was disclosed. </p></div><div class="rtf"><h3 class="rtf-title">Technical Details</h3><p>The vulnerability stems from how Metabase's Clojure codebase handles undeclared fields in the password-reset API. The affected endpoint, <code>POST /api/session/reset_password</code>, is intended to accept only a token and password. </p><p>Metabase’s password reset endpoint builds a database query used to look up the account being reset but does not restrict which fields it accepts in the reset request body. An attacker could add additional unexpected fields alongside the expected parameters. Metabase’s query-building layer treated one of those fields as a structured query condition rather than an identifier. An attacker therefore could splice arbitrary SQL into the lookup query that would run against the Metabase application database before any authentication check occurs. </p><p>This internal database access allows an attacker to manipulate the reset flow, take over an administrator account, and gain full control of the instance. Metabase’s fix strictly limits the reset flow to its expected inputs, so extra fields can no longer reach the query. </p><p>Researchers at Bishop Fox, who published a technical analysis after the disclosure, described the root cause as a failure to restrict undeclared fields in the request body rather than a classic string-concatenation flaw. </p><p>At the time of publication, no proof-of-concept exploit code had been publicly released, potentially reducing exploitation of this vulnerability to a limited number of attackers. However, <a href="https://www.techtimes.com/articles/324060/20260812/metabase-sql-injection-breached-five-companies-exposed-all-connected-database-credentials.htm"><u>Framework and Tally</u></a> have both confirmed attackers leveraged this vulnerability to exfiltrate customer records, password hashes, and API tokens beginning as early as August 3rd, 2026. </p></div><div class="rtf"><h3 class="rtf-title">Our Organizational Response</h3><p>Beazley Security is monitoring client perimeter devices through our Exposure Management Platform to identify impacted devices and support organizations in remediation of any issues found. </p><p>We are also conducting threat hunts across our MDR environment to detect potential exploitation attempts against our clients. </p><p>If you believe your organization may have been impacted by this attack campaign and need support, please <a href="https://beazley.security/report-security-breach"><u>contact our Incident Response team</u></a>.</p></div><div class="rtf"><h3 class="rtf-title">Sources</h3><ul><li><p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-72898">https://nvd.nist.gov/vuln/detail/CVE-2026-72898</a> </p></li><li><p><a href="https://www.metabase.com/blog/security-update"><u>https://www.metabase.com/blog/security-update</u></a> </p></li><li><p><a href="https://bishopfox.com/blog/critical-sql-injection-in-metabase-via-password-reset-cve-2026-72898"><u>https://bishopfox.com/blog/critical-sql-injection-in-metabase-via-password-reset-cve-2026-72898</u></a> </p></li><li><p><a href="https://www.techtimes.com/articles/324060/20260812/metabase-sql-injection-breached-five-companies-exposed-all-connected-database-credentials.htm"><u>https://www.techtimes.com/articles/324060/20260812/metabase-sql-injection-breached-five-companies-exposed-all-connected-database-credentials.htm</u></a> </p></li><li><p><a href="https://www.cisa.gov/known-exploited-vulnerabilities-catalog?search_api_fulltext=CVE-2026-72898"><u>https://www.cisa.gov/known-exploited-vulnerabilities-catalog?search_api_fulltext=CVE-2026-72898</u></a></p></li></ul></div>]]></content><summary type="html">An unauthenticated, critical SQL injection flaw in Metabase’s password reset endpoint has been exploited in the wild to gain full administrator access to self-hosted and cloud instances.</summary></entry><entry><title>N-central Authorization Bypass exploited in the wild (CVE-2026-18577)</title><link href="https://labs.beazley.security/advisories/BSL-A1196" rel="alternate"/><updated>2026-08-03T22:00:00.000Z</updated><published>2026-08-03T22:00:00.000Z</published><id>https://labs.beazley.security/advisories/BSL-A1196</id><content type="html"><![CDATA[<div class="rtf"><h3 class="rtf-title">Executive Summary</h3><p>On August 3rd, 2026, CISA added the CVE-2026-18577 vulnerability in N-able N-central to its Known Exploited Vulnerabilities (KEV) catalog following confirmed active exploitation in the wild. CVE-2026-18577 allows an unauthenticated remote attacker to bypass authentication and gain full administrative access to the N-central console. Cloud-hosted instances have already received the update automatically. </p><p>N-central is a remote monitoring and management (RMM) platform used by managed service providers (MSPs) and enterprise IT teams to administer large numbers of endpoints. Administrative compromise of one N-central server will affect every downstream organization it manages. N-central also provides a “Take Control” feature to reach managed endpoints, including domain controllers. The attacks observed showed attackers registering outbound Cloudflare tunnels as persistent services on those endpoints, allowing persistence across reboots and requiring no inbound firewall access. </p><p>N-able has confirmed that a limited number of customers were compromised through CVE-2026-18577 before the hotfix shipped. Huntress has independently observed exploitation across multiple organizations, in at least one case reaching nine downstream organizations through a single compromised partner account. Given confirmed in-the-wild exploitation of an internet-facing RMM platform, Beazley Security recommends affected organizations apply available fixes immediately and conduct a thorough review for any signs of compromise.</p></div><div class="rtf"><h3 class="rtf-title">Affected Systems or Products</h3><table><tbody><tr><th><p><b>Product</b> </p></th><th><p><b>Affected Version</b> </p></th><th><p><b>Fixed Version</b> </p></th></tr><tr><td><p>N-able N-central </p></td><td><p>All versions prior to 2026.3.1.7 (2026.3 Hotfix 1) </p></td><td><p>2026.3.1.7 (2026.3 Hotfix 1) </p></td></tr></tbody></table></div><div class="rtf"><h3 class="rtf-title">Mitigations / Workarounds</h3><p>N-able advises that applying the hotfix is the only complete remediation. N-able has confirmed that build 2026.3.1.7 (2026.3 Hotfix 1) is the first release unaffected by CVE-2026-18577 and the related vulnerability CVE-2026-18556. If the hotfix cannot be applied right away, restrict access to the N-central console to trusted administrative networks and consider taking the server offline until it can be patched. </p><ol><li><p>Upgrade self-hosted N-central instances to version 2026.3.1.7 or later immediately. </p></li><li><p>Review accounts and their permissions, rotate credentials for N-central administrative accounts, and enforce multi-factor authentication going forward.</p></li></ol></div><div class="rtf"><h3 class="rtf-title">Patches</h3><p>Patches were already released at the time of advisory and can be found in <a href="https://documentation.n-able.com/N-central/userguide/Content/ReleaseDocs/Install_Config/InstallConfig_Upgrade.htm"><u>N-able's user guide</u></a>.</p></div><div class="rtf"><h3 class="rtf-title">Indicators of Compromise (IoCs)</h3><p>CVE-2026-18577 is listed in CISA's KEV catalog, and both N-able and Huntress have independently confirmed exploitation in the wild. Attackers have used the flaw to obtain administrator access to N-central, pivot into managed endpoints through the Take Control feature, and establish persistence by registering outbound Cloudflare tunnels as Windows services, an approach that survives reboots and avoids inbound firewall rules. You can take the following steps to determine whether a system has been compromised by this vulnerability: </p><ul><li><p>Review N-central admin logins and Take Control session history for unfamiliar source IPs or unexpected use of the built-in support account <code>mspsupport@n-able.com</code>, and <code>check ui_access_control.log</code> for anomalous entries. </p></li><li><p>On endpoints managed through N-central, check the user Documents folder for an executable named <code>svchost.exe</code> and check for a Windows service registered as <code>Cloudflared</code>. N-able has also published logs at <code>C:\ProgramData\GetSupportService_N-Central\Logs\BASupSrvc_*.log.gz</code> that can help confirm unauthorized Take Control activity. </p></li><li><p>Review account and permission changes and logins to the N-central console and Take Control sessions originating from unfamiliar IP addresses or from the built-in support account <code>mspsupport@n-able.com</code>, particularly sessions directed at domain controllers or other critical infrastructure. </p></li></ul><p>N-able identified the following IP addresses <a href="https://www.n-able.com/blog/n-central-security-update-august-2-2026"><u>in their advisory</u></a>:</p><p><code>173[.]249[.]252[.]200</code></p><p><code>87[.]249[.]138[.]34 </code></p><p><code>37[.]19[.]210[.]32 </code></p><p><code>68[.]235[.]46[.]214 </code></p><p><code>37.153.90[.]88 </code></p><p><code>92.118.112[.]181 </code></p><p>Including the following malicious domains:</p><p><code>mousears.synology[.]me </code></p><p><code>wagoosh.direct.quickconnect[.]to </code></p><p><code>who-ripped-one.direct.quickconnect[.]to </code></p></div><div class="rtf"><h3 class="rtf-title">Technical Details</h3><p>CVE-2026-18577 stems from an incomplete fix for an earlier N-central authentication bypass vulnerability, tracked as CVE-2026-18556 and patched in version 2026.2. N-able's own review of that earlier fix, prompted by a spike in licensing errors on self-hosted servers, found a second path around the same authentication check. At the time of publication, a publicly released proof of concept has not been identified for either. The mechanisms of this authorization bypass are likely very similar to the previous bypass and were likely developed in response to the previous vulnerability. </p><p>This is notable given that N-central was targeted in zero-day attacks as recently as last year. Because RMM platforms allow access to multiple organizations, they are attractive targets for threat actors, and other widely used RMM platforms have a similar history of being targeted to reach the many organizations they manage.</p></div><div class="rtf"><h3 class="rtf-title">Our Organizational Response</h3><p>Beazley Security is monitoring client perimeter devices through our Exposure Management Platform to identify impacted devices and support organizations in remediation of any issues found. </p><p>We are also conducting threat hunts across our MDR environment to detect potential exploitation attempts against our clients. </p><p>If you believe your organization may have been impacted by this attack campaign and need support, please <a href="https://beazley.security/report-security-breach"><u>contact our Incident Response team</u></a>. </p></div><div class="rtf"><h3 class="rtf-title">Sources</h3><ul><li><p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-18577"><u>https://nvd.nist.gov/vuln/detail/CVE-2026-18577</u></a> </p></li><li><p><a href="https://status.n-able.com/2026/08/02/n-central-2026-3-hotfix-1-mitigation-for-cve-2026-18577/"><u>https://status.n-able.com/2026/08/02/n-central-2026-3-hotfix-1-mitigation-for-cve-2026-18577/</u></a> </p></li><li><p><a href="https://documentation.n-able.com/N-central/Release_Notes/GA/Content/N-central_2026.3_HF1_Release_Notes.htm"><u>https://documentation.n-able.com/N-central/Release_Notes/GA/Content/N-central_2026.3_HF1_Release_Notes.htm</u></a> </p></li><li><p><a href="https://www.cisa.gov/known-exploited-vulnerabilities-catalog?search_api_fulltext=CVE-2026-18577"><u>https://www.cisa.gov/known-exploited-vulnerabilities-catalog?search_api_fulltext=CVE-2026-18577</u></a> </p></li><li><p><a href="https://www.huntress.com/blog/n-able-vulnerability-exploitation"><u>https://www.huntress.com/blog/n-able-vulnerability-exploitation</u></a></p></li></ul></div>]]></content><summary type="html">N-able has confirmed active exploitation of an authentication bypass flaw in N-central that lets unauthenticated attackers take over administrator accounts and pivot into every managed endpoint beneath a compromised server.</summary></entry><entry><title>Keyv &amp; Cacheable NPM Packages in Ongoing Supply Chain Attack</title><link href="https://labs.beazley.security/advisories/BSL-A1197" rel="alternate"/><updated>2026-08-03T22:00:00.000Z</updated><published>2026-08-03T22:00:00.000Z</published><id>https://labs.beazley.security/advisories/BSL-A1197</id><content type="html"><![CDATA[<div class="rtf"><h3 class="rtf-title">Executive Summary</h3><p>On August 4<sup>th</sup>, 2026, a supply chain attack was identified on two npm packages, Keyv and Cacheable by Wiz Research. Keyv and Cacheable are very popular JavaScript libraries with over 150 million weekly downloads and are used in many JavaScript deployments. Multiple malicious packages within the Keyv/Cacheable system were published via a compromised GitHub maintainer account to deploy a variant of the Shai-Hulud malware family. </p><p>The malware collects a broad range of credentials used to publish future npm packages within a continuous integration / continuous deployment (CI/CD) pipeline, including personal and production credentials to facilitate further propagation. These secrets were exfiltrated using the description “Shai_Hulud: Here We Go Again” with the commit message “IfYouBlockThisAPIKeyItWillCrashTheLiveProductionServersOfAllThirdPartyClients”. </p><p>Organizations that are affected should immediately audit their environments to confirm whether any identified npm packages were installed. If so, treat the machine as compromised and follow the Mitigations and Workarounds section below.</p></div><div class="rtf"><h3 class="rtf-title">Affected Systems or Products</h3><table><tbody><tr><th><p><b>Product</b> </p></th><th><p><b>Affected Version</b> </p></th></tr><tr><td><p>babel-plugin-linaria-css-to-undefined </p></td><td><p>0.3.1 </p></td></tr><tr><td><p>@cacheable/utils </p></td><td><p>2.5.1 </p></td></tr><tr><td><p>cache-manager </p></td><td><p>7.2.10 </p></td></tr><tr><td><p>cacheable-request </p></td><td><p>13.0.20 </p></td></tr><tr><td><p>http-metrics-middleware </p></td><td><p>2.2.2 </p></td></tr><tr><td><p>@hubsync/web-sdk-react </p></td><td><p>6.3.7 </p></td></tr><tr><td><p>keyv </p></td><td><p>6.0.0 </p></td></tr><tr><td><p>@nebula.js/nucleus </p></td><td><p>0.5.1 </p></td></tr><tr><td><p>@ornikar/babel-preset-base </p></td><td><p>6.0.3 </p></td></tr><tr><td><p>@ornikar/babel-preset-kitt-universal </p></td><td><p>8.0.3 </p></td></tr><tr><td><p>@ornikar/babel-preset-react </p></td><td><p>6.1.4 </p></td></tr><tr><td><p>@ornikar/browserslist-config </p></td><td><p>8.0.3 </p></td></tr><tr><td><p>@ornikar/commitlint-config </p></td><td><p>8.3.2 </p></td></tr><tr><td><p>@ornikar/eslint-config-babel </p></td><td><p>24.0.1 </p></td></tr><tr><td><p>@ornikar/eslint-config-react </p></td><td><p>24.0.1 </p></td></tr><tr><td><p>@ornikar/eslint-config-typescript </p></td><td><p>24.0.1 </p></td></tr><tr><td><p>@ornikar/eslint-config-typescript-react </p></td><td><p>24.0.1 </p></td></tr><tr><td><p>@ornikar/eslint-plugin-neverthrow </p></td><td><p>1.3.1 </p></td></tr><tr><td><p>@ornikar/eslint-plugin-ornikar </p></td><td><p>24.0.1 </p></td></tr><tr><td><p>@ornikar/graphql-config </p></td><td><p>1.1.1 </p></td></tr><tr><td><p>@ornikar/intl-config </p></td><td><p>10.0.2 </p></td></tr><tr><td><p>@ornikar/kitt2 </p></td><td><p>1.0.1 </p></td></tr><tr><td><p>@ornikar/monorepo-config </p></td><td><p>14.3.2 </p></td></tr><tr><td><p>@ornikar/postcss-config </p></td><td><p>9.1.2 </p></td></tr><tr><td><p>@ornikar/prettier-config </p></td><td><p>9.0.3 </p></td></tr><tr><td><p>@ornikar/prismic-components </p></td><td><p>0.0.2 </p></td></tr><tr><td><p>@ornikar/react-modern-calendar-datepicker </p></td><td><p>3.2.1 </p></td></tr><tr><td><p>@ornikar/react-native-svg-transformer </p></td><td><p>1.0.6 </p></td></tr><tr><td><p>@ornikar/renovate-config </p></td><td><p>9.0.2 </p></td></tr><tr><td><p>@ornikar/repo-config-react </p></td><td><p>13.0.8 </p></td></tr><tr><td><p>@ornikar/repo-config-react-legacy-css </p></td><td><p>15.1.2 </p></td></tr><tr><td><p>@ornikar/rollup-plugin-postcss </p></td><td><p>2.0.5 </p></td></tr><tr><td><p>@ornikar/stylelint-config </p></td><td><p>14.0.3 </p></td></tr><tr><td><p>@ornikar/typed-css-modules-loader </p></td><td><p>0.8.2 </p></td></tr><tr><td><p>picasso-plugin-hammer </p></td><td><p>2.11.6 </p></td></tr><tr><td><p>picasso-plugin-q </p></td><td><p>2.11.6 </p></td></tr><tr><td><p>pob-test-package-in-monorepo </p></td><td><p>5.2.1 </p></td></tr><tr><td><p>@qlik/embed-react </p></td><td><p>2.5.3 </p></td></tr><tr><td><p>@qlik/embed-runtime </p></td><td><p>1.6.4 </p></td></tr><tr><td><p>@qlik/embed-web-components </p></td><td><p>1.7.3 </p></td></tr><tr><td><p>@qlik/runtime-module-loader </p></td><td><p>1.5.1 </p></td></tr><tr><td><p>@thiennq/docs-viewer </p></td><td><p>1.6.2 </p></td></tr></tbody></table></div><div class="rtf"><h3 class="rtf-title">Mitigations / Workarounds</h3><p>Affected organizations should block the following command-and-control endpoints identified used for this attack: </p><ul><li><p><code>npm-cache[.]com - 104.21.35[.]216 </code></p></li><li><p><code>eth-mainnet.nodereal[.]io - 35.175.164[.]77 </code></p></li><li><p><code>go.getblock[.]io - 185.44.207[.]215 </code></p></li><li><p><code>eth.llamarpc[.]com - 172.67.167[.]200 </code></p></li><li><p><code>pypi-get[.]com - 172.67.136[.]8, 104[.]21.54.63 </code></p></li><li><p><code>js-mirror[.]com - 104.21.88[.]80, 172.67.174[.]77 </code></p></li></ul><p>If you believe that a machine has already been compromised, we do not advise cleaning in place and instead recommend reimaging or rebuilding affected machines from known good images.</p><p>Using pinned versions of libraries is also recommended to prevent this kind of attack if new malicious versions are released for any library.</p><p>Additionally, npm offers a <code>npm config set min-release-age 3</code> configuration setting that will enforce a 48 to 72-hour delay on new package releases before installing them on your machine. This is advised for all developers using external packages. For machines running without human interaction, such as CI/CD pipelines, we advise not only pinning package versions but also disabling scripts on installation with the <code>--ignore-scripts</code> argument wherever possible. </p></div><div class="rtf"><h3 class="rtf-title">Patches</h3><p>While not strictly a patch, affected npm packages should be removed and purged from impacted machines. This involves removing the affected packages and installing pinned versions of the unaffected npm package with these commands: </p><ul><li><p><code>rm -rf node_modules/plain-crypto-js </code></p></li><li><p><code>npm install --ignore-scripts </code></p></li><li><p><code>npm cache clean --force </code></p></li></ul></div><div class="rtf"><h3 class="rtf-title">Indicators of Compromise (IoCs)</h3><p><b>Network Activity</b> </p><p>The following domains and IP addresses have been associated with malicious activity observed during this campaign. </p><table><tbody><tr><th><p><b>Domain</b> </p></th><th><p><b>IP Address</b> </p></th></tr><tr><td><p>npm-cache[.]com </p></td><td><p>104.21.35[.]216 </p></td></tr><tr><td><p>eth-mainnet.nodereal[.]io </p></td><td><p>35.175.164[.]77 </p></td></tr><tr><td><p>go.getblock[.]io </p></td><td><p>185.44.207[.]215 </p></td></tr><tr><td><p>eth.llamarpc[.]com </p></td><td><p>172.67.167[.]200 </p></td></tr><tr><td><p>pypi-get[.]com </p></td><td><p>172.67.136[.]8, 104.21.54[.]63 </p></td></tr><tr><td><p>js-mirror[.]com </p></td><td><p>104.21.88[.]80, 172.67.174[.]77 </p></td></tr></tbody></table><p>Wiz Research has also identified the user-agent performing malicious calls as Bun/1.3.13 </p><p><b>Files</b></p><p>The following file names and hashes have been identified as part of the malware’s execution. </p><table><tbody><tr><th><p><b>Name</b> </p></th><th><p><b>SHA1 Hash</b> </p></th></tr><tr><td><p>Math_Symbol.js </p></td><td><p>35a672cf34b996b91f3e1c28cbf3a05a37e036e4 </p></td></tr><tr><td><p>math_init.js </p></td><td><p>35a672cf34b996b91f3e1c28cbf3a05a37e036e4 </p></td></tr><tr><td><p>setup.mjs (in .claude) </p></td><td><p>686aa40d0fc22c8d569494543a0f891f359f2f99 </p></td></tr><tr><td><p>setup.mjs (in .vscode) </p></td><td><p>f525d52ceb966516686b482d3dc0137028cc6a63 </p></td></tr></tbody></table></div><div class="rtf"><h3 class="rtf-title">Our Organizational Response</h3><p>Beazley Security is conducting threat hunts across our MDR environment to detect potential exploitation attempts against our clients. </p><p>If you believe your organization may have been impacted by this attack campaign and need support, please <a href="https://beazley.security/report-security-breach"><u>contact our Incident Response team.</u></a> </p></div><div class="rtf"><h3 class="rtf-title">Sources</h3><ul><li><p><a href="https://www.wiz.io/blog/keyv-and-cacheable-npm-supply-chain-attack"><u>www.wiz.io/blog/keyv-and-cacheable-npm-supply-chain-attack</u></a> </p></li><li><p><a href="https://github.com/wiz-sec-public/wiz-research-iocs/blob/main/reports/keyv-packages.csv"><u>https://github.com/wiz-sec-public/wiz-research-iocs/blob/main/reports/keyv-packages.csv</u></a> </p></li></ul></div>]]></content><summary type="html">A new supply chain attack identified on multiple npm packages stemming from Keyv and Cacheable actively being exploited.</summary></entry><entry><title>Critical Check Point Security Management Vulnerabilities Under Active Exploitation (CVE-2026-16232, CVE-2026-62144, CVE-2026-62145)</title><link href="https://labs.beazley.security/advisories/BSL-A1195" rel="alternate"/><updated>2026-07-22T22:00:00.000Z</updated><published>2026-07-22T22:00:00.000Z</published><id>https://labs.beazley.security/advisories/BSL-A1195</id><content type="html"><![CDATA[<div class="rtf"><h3 class="rtf-title">Executive Summary</h3><p>On July 22nd, 2026, Check Point disclosed several authentication vulnerabilities in their SmartConsole, Gaia Portal, Security Management, and Multi-Domain Security Management services. The most critical of these is under active exploitation and tracked as CVE-2026-16232. </p><p>The flaw allows an unauthenticated remote attacker the ability to obtain a login token and authenticate to the management server with full administrative privileges, enabling modification of security policies and configurations. </p><p>Check Point’s Security Management is the centralized console that pushes security policies, VPN configurations, threat prevention settings, and administrator permissions to an organization’s Check Point firewalls. Compromising it therefore presents a significant risk to internet-facing Security Management instances. </p></div><div class="rtf"><h3 class="rtf-title">Affected Systems or Products</h3><table><tbody><tr><th><p><b>Product</b> </p></th><th><p><b>Affected Version</b> </p></th><th><p><b>Fixed Version</b> </p></th></tr><tr><td><p>Security Management Server </p></td><td><p>R81.10, R81.20, R82, R82.10 (older versions impacted as well) </p></td><td><p>Jumbo Hotfix Take 36, 118, 158, and later </p></td></tr><tr><td><p>Security Management Server Multi-Domain Management </p></td><td><p>R81.10, R81.20, R82, R82.10 (older versions impacted as well) </p></td><td><p>Jumbo Hotfix Take 36, 118, 158, and later </p></td></tr><tr><td><p>Gaia Portal on Security Gateway </p></td><td><p>R81.10, R81.20, R82, R82.10 (older versions impacted as well) </p></td><td><p>Jumbo Hotfix Take 36, 118, 158, and later </p></td></tr></tbody></table></div><div class="rtf"><h3 class="rtf-title">Mitigations / Workarounds</h3><p>Check Point released a single hotfix that remediates all three vulnerabilities; no separate action is required per CVE. Where immediate patching is not possible, apply these interim steps: </p><ol><li><p>Restrict SmartConsole Trusted Clients (GUI clients) to specific, trusted IP addresses or subnets rather than Any. This closes the preconditions for CVE-2026-16232 and CVE-2026-62144. </p></li><li><p>Place the Management Server behind a firewall that permits only trusted administrative access and verify that implied rules for control connections are enabled. </p></li></ol></div><div class="rtf"><h3 class="rtf-title">Patches</h3><p>Check Point released a hotfix on July 22nd, 2026 that addresses all three vulnerabilities. Hotfixes are confirmed as available for currently supported versions R81.20, R82, and R82.10. Further details are available in Check Point’s advisory and the corresponding GitHub security advisories linked in Sources. </p></div><div class="rtf"><h3 class="rtf-title">Indicators of Compromise (IoCs)</h3><p>On July 22nd, 2026, CISA added CVE-2026-16232 to its Known Exploited Vulnerabilities (KEV) catalog, confirming active exploitation in the wild. Check Point has published six attacker IP addresses observed in the activity: </p><ul><li><p><code>151.241.99[.]207 </code></p></li><li><p><code>151.241.99[.]233 </code></p></li><li><p><code>158.62.198[.]182 </code></p></li><li><p><code>192.142.10[.]99 </code></p></li><li><p><code>139.28.37[.]250 </code></p></li><li><p><code>194.213.18[.]137 </code></p></li></ul><p>Administrators can check for access in SmartConsole under Logs &amp; Monitor > Logs &amp; Events > Audit Logs View and search for events showing Authentication method: application token alongside connections to or from the listed IP addresses. CVE-2026-62144 and CVE-2026-62145 have not been reported as exploited as of publication. </p></div><div class="rtf"><h3 class="rtf-title">Technical Details</h3><p>CVE-2026-16232 is an authentication logic flaw that allows an authenticated attacker to obtain a valid login token, which allows access into the SmartConsole as an administrator. This allows an attacker to make modifications to the security policy and configuration within SmartConsole, effectively changing the security promises of existing deployments. Check Point has identified this as the only publicly exploited vulnerability in this release. </p><p>CVE-2026-62144 is another authentication issue but instead allows an attacker to bypass authentication entirely and perform various administrative commands directory on the management server. Check Point has specially identified the run-script and exec-command commands as vulnerable to abuse. These commands provide similar controls to the attacker and equally put the deployment at risk. </p><p>CVE-2026-62145 is a privilege escalation issue that allows an authenticated user to gain root access and subsequently perform commands which change the security controls on Security Management deployments. </p></div><div class="rtf"><h3 class="rtf-title">Our Organizational Response</h3><p>Beazley Security is monitoring client perimeter devices through our Exposure Management Platform to identify impacted devices and support organizations in remediation of any issues found. </p><p>We are also conducting threat hunts across our MDR environment to detect potential exploitation attempts against our clients. </p><p>If you believe your organization may have been impacted by this attack campaign and need support, please <a href="https://beazley.security/report-security-breach"><u>contact our Incident Response team</u></a>. </p></div><div class="rtf"><h3 class="rtf-title">Sources</h3><ul><li><p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-16232">https://nvd.nist.gov/vuln/detail/CVE-2026-16232</a> </p></li><li><p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-62144">https://nvd.nist.gov/vuln/detail/CVE-2026-62144</a> </p></li><li><p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-62145">https://nvd.nist.gov/vuln/detail/CVE-2026-62145</a> </p></li><li><p><a href="https://github.com/advisories/GHSA-m2xx-23gx-734v">https://github.com/advisories/GHSA-m2xx-23gx-734v</a> </p></li><li><p><a href="https://github.com/advisories/GHSA-qg2m-c9gf-4qvp">https://github.com/advisories/GHSA-qg2m-c9gf-4qvp</a> </p></li><li><p><a href="https://github.com/advisories/GHSA-jh99-mm75-xrmv">https://github.com/advisories/GHSA-jh99-mm75-xrmv</a> </p></li><li><p><a href="https://www.cisa.gov/known-exploited-vulnerabilities-catalog?search_api_fulltext=CVE-2026-16232">https://www.cisa.gov/known-exploited-vulnerabilities-catalog?search_api_fulltext=CVE-2026-16232</a> </p></li><li><p><a href="https://blog.checkpoint.com/security/security-advisory-action-required-active-exploitation-of-check-point-smartconsole-authentication-bypass-cve-2026-16232/">https://blog.checkpoint.com/security/security-advisory-action-required-active-exploitation-of-check-point-smartconsole-authentication-bypass-cve-2026-16232/</a></p></li></ul></div>]]></content><summary type="html">Check Point patched three vulnerabilities in its Security Management platform on July 22nd, 2026, (CVE-2026-16232, CVE-2026-62144, CVE-2026-62145). CVE-2026-16232 was already exploited in the wild as to seize full administrative control of firewall management servers.</summary></entry><entry><title>Critical Vulnerability in Palo Alto Global Protect Under Active Exploitation (CVE-2026-0257) </title><link href="https://labs.beazley.security/advisories/BSL-A1194" rel="alternate"/><updated>2026-07-21T07:00:00.000Z</updated><published>2026-07-21T07:00:00.000Z</published><id>https://labs.beazley.security/advisories/BSL-A1194</id><content type="html"><![CDATA[<div class="rtf"><h3 class="rtf-title">Executive Summary</h3><p>On July 20<sup>th</sup>, 2026 it was reported by security researchers that Qilin Ransomware affiliates are actively exploiting CVE-2026-0257, a critical authentication bypass vulnerability affecting Palo Alto Networks Global Protect Portal. </p><p>The vulnerability was previously added to CISA’s Known Exploited Vulnerabilities (KEV) database on May 29th. Tracked as CVE-2026-0257, the flaw can allow an unauthenticated attacker to establish unauthorized VPN sessions on vulnerable GlobalProtect deployments when certain configuration conditions are present. </p><p>The vulnerability was originally released by Palo Alto May 13th, 2026 as a medium severity vulnerability. However, given confirmed exploitation in the wild and <b>weaponization by well-established ransomware operators</b>, Beazley Security strongly recommends affected organizations patch immediately. </p></div><div class="rtf"><h3 class="rtf-title">Affected Systems or Products</h3><table><tbody><tr><td><p>Product </p></td><td><p>Affected Version </p></td><td><p>Fixed Version </p></td></tr><tr><td><p>PAN-OS 12.1 </p></td><td><p>12.1.5 through 12.1.6 12.1.2 through 12.1.4-h* </p></td><td><p>≥12.1.7 ≥12.1.4-h6 or ≥12.1.7 </p></td></tr><tr><td><p>PAN-OS 11.2 </p></td><td><p>11.2.11 or later 11.2.8 through 11.2.10-h* 11.2.5 through 11.2.7-h* 11.2.0 through 11.2.4-h* </p></td><td><p>≥11.2.12 ≥11.2.10-h7 or ≥11.2.12 ≥11.2.7-h14 or ≥11.2.12 ≥11.2.4-h17 or ≥11.2.12 </p></td></tr><tr><td><p>PAN-OS 11.1 </p></td><td><p>11.1.14 or later 11.1.11 through 11.1.13-h* 11.1.8 through 11.1.10-h* 11.1.7 through 11.1.7-h* 11.1.5 through 11.1.6-h* 11.1.0 through 11.1.4-h* </p></td><td><p>≥11.1.15 ≥11.1.13-h5 or ≥11.1.15 ≥11.1.10-h25 or ≥11.1.15 ≥11.1.7-h6 or ≥11.1.15 ≥11.1.6-h32 or ≥11.1.15 ≥11.1.4-h33 or ≥11.1.15 </p></td></tr><tr><td><p>PAN-OS 10.2 </p></td><td><p>10.2.17 through 10.2.18-h* 10.2.14 through 10.2.16-h* 10.2.11 through 10.2.13-h* 10.2.8 through 10.2.10-h* 10.2.0 through 10.2.7-h* </p></td><td><p>≥10.2.18 or ≥10.2.18-h6 ≥10.2.16-h7 or ≥10.2.18-h6 ≥10.2.13-h21 or ≥10.2.18-h6 ≥10.2.10-h36 or ≥10.2.18-h6 ≥10.2.7-h34 or ≥10.2.18-h6 </p></td></tr><tr><td><p>Prisma Access 10.2 </p></td><td><p>10.2.0 through 10.2.10-h* </p></td><td><p>≥10.2.10-h36 </p></td></tr><tr><td><p>Prisma Access 11.2 </p></td><td><p>11.2.0 through 11.2.7-h* </p></td><td><p>≥11.2.7-h13 </p></td></tr></tbody></table></div><div class="rtf"><h3 class="rtf-title">Mitigations / Workarounds</h3><p>As active exploitation has been confirmed in the wild and Palo Alto have released fixes for this vulnerability, and affected organizations should apply patches as soon as possible. Ifimmediately updating is not an option, risk can be temporarily reduced by the following mitigation steps: </p><ul><li><p>Disable Authentication Override within the GlobalProtect portal. Configuration steps are included within Palo Alto’s <a href="https://security.paloaltonetworks.com/CVE-2026-0257"><u>original advisory</u></a>. </p></li><li><p>Restricting access to GlobalProtect to trusted networks where operationally feasible until patches can be applied. </p></li><li><p>If Authentication Override is required, use a dedicated certificate exclusively for signing Authentication Override cookies and ensure keys are securely stored and managed. </p></li></ul><p>Additionally, CISA recommends either turning off the vulnerable technologies or restricting the VPN access to them only to trusted IP addresses. It is suggested to monitor VPN connection logs for suspicious authentication patterns and to consider implementing additional authentication methods outside of GlobalProtect. </p></div><div class="rtf"><h3 class="rtf-title">Indicators of Compromise (IoCs)</h3><p>On July 20<sup>th</sup>, Arctic Wolf reported multiple engagements in which Qilin ransomware affiliates exploited CVE-2026-0257 as the initial access vector. Following successful exploitation, the threat actors established GlobalProtect SSL VPN sessions from systems identifying themselves with the hostname “kali”. In the investigated intrusions, VPN sessions originated from the following IP addresses: </p><ul><li><p>108.61.229[.]217 </p></li><li><p>108.61.75[.]232 </p></li><li><p>2.188.33[.]52 </p></li><li><p>199.247.22[.]193 </p></li><li><p>70.34.205[.]43 </p></li></ul><p>Arctic Wolf has made available and are updating this GitHub <a href="https://github.com/rtkwlf/wolf-tools/tree/main/threat-intelligence/cookie-crumbles-qilin"><u>repository</u></a> with additional IoCs related to the campaign. </p></div><div class="rtf"><h3 class="rtf-title">Technical Details</h3><p>Palo Alto suggests that the vulnerability came from an authentication bypass vulnerability in GlobalProtect which allows attackers to bypass security restrictions and establishunauthorized VPN connections. This vulnerability is <b>being actively exploited in the wild </b>by ransomware operaters, as <a href="https://arcticwolf.com/resources/blog/exploitation-of-cve-2026-0257-leads-to-qilin-ransomware/"><u>reported</u></a> by security researchers at Arctic Wolf. </p><p>To be exploited, specific conditions on the GlobalProtect portal must be met. First, the authentication override feature must be enabled. Then, an affected device would need to be configured in a way where the certificate used for the authentication override cookie mechanism is also used elsewhere, like the GlobalProtect portal or the gateway HTTPS service. If this is the case, threat actors may be able to derive the public key, enabling the crafting of malicious override cookies. A possible attack chain would resemble as follows: </p><ul><li><p>The attacker retrieves a public encryption certificate from the target’s GlobalProtect portal or gateway to forge an authentication override cookie </p></li><li><p>The attacker uses the certificate to encrypt an arbitrary authentication bypass cookie </p></li><li><p>The maliciously crafted bypass cookie is implicitly trusted by the device, allowing access </p></li></ul><p>To check a device configuration, users can look under    Network > GlobalProtect > Gateways > [Gateway/Portal Name] > Agent Tab > Authentication Override Cookie to see if the functionality is enabled. </p><p>Due to active exploitation in the wild, publicly available proof of concept exploit code, and potential for unauthorized access through the VPN gateway, Beazley Security stronglyrecommends affected organizations patch immediately. </p></div><div class="rtf"><h3 class="rtf-title">Our Organizational Response</h3><p>Beazley Security is monitoring client perimeter devices through our Exposure Management Platform to identify impacted devices and support organizations in remediation of any issues found. </p><p>We are also conducting threat hunts across our MDR environment to detect potential exploitation attempts against our clients. </p><p>If you believe your organization may have been impacted by this attack campaign and need support, please <a href="https://beazley.security/report-security-breach"><u>contact our Incident Response team</u></a>. </p></div><div class="rtf"><h3 class="rtf-title">Sources</h3><ul><li><p><a href="https://nvd.nist.gov/vuln/detail/cve-2026-0257"><u>https://nvd.nist.gov/vuln/detail/cve-2026-0257</u></a> </p></li><li><p><a href="https://gbhackers.com/cisa-warns-palo-alto-networks-pan-os-vulnerability/"><u>https://gbhackers.com/cisa-warns-palo-alto-networks-pan-os-vulnerability/</u></a> </p></li><li><p><a href="https://www.theregister.com/cyber-crime/2026/06/01/palo-alto-vpn-bug-graduates-from-advisory-to-active-exploitation/5249114"><u>https://www.theregister.com/cyber-crime/2026/06/01/palo-alto-vpn-bug-graduates-from-advisory-to-active-exploitation/5249114</u></a> </p></li><li><p><a href="https://security.paloaltonetworks.com/CVE-2026-0257"><u>https://security.paloaltonetworks.com/CVE-2026-0257</u></a> </p></li><li><p><a href="https://www.decryptiondigest.com/blog/cisa-patch-deadlines-june-2026-pan-os-defender-langflow"><u>https://www.decryptiondigest.com/blog/cisa-patch-deadlines-june-2026-pan-os-defender-langflow</u></a> </p></li><li><p><a href="https://www.rapid7.com/blog/post/etr-rapid7-observed-exploitation-of-pan-os-globalprotect-authentication-bypass-vulnerability-cve-2026-0257/"><u>https://www.rapid7.com/blog/post/etr-rapid7-observed-exploitation-of-pan-os-globalprotect-authentication-bypass-vulnerability-cve-2026-0257/</u></a> </p></li><li><p><a href="https://arcticwolf.com/resources/blog/exploitation-of-cve-2026-0257-leads-to-qilin-ransomware/"><u>https://arcticwolf.com/resources/blog/exploitation-of-cve-2026-0257-leads-to-qilin-ransomware/</u></a> </p></li></ul></div>]]></content><summary type="html">A flaw can allow an unauthenticated attacker to establish unauthorized VPN sessions on vulnerable GlobalProtect deployments when certain configuration conditions are present, currently added to KEV and is being used by Qilin Ransomware affiliates.</summary></entry><entry><title>&quot;WP2Shell&quot; Critical WordPress RCE Chain (CVE-2026-63030 &amp; CVE-2026-60137)</title><link href="https://labs.beazley.security/advisories/BSL-A1193" rel="alternate"/><updated>2026-07-17T07:00:00.000Z</updated><published>2026-07-17T07:00:00.000Z</published><id>https://labs.beazley.security/advisories/BSL-A1193</id><content type="html"><![CDATA[<div class="rtf"><h3 class="rtf-title">Executive Summary</h3><p><b>Update: July 21, 2026:</b> CISA has added <b>CVE-2026-63030 and CVE-2026-60137</b> to its Known Exploited Vulnerabilities (KEV) Catalog. WordPress disclosed CVE-2026-60137 and CVE-2026-63030 together on July 17, active exploitation has now been confirmed for both CVEs. Organizations using WordPress should treat this as a critical, actively exploited vulnerability and prioritize patching.</p><p>On July 17<sup>th</sup>, WordPress disclosed two separate vulnerabilities which when chained together, could enable a remote unauthenticated attacker to achieve Remote Code Execution on default installations of the WordPress “core” product. The vulnerabilities include CVE-2026-63030, a flaw in the REST API which can be paired with a SQL Injection vulnerability, CVE-2026-60137 in order to achieve Remote Code Execution. </p><p>The vulnerability was discovered by a researcher at Searchlight, and Beazley Security is not aware of any in the wild exploitation of this vulnerability at the time of writing. Additionally, there are currently no publicly available proof-of-concept exploits available, and Searchlight did not provide enough technical details to easily create one. WordPress made patches available before public disclosure, and Cloudflare simultaneously released Web Application Firewall (WAF) protections for sites behind its service. </p><p>Given the widespread use of WordPress, the presence of the vulnerability in the core software, and the apparent ease of exploitation, Beazley Security expects threat actors to reverse engineer patchesand attempt to exploit WordPress installations at scale. Beazley Security strongly recommends organizations apply available patches immediately, or deploy mitigations such as WAF rules. </p></div><div class="rtf"><h3 class="rtf-title">Affected Systems or Products</h3><table><tbody><tr><td><p>Product </p></td><td><p>Affected Version </p></td><td><p>Fixed Version </p></td></tr><tr><td><p>WordPress 6 </p></td><td><p>6.9.0 – 6.9.4 </p></td><td><p>6.9.5 </p></td></tr><tr><td><p>WordPress 7 </p></td><td><p>7.0.0 – 7.0.1 </p></td><td><p>7.0.2 </p></td></tr></tbody></table><p>Versions before 6.9.0 are <b><i>not</i></b> affected. </p></div><div class="rtf"><h3 class="rtf-title">Mitigations / Workarounds</h3><p>If security update patches cannot be immediately applied, the following recommended mitigations were provided for this specific vulnerability: </p><ul><li><p>Block anonymous access to the rest API, this can be achieved with plugins like <a href="https://wordpress.org/plugins/disable-wp-rest-api/#developers"><u>Disable WP REST API</u></a>, which are available on the official WordPress Plugin Directory. </p></li><li><p>Block traffic to the web endpoints <code>/wp-json/batch/v1</code> and <code>?rest_route=/batch/v1</code> via a Web Application Firewall (WAF). </p></li><li><p>Cloudflare has deployed new WAF rules to protect all customers, including those on free and paid plans, if their application traffic is proxied through the Cloudflare WAF. The rules were <a href="https://blog.cloudflare.com/wordpress-vulnerabilities/"><u>reportedly</u></a> deployed at 17:03 UTC on July 17, 2026. </p></li></ul></div><div class="rtf"><h3 class="rtf-title">Patches</h3><p>Patches were already released at the time of advisory and can be found on the <a href="https://wordpress.org/news/2026/07/wordpress-7-0-2-release/"><u>WordPress site</u></a> and their <a href="https://github.com/WordPress/wordpress-develop/security/advisories/GHSA-ff9f-jf42-662q"><u>GitHub repository</u></a>. </p></div><div class="rtf"><h3 class="rtf-title">Technical Details</h3><p>At the time of publication, WordPress provided limited technical information about the critical vulnerabilities in its security release. However, Cloudflare <a href="https://blog.cloudflare.com/wordpress-vulnerabilities/"><u>published</u></a> a concurrent advisory announcing new Web Application Firewall (WAF) protections for both critical vulnerabilities and additional technical analysis. </p><p>According to Cloudflare, CVE-2026-60137 is a SQL injection vulnerability affecting WordPress 6.8 and later, while CVE-2026-63030 is an unauthenticated remote code execution vulnerability affecting WordPress 6.9 and later. The RCE vulnerability is directly related to the SQL injection flaw and can be exploited through the REST API batch endpoint when a persistent object cache is not enabled. </p><p>The root cause lies in a route confusion condition within the REST API Batch Endpoint that causes attacker-controlled input to be misrouted or interpreted incorrectly. This allows crafted requests to reach unintended code paths, ultimately triggering the SQL injection vulnerability and providing a path to remote code execution. </p><p>Beazley Security recommends organizations upgrade to the latest supported version of WordPress as soon as possible, prioritizing patching of internet facing instances of the software. Organizations leveraging Cloudflare should ensure the latest managed WAF rules are enabled. </p></div><div class="rtf"><h3 class="rtf-title">Our Organizational Response</h3><p>Beazley Security is monitoring client perimeter devices through our Exposure Management Platform to identify impacted devices and support organizations in remediation of any issues found. </p><p>We are also conducting threat hunts across our MDR environment to detect potential exploitation attempts against our clients. </p><p>If you believe your organization may have been impacted by this attack campaign and need support, please <a href="https://beazley.security/report-security-breach"><u>contact our Incident Response team</u></a>. </p></div><div class="rtf"><h3 class="rtf-title">Sources</h3><ul><li><p><a href="https://slcyber.io/research-center/wp2shell-pre-authentication-rce-in-wordpress-core"><u>https://slcyber.io/research-center/wp2shell-pre-authentication-rce-in-wordpress-core</u></a> </p></li><li><p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-63030"><u>https://nvd.nist.gov/vuln/detail/CVE-2026-63030</u></a> </p></li><li><p><a href="https://wordpress.org/news/2026/07/wordpress-7-0-2-release/"><u>https://wordpress.org/news/2026/07/wordpress-7-0-2-release/</u></a> </p></li><li><p><a href="https://github.com/WordPress/wordpress-develop/security/advisories/GHSA-ff9f-jf42-662q"><u>https://github.com/WordPress/wordpress-develop/security/advisories/GHSA-ff9f-jf42-662q</u></a> </p></li><li><p><a href="https://blog.cloudflare.com/wordpress-vulnerabilities/"><u>https://blog.cloudflare.com/wordpress-vulnerabilities/</u></a> </p></li></ul></div>]]></content><summary type="html">On July 17th, WordPress disclosed two separate vulnerabilities which when chained together, could enable a remote unauthenticated attacker to achieve Remote Code Execution on default installations of the WordPress “core” product. </summary></entry><entry><title>Critical Memory Corruption Vulnerabilities in NGINX (CVE-2026-42533, CVE-2026-56434, CVE-2026-60005)</title><link href="https://labs.beazley.security/advisories/BSL-A1192" rel="alternate"/><updated>2026-07-15T22:00:00.000Z</updated><published>2026-07-15T22:00:00.000Z</published><id>https://labs.beazley.security/advisories/BSL-A1192</id><content type="html"><![CDATA[<div class="rtf"><h3 class="rtf-title">Executive Summary</h3><p>On July 15th, 2026, F5 disclosed an out-of-band security notification regarding F5 and NGINX memory-safety vulnerabilities affecting NGINX Plus and NGINX Open Source. The most severe flaw, tracked as CVE-2026-42533 (CVSS 9.2), lets an unauthenticated, remote attacker send requests that can result in heap buffer overflows. CVE-2026-60005 allows an attacker to potentially read worker memory or restart the process. CVE-2026-56434 can be leveraged to allow an attacker in the middle of a session to control upstream responses. </p><p>NGINX is one of the most widely deployed web servers and reverse proxies on the internet, and accounts for a large share of internet-facing infrastructure. Memory-corruption vulnerabilities in exposed deployments can enable service disruption or denial of service, and in the case of CVE-2026-42533 may provide a path to remote code execution. </p><p>F5 has not confirmed active exploitation for any of the three vulnerabilities as of publication. Although active exploitation has not been reported, vulnerabilities in the memory-corruption category have historically been weaponized following disclosure. Beazley Security recommends affected organizations apply available fixes as soon as possible.</p></div><div class="rtf"><h3 class="rtf-title">Affected Systems or Products</h3><table><tbody><tr><th><p><b>Product</b> </p></th><th><p><b>Affected Version</b> </p></th></tr><tr><td><p>NGINX Open Source </p></td><td><p>1.30.0 - 1.30.3, and 1.31.2 </p></td></tr><tr><td><p>NGINX Plus </p></td><td><p>37.0.0.1 - 37.0.2.1, and R33 - R36 </p></td></tr><tr><td><p>NGINX Instance Manager </p></td><td><p>2.17.0 - 2.22.1 </p></td></tr><tr><td><p>F5 WAF for NGINX </p></td><td><p>5.9.0 - 5.13.3 </p></td></tr><tr><td><p>NGINX App Protect WAF </p></td><td><p>4.x and 5.x </p></td></tr><tr><td><p>NGINX Gateway Fabric </p></td><td><p>1.x and 2.x </p></td></tr><tr><td><p>NGINX Ingress Controller </p></td><td><p>5.0.0 - 5.5.1, 4.0.0 - 4.0.1, and 3.6.0 - 3.7.2 </p></td></tr></tbody></table><p>BIG-IP, BIG-IQ, F5 Distributed Cloud, F5OS, and F5 AI Gateway are not affected; the issues are confined to NGINX’s data plane components.</p></div><div class="rtf"><h3 class="rtf-title">Mitigations / Workarounds</h3><p>A single upgrade path remediates all three vulnerabilities on NGINX Open Source and NGINX Plus. Downstream products require their own separate updates. </p><ul><li><p>Upgrade NGINX Open Source to 1.31.3 or 1.30.4. </p></li><li><p>Upgrade NGINX Plus to 37.0.3.1 or R36 P7. </p></li><li><p>Upgrade NGINX Gateway Fabric to 2.6.7, and NGINX Ingress Controller to 5.5.3 or 2026-lts-r4. </p></li></ul><p>If immediate patching is not possible, F5 advises replacing unnamed regex captures with named captures in any <code>map</code> or <code>slice</code> directive, and referencing those captures only within the block that holds the regex match. Replacing unnamed regex captures with named ones mitigates the vulnerabilities CVE-2026-42533 and CVE-2026-60005 target. No workaround exists for CVE-2026-56434; organizations relying on <code>SSI</code> with <code>proxy_pass</code> and <code>proxy_buffering</code> off should prioritize patching. </p></div><div class="rtf"><h3 class="rtf-title">Patches</h3><p>Fixed releases are available for NGINX Open Source, NGINX Plus, NGINX Gateway Fabric, and NGINX Ingress Controller, with additional downstream products receiving updates on their own branches. Administrators of customer-managed NGINX deployments must apply these updates directly. Further details on patching procedures are available in <a href="https://my.f5.com/manage/s/article/K000161837"><u>F5’s NGINX security advisory</u></a>.</p></div><div class="rtf"><h3 class="rtf-title">Technical Details</h3><p>CVE-2026-42533 is a vulnerability that leverages the <code>map</code> directive when it’s configured to use regex matching. Map directives take a string expression that references the map’s regex capture variables before referencing the map’s own output variable. NGINX parses strings with <code>$variables</code> like <code>proxy_set_header</code>, <code>map</code> outputs, and conditionals by compiling them into a script at runtime. These map runtimes are executed twice for each request to ensure that an appropriately sized buffer can be allocated. </p><p>Because a map directive needs to run a regex across its input, the number captured variables in the regex matches <code>(for example, $1, $2, ...)</code> will be iterated in order. This initial pass reads <code>$1</code> first, and its value may still hold whatever was left inside it from a previous capture state. On the second pass, when the map variable is evaluated and the regex is triggered, <code>$1</code> will be overwritten with user-influenced content. If the two passes do not result in the same length, the new capture content can be longer than what was allocated, and the copy pass writes beyond the end of the allocated buffer causing a heap overflow. </p><p>The changelog notes a second related trigger, “non-cacheable variables”. These non-cacheable variables can produce the same result when referenced in a string expression because a non-cacheable variable is explicitly allowed to return a different value each time it’s evaluated. </p><p>Grepping your configs for string expressions <code>(proxy_set_header, add_header, return, rewrite, log_format, set, etc.)</code> that reference <code>$1/$2/... </code>values before referencing a map-produced variable can identify whether you have a vulnerable configuration. If so, using a named capture group <code>(?&lt;name>...)</code> instead of a numbered one will reduce accidental register reuse across unrelated directives. </p><p>The other two flaws are lower-impact siblings from the same release. CVE-2026-60005 is an uninitialized-memory read in the optional slice module (not enabled by default) that can leak fragments of worker memory or force a restart. CVE-2026-56434 is a use-after-free in the <code>SSI</code> module, reachable only when <code>SSI</code>, <code>proxy_pass</code>, and <code>proxy_buffering off</code> are all configured together, and only by an attacker with man-in-the-middle control over upstream responses.</p></div><div class="rtf"><h3 class="rtf-title">Our Organizational Response</h3><p>Beazley Security is monitoring client perimeter devices through our Exposure Management Platform to identify impacted devices and support organizations in remediation of any issues found. </p><p>We are also conducting threat hunts across our MDR environment to detect potential exploitation attempts against our clients. </p><p>If you believe your organization may have been impacted by this attack campaign and need support, please <a href="https://beazley.security/report-security-breach"><u>contact our Incident Response team</u></a>. </p></div><div class="rtf"><h3 class="rtf-title">Sources</h3><ul><li><p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-42533"><u>https://nvd.nist.gov/vuln/detail/CVE-2026-42533</u></a> </p></li><li><p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-56434"><u>https://nvd.nist.gov/vuln/detail/CVE-2026-56434</u></a> </p></li><li><p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-60005"><u>https://nvd.nist.gov/vuln/detail/CVE-2026-60005</u></a> </p></li><li><p><a href="https://github.com/advisories/GHSA-fxfg-v4rj-hp95"><u>https://github.com/advisories/GHSA-fxfg-v4rj-hp95</u></a> </p></li><li><p><a href="https://github.com/advisories/GHSA-m73p-xg7q-m8f2"><u>https://github.com/advisories/GHSA-m73p-xg7q-m8f2</u></a> </p></li><li><p><a href="https://github.com/advisories/GHSA-vxcv-h5wj-jxr5"><u>https://github.com/advisories/GHSA-vxcv-h5wj-jxr5</u></a> </p></li><li><p><a href="https://www.securityweek.com/f5-patches-multiple-nginx-big-ip-vulnerabilities/"><u>https://www.securityweek.com/f5-patches-multiple-nginx-big-ip-vulnerabilities</u></a></p></li></ul></div>]]></content><summary type="html">F5 has patched three memory-corruption vulnerabilities in NGINX Plus and NGINX Open Source, the most severe of which lets an unauthenticated attacker crash worker processes and, under the right conditions, execute code.</summary></entry><entry><title>Critical Vulnerability in Oracle EBS Payments Product Under Active Exploitation (CVE-2026-46817)</title><link href="https://labs.beazley.security/advisories/BSL-A1191" rel="alternate"/><updated>2026-07-15T05:00:00.000Z</updated><published>2026-07-15T05:00:00.000Z</published><id>https://labs.beazley.security/advisories/BSL-A1191</id><content type="html"><![CDATA[<div class="rtf"><h3 class="rtf-title">Executive Summary</h3><p>On July 15th, 2026, CISA added a critical flaw in Oracle E-Business Suite's Payments module to its Known Exploited Vulnerabilities (KEV) catalog, confirming active exploitation of the vulnerability in the wild. Tracked as CVE-2026-46817, the flaw requires no authentication, no user interaction, and can be exploited remotely over HTTP enabling a complete takeover of the Oracle Payments module.</p><p>Oracle's E-Business Suite (EBS) has become aggressively targeted by extortion-motivated threat actors. The Cl0p ransomware group's exploitation of a separate EBS vulnerability disclosed in 2025 led to mass data theft and extortion against more than 100 organizations, and the ShinyHunters group claimed a similar campaign against Oracle PeopleSoft customers earlier in 2026.</p><p>Given the vulnerability's unauthenticated, remote nature and Oracle E-Business Suite's recent history of targeting by extortion groups, Beazley Security recommends affected organizations apply available fixes immediately.</p></div><div class="rtf"><h3 class="rtf-title">Affected Systems or Products</h3><table><tbody><tr><td><p><b>Product</b></p></td><td><p><b>Affected Versions</b></p></td><td><p><b>Fixed Versions</b></p></td></tr><tr><td><p>Oracle Payments (Oracle E-Business Suite)</p></td><td><p>12.2.3 through 12.2.15</p></td><td><p>Patched via May 2026 CSPU</p></td></tr></tbody></table><p>*Oracle states that the vulnerability specifically affects the File Transmission component of Oracle Payments.</p></div><div class="rtf"><h3 class="rtf-title">Mitigations / Workarounds</h3><p>Beazley Security strongly recommends affected organizations apply updates immediately due to active exploitation in the wild. Oracle has released patches to remediate this vulnerability, please see the “patches” section below for more information.</p><p>If patching cannot be immediately applied, the below mitigations may help to temporarily reduce risk:</p><ul><li><p>Remove or restrict public internet exposure of the Oracle E-Business Suite web interface where Oracle Payments are used, particularly the `/OA_HTML/` path, limiting access to trusted internal and administrative networks only.</p></li><li><p>Deploy Web Application Firewalls (WAF) with signatures that detect exploitation attempts of this vulnerability</p></li><li><p>Treat any internet-facing instance left unpatched since May, 2026 as potentially compromised and review it before reconnecting it to the internet.</p></li></ul></div><div class="rtf"><h3 class="rtf-title">Patches</h3><p>Oracle addressed CVE-2026-46817 in its May 2026 Critical Patch Update, released May 28, 2026, and reinforced the fixes in a supplementary Critical Patch Update issued June 16, 2026. Patches are available through Oracle’s Patch Update and Security Alert program. Additional information can be found <a href="https://www.oracle.com/security-alerts/cpufaq.html">here</a>.</p></div><div class="rtf"><h3 class="rtf-title">Indicators of Compromise (IoCs)</h3><p>Security researchers have reportedly observed isolated exploitation attempts against Oracle EBS <a href="https://intel.threadlinqs.com/threat/TL-2026-1073">honeypots</a> in the wild since as early as late June, 2026.</p><p>Captured traffic from observed exploitation consisted of POST requests to <code>/OA_HTML/ibytransmit</code> carrying a crafted XML <code>DeliveryRequest</code> payload using the <code>CODEX_PULL</code> transmission scheme, with the <code>FULL_FILE_PATH</code> parameter set to <code>/etc/passwd</code> demonstrating attempts to exfiltrate sensitive server files:</p><table><tbody><tr><td><p><b>Indicator</b></p></td><td><p><b>Type</b></p></td><td><p><b>Detail</b></p></td></tr><tr><td><p>45.84.137.125</p></td><td><p>Attacker IP</p></td><td><p>AS136787 PacketHub S.A., France</p></td></tr><tr><td><p>/OA_HTML/ibytransmit</p></td><td><p>URL Path</p></td><td><p>Oracle iPayment File Transmission endpoint</p></td></tr><tr><td><p>ibytransmit-lab-poc/1.0</p></td><td><p>User-Agent</p></td><td><p>Exploit tooling identifier</p></td></tr></tbody></table></div><div class="rtf"><h3 class="rtf-title">Technical Details</h3><p>CVE-2026-46817 is a critical, remotely exploitable vulnerability in the File Transmission component of Oracle Payments within Oracle E-Business Suite, affecting versions 12.2.3 through 12.2.15. Oracle classifies the flaw as resulting from improper privilege management, improper authentication, and missing authentication for a critical function.</p><p>The vulnerable code path is the <code>/OA_HTML/ibytransmit</code> endpoint, which accepts unauthenticated HTTP POST requests carrying XML payloads. By crafting a malicious POST request to this endpoint, an attacker can redirect an internal Oracle Java function to read arbitrary files from the underlying server filesystem without any credentials, session token, or user interaction. Demonstrated exploitation attempts targeted files such as <code>/etc/passwd</code>, with the broader risk extending to EBS configuration files that may contain database credentials, encryption keys, and payment-processor API keys.</p><p>Because the File Transmission component operates within Oracle Payments, successful exploitation could expose financial transaction and other sensitive ERP data. Exploitation observed to date has been limited to file disclosure, but the same unauthenticated access path could enable further escalation. As recent history would indicate, released proof of concept code and a lower barrier to exploitation may attract additional campaigns from threat actors.</p></div><div class="rtf"><h3 class="rtf-title">Our Organizational Response</h3><p>Beazley Security is monitoring client perimeter devices through our Exposure Management Platform to identify impacted devices and support organizations in remediation of any issues found.</p><p>We are also conducting threat hunts across our MDR environment to detect potential exploitation attempts against our clients.</p><p>If you believe your organization may have been impacted by this attack campaign and need support, please <a href="https://beazley.security/report-security-breach">contact our Incident Response team</a>.</p></div><div class="rtf"><h3 class="rtf-title">Sources</h3><ul><li><p><a href="https://www.oracle.com/security-alerts/cpufaq.html">https://www.oracle.com/security-alerts/cpufaq.html</a></p></li><li><p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-46817">https://nvd.nist.gov/vuln/detail/CVE-2026-46817</a></p></li><li><p><a href="https://www.oracle.com/security-alerts/cspumay2026.html">https://www.oracle.com/security-alerts/cspumay2026.html</a></p></li></ul></div>]]></content><summary type="html">On July 15th, 2026, CISA added a critical flaw in Oracle E-Business Suite's Payments module to its Known Exploited Vulnerabilities (KEV) catalog, confirming active exploitation of the vulnerability in the wild. </summary></entry><entry><title>SharePoint Vulnerabilities Under Active Exploitation, CISA Urges SharePoint Hardening</title><link href="https://labs.beazley.security/advisories/BSL-A1190" rel="alternate"/><updated>2026-07-14T22:00:00.000Z</updated><published>2026-07-14T22:00:00.000Z</published><id>https://labs.beazley.security/advisories/BSL-A1190</id><content type="html"><![CDATA[<div class="rtf"><h3 class="rtf-title">Executive Summary</h3><p><b>Update: July 23, 2026:</b> CISA has added <b>CVE-2026-58644 and CVE-2026-50522</b> to its Known Exploited Vulnerabilities (KEV) Catalog. While Microsoft disclosed CVE-2026-55040, CVE-2026-58644, and CVE-2026-50522 together on July 14, active exploitation has now been confirmed for CVE-2026-58644<b> </b>and CVE-2026-50522. Organizations running on-premises SharePoint Server should treat this as a critical, actively exploited vulnerability and prioritize patching.</p><p>On July 14, 2026, Microsoft disclosed multiple vulnerabilities affecting on-premises SharePoint Server instances as part of their Patch Tuesday security rollup. Among the most critical are CVE-2026-55040, an authentication flaw in SharePoint token validation that allows an unauthenticated remote attacker to forge a valid session and act as any SharePoint user, including administrators, and both CVE-2026-58644 and CVE-2026-50522 which are deserialization vulnerabilities that allows an unauthenticated remote attacker to execute arbitrary code on a vulnerable server.</p><p>Although all vulnerabilities were published in the same update cycle, they are independent issues and should not be interpreted as a single exploit chain. Enhancing risk to on-premises SharePoint environments, security researchers at Rapid7 reported a separate remote code execution exploit chain they disclosed to Microsoft remains unpatched with the recent fixes. According to Rapid7, that chain is distinct from CVE-2026-55040's exploitation path and is not expected to be remediated until Microsoft's August 2026 release. As a result, applying July updates may not eliminate all known attack paths affecting on-premises SharePoint Servers.</p><p>The disclosure was followed by a warning from CISA regarding ongoing exploitation of vulnerabilities affecting on-premises SharePoint Server. On July 14<sup>th</sup>, CISA added CVE-2026-32201, CVE-2026-45659, and CVE-2026-56164. CISA reported that exploitation of these vulnerabilities can enable unauthorized access, remote code execution, theft of IIS machine keys, persistence, and malware deployment. CISA has not identified CVE-2026-55040 and CVE-2026-58644 as actively exploited at the time of writing, but the precedent of ongoing attacks creates heightened risk for on-premises SharePoint environments.</p><p>Beazley Security recommends affected organizations apply the July 2026 SharePoint security updates as soon as possible, verify completion across server farms, enable Microsoft’s Antimalware Scan Interface (AMSI) integration where feasible, and hunt for activity aligned with CISA's published Microsoft detections. </p></div><div class="rtf"><h3 class="rtf-title">Affected Systems or Products</h3><table><tbody><tr><th><p><b>Product</b> </p></th><th><p><b>Affected Version</b> </p></th><th><p><b>Resolved Version</b> </p></th></tr><tr><td><p>SharePoint Server Subscription Edition </p></td><td><p>&lt;= 16.0.19725.20384 </p></td><td><p>16.0.19725.20434 </p></td></tr><tr><td><p>SharePoint Server 2019 </p></td><td><p>&lt;= 16.0.10417.20153 </p></td><td><p>16.0.10417.20175 </p></td></tr><tr><td><p>SharePoint Server 2016 </p></td><td><p>&lt;= 16.0.5556.1005 </p></td><td><p>16.0.5561.1001 </p></td></tr></tbody></table></div><div class="rtf"><h3 class="rtf-title">Mitigations / Workarounds</h3><p>Microsoft’s July 2026 updates address CVE-2026-55040, CVE-2026-58644<b>, </b>and CVE-2026-50522 across supported on-premises SharePoint Server versions. Organizations should apply the latest SharePoint security updates immediately and verify successful installation. If immediate patching is not possible, risk may be temporarily reduced by implementing the following mitigations for SharePoint servers: </p><ul><li><p>Avoid exposing on-premises SharePoint Server directly to the internet. Where internet access is required, place it behind a Layer 7 reverse proxy or equivalent control that requires authentication and can inspect and filter requests. </p></li><li><p>Enable AMSI integration for each SharePoint web application. Use Full Mode for Request Body Scan Mode where feasible. This enables Microsoft Defender to inspect request bodies associated with exploitation attempts. </p></li><li><p>Restrict network access to SharePoint administration planes, and limit activity to systems that require access. </p></li><li><p>Monitor affected SharePoint Servers for signs of exploitation or unusual activity, especially systems that were internet reachable before patching.</p></li></ul></div><div class="rtf"><h3 class="rtf-title">Patches</h3><p>Microsoft released fixes for CVE-2026-55040, CVE-2026-58644, and CVE-2026-50522 as part of the July 2026 Patch Tuesday cycle. The fixes cover SharePoint Server Subscription Edition, SharePoint Server 2019, and SharePoint Server 2016. The specific SharePoint Updates can be accessed on <a href="https://learn.microsoft.com/en-us/officeupdates/sharepoint-updates">Microsoft’s Learn Portal</a>, or directly from the links below:</p><table><tbody><tr><th><p><b>Product</b> </p></th><th><p><b>Patch Link</b> </p></th></tr><tr><td><p>SharePoint Server Subscription Edition </p></td><td><p><a href="https://www.microsoft.com/en-us/download/details.aspx?id=108730"><u>https://www.microsoft.com/en-us/download/details.aspx?id=108730</u></a> </p></td></tr><tr><td><p>SharePoint Server 2019 </p></td><td><p><a href="https://www.microsoft.com/en-us/download/details.aspx?id=108726"><u>https://www.microsoft.com/en-us/download/details.aspx?id=108726</u></a> </p></td></tr><tr><td><p>SharePoint Server 2016 </p></td><td><p><a href="https://www.microsoft.com/en-us/download/details.aspx?id=108723"><u>https://www.microsoft.com/en-us/download/details.aspx?id=108723</u></a> </p></td></tr></tbody></table><p>Administrators should apply updates through the official Microsoft Security Response Center advisories and confirm successful installation on each server in the farm. Validation matters as incomplete servicing can leave a multi-server SharePoint farm exposed even while updates are being applied. </p></div><div class="rtf"><h3 class="rtf-title">Indicators of Compromise (IoCs)</h3><p>At the time of CISA’s July 14 alert, neither CVE-2026-55040 nor CVE-2026-58644 had been reported as actively exploited by CISA or Microsoft. However, CISA provided the following Microsoft detection signatures associated with related SharePoint exploitation activity that organizations can use to identify indicators of attack: </p><ul><li><p>AMSI: Exploit:Script/SuspSignoutReqBody.A - request body scanning; SharePoint Server Subscription only; Microsoft has blocked observed attempts. </p></li><li><p>AMSI: Exploit:Script/ToolPaneAuthBypass.A - request header scanning; SharePoint Server 2016, 2019, and Subscription Edition. </p></li><li><p>AMSI: Exploit:Script/ToolPaneAuthBypass.C - RCE coverage; SharePoint Server 2016, 2019, and Subscription Edition. </p></li><li><p>MDAV: Backdoor:MSIL/LeakFang.A!dha - post-exploitation activity alert involving IIS-protected secrets.</p></li></ul></div><div class="rtf"><h3 class="rtf-title">Technical Details</h3><p>On July 14<sup>th</sup>, Microsoft disclosed CVE-2026-55040, CVE-2026-58644, and CVE-2026-50522, three critical vulnerabilities affecting on-premises SharePoint Server versions 2016, 2019, and Subscription Edition:</p><ul><li><p>CVE-2026-55040 is an authentication bypass vulnerability affecting Microsoft SharePoint Server. The flaw stems from issues in SharePoint's JWT token validation pipeline allowing a remote, unauthenticated attacker to bypass the SharePoint authentication process. An attacker who knows a target's Active Directory Security ID or User Principal Name can use the flaw to forge a JWT token for existing users on a SharePoint installation, including a site administrator. According to <a href="https://www.rapid7.com/blog/post/ve-cve-2026-55040-microsoft-sharepoint-jwt-token-authentication-bypass-fixed/"><u>researchers</u></a> at Rapid7, the disclosed flaw is the first stage of a two-step chain that can lead to unauthenticated remote code execution. The second vulnerability remains undisclosed and unpatched at the time of writing, with a Microsoft fix expected in August. </p></li><li><p>CVE-2026-58644 and CVE-2026-50522 are a deserialization-of-untrusted-data vulnerabilities in SharePoint. Deserialization flaws occur when an application reconstructs objects from attacker-supplied serialized data without properly validating type or origin. If an attacker can direct the deserializer to a class already available to the application, the attacker can trigger unintended code execution and run code in the context of the SharePoint service account.</p></li></ul><p>The same day these vulnerabilities were disclosed, CISA issued an <a href="https://www.cisa.gov/news-events/alerts/2026/07/14/cisa-urges-sharepoint-hardening-after-new-exploitations">official alert</a> regarding ongoing attacks against internet-exposed SharePoint servers involving active exploitation of three separate vulnerabilities: CVE-2026-32201, CVE-2026-45659, and CVE-2026-56164. In these cases, CISA reported remote code execution, IIS machine key theft, deserialization techniques, persistence, and malware deployment.</p><p>At the time of writing, the newly disclosed critical CVEs above have not been reported as exploited in the wild. However, given the sustained targeting of SharePoint servers and active campaigns reported by CISA, Beazley Security assesses that threat actors are likely to weaponize these flaws in the near future. CISA has also provided SharePoint hardening guidance within their official <a href="https://www.cisa.gov/news-events/alerts/2026/07/14/cisa-urges-sharepoint-hardening-after-new-exploitations"><u>alert</u></a>. Organizations should follow hardening guidance, apply Microsoft’s July 2026 SharePoint updates immediately, and prioritize the additional SharePoint update expected in August as soon as it becomes available. </p></div><div class="rtf"><h3 class="rtf-title">Our Organizational Response</h3><p>Beazley Security is monitoring client perimeter devices through our Exposure Management Platform to identify impacted devices and support organizations in remediation of any issues found. </p><p>We are also conducting threat hunts across our MDR environment to detect potential exploitation attempts against our clients. </p><p>If you believe your organization may have been impacted by this attack campaign and need support, please <a href="https://beazley.security/report-security-breach"><u>contact our Incident Response team</u></a>.</p></div><div class="rtf"><h3 class="rtf-title">Sources</h3><ul><li><p><a href="https://support.microsoft.com/en-us/servicing/office/update/2026/5002882"><u>https://support.microsoft.com/en-us/servicing/office/update/2026/5002882</u></a> </p></li><li><p><a href="https://support.microsoft.com/en-us/servicing/office/update/2026/5002883"><u>https://support.microsoft.com/en-us/servicing/office/update/2026/5002883</u></a> </p></li><li><p><a href="https://support.microsoft.com/en-us/servicing/office/update/2026/5002891"><u>https://support.microsoft.com/en-us/servicing/office/update/2026/5002891</u></a> </p></li><li><p><a href="https://www.microsoft.com/en-us/download/details.aspx?id=108730"><u>https://www.microsoft.com/en-us/download/details.aspx?id=108730</u></a> </p></li><li><p><a href="https://www.microsoft.com/en-us/download/details.aspx?id=108726"><u>https://www.microsoft.com/en-us/download/details.aspx?id=108726</u></a> </p></li><li><p><a href="https://www.microsoft.com/en-us/download/details.aspx?id=108723"><u>https://www.microsoft.com/en-us/download/details.aspx?id=108723</u></a> </p></li><li><p><a href="https://learn.microsoft.com/en-us/officeupdates/sharepoint-updates"><u>https://learn.microsoft.com/en-us/officeupdates/sharepoint-updates</u></a> </p></li><li><p><a href="https://www.rapid7.com/blog/post/ve-cve-2026-55040-microsoft-sharepoint-jwt-token-authentication-bypass-fixed/"><u>https://www.rapid7.com/blog/post/ve-cve-2026-55040-microsoft-sharepoint-jwt-token-authentication-bypass-fixed/</u></a> </p></li><li><p><a href="https://www.cisa.gov/news-events/alerts/2026/07/14/cisa-urges-sharepoint-hardening-after-new-exploitations"><u>https://www.cisa.gov/news-events/alerts/2026/07/14/cisa-urges-sharepoint-hardening-after-new-exploitations</u></a></p></li><li><p><u></u><a href="https://cybersecuritynews.com/sharepoint-rce-exploited-in-the-wild/">https://cybersecuritynews.com/sharepoint-rce-exploited-in-the-wild/</a></p></li><li><p><a href="https://www.cve.org/CVERecord?id=CVE-2026-50522">https://www.cve.org/CVERecord?id=CVE-2026-50522</a></p></li></ul></div>]]></content><summary type="html">(CVE-2026-55040, CVE-2026-58644, CVE-2026-32201, CVE-2026-45659, CVE-2026-56164, CVE-2026-50522)</summary></entry><entry><title>Critical Vulnerability in SonicWall SMA1000 Appliances Under Active Exploitation (CVE-2026-15409) </title><link href="https://labs.beazley.security/advisories/BSL-A1189" rel="alternate"/><updated>2026-07-14T05:00:00.000Z</updated><published>2026-07-14T05:00:00.000Z</published><id>https://labs.beazley.security/advisories/BSL-A1189</id><content type="html"><![CDATA[<div class="rtf"><h3 class="rtf-title">Executive Summary</h3><p>On July 14th, 2026, SonicWall PSIRT disclosed a critical vulnerability affecting SMA1000 secure remote access appliances. Tracked as CVE-2026-15409, <b>SonicWall confirmed this vulnerability is being actively exploited in the wild </b>and CISA has added it to its Known Exploited Vulnerabilities (KEV) catalog.</p><p>CVE-2026-15409 is a critical server-side request forgery vulnerability in the SMA1000 Workplace web portal that allows a remote, unauthenticated attacker to force the appliance to send requests to an attacker-chosen destination. The vulnerability is being exploited alongside CVE-2026-15410, a code injection flaw in the appliance's Management Console that allows an authenticated administrator to execute arbitrary operating system commands.</p><p>Given active exploitation in the wild, Beazley Security recommends affected organizations apply available fixes immediately and conduct a review for any signs of compromise.</p></div><div class="rtf"><h3 class="rtf-title">Affected Systems or Products</h3><table><tbody><tr><td><p><b>Product</b></p></td><td><p><b>Affected Versions</b></p></td><td><p><b>Fixed Versions</b></p></td></tr><tr><td><p>SMA1000 Models (6210, 7210 &amp; 8200v)</p></td><td><p>12.4.3-03245, 12.4.3-03387, 12.4.3-03434</p></td><td><p>12.4.3-03453 (hotfix)</p></td></tr><tr><td><p>SMA1000 Models (6210, 7210 &amp; 8200v)</p></td><td><p>12.5.0-02283, 12.5.0-02624, 12.5.0-02800</p></td><td><p>12.5.0-02835 (hotfix)</p></td></tr></tbody></table></div><div class="rtf"><h3 class="rtf-title">Mitigations / Workarounds</h3><p>Given <b>active exploitation</b> in the wild, Beazley Security strongly recommends organizations apply updates immediately. SonicWall has released hotfixes to remediate these vulnerabilities. Please see the “patches” section for more information.</p><ul><li><p>If patching cannot be applied, other mitigations may temporarily reduce risk of exposure:</p></li><li><p>Temporarily limit access to the Workplace interface to trusted, administrative networks</p></li><li><p>Disable or restrict any unnecessary external access to the Management Console</p></li><li><p>Monitor for indicators of attack or compromise. See the “Indicators of Compromise” section in this document for more information.</p></li></ul></div><div class="rtf"><h3 class="rtf-title">Patches</h3><p>SonicWall has released hotfix firmware that address both vulnerabilities. Additional details are available in the official SonicWall <a href="https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2026-0008">advisory</a> and fixes are available for download at <a href="http://mysonicwall.com/">mysonicwall.com</a>.</p></div><div class="rtf"><h3 class="rtf-title">Indicators of Compromise (IoCs)</h3><p>SonicWall PSIRT has reportedly investigated multiple cases indicating the active exploitation of these vulnerabilities. No specific threat actor or public PoC have been disclosed, however SonicWall released the following indicators of attack that defenders can review:</p><ul><li><p>Requests to <code>/__api__/login</code> or <code>/__api__/logout</code> with HTTP 200 status codes appearing in <code>extraweb_access.log</code></p></li><li><p>Requests to <code>/wsproxy</code> with suspicious host parameters returning HTTP 101 status codes in <code>extraweb_access.log</code></p></li><li><p>Hotfix rollbacks with path traversal names appearing in <code>ctrl-service.log</code></p></li><li><p>Routes for <code>/__api__/login</code> or <code>/__api__/logout</code> present in <code>/var/lib/unit/conf.json</code> (these URIs do not exist in legitimate configuration)</p></li></ul><p>If IoCs are present on the system, SonicWall strongly encourages customers to reimage appliances, change user and administrative passwords, and reset TOTP tokens.</p></div><div class="rtf"><h3 class="rtf-title">Technical Details</h3><p>SMA1000 appliances are SSL VPN gateways that provide secure remote access to enterprise networks, making them high-value targets for threat actors seeking an initial foothold. SonicWall remote access products have repeatedly been targeted through both zero-day and previously disclosed vulnerabilities to gain access to victim environments.</p><ul><li><p>CVE-2026-15409 is a critical server-side request forgery (SSRF) vulnerability in the SMA1000 Workplace interface. The flaw allows a remote, unauthenticated attacker to cause the appliance to send requests to unintended destinations, potentially attacker-controlled infrastructure. An attacker may also be able to probe internal network segments and reach services that the appliance would normally shield from the outside world.</p></li><li><p>CVE-2026-15410 is a high-severity code injection vulnerability in the SMA1000 Appliance Management Console (AMC). Under specific conditions, a remote attacker with administrative access to the console can exploit the flaw to execute arbitrary operating system commands on the appliance.</p></li></ul><p>At the time of writing, SonicWall has not publicly disclosed the exploitation techniques or the specific relationship between the two vulnerabilities beyond confirming their use in active attacks. It cannot be discounted that the pre-authentication SSRF vulnerability may be leveraged to target the management console to trigger arbitrary commands and achieve remote code execution on the appliance.</p></div><div class="rtf"><h3 class="rtf-title">Our Organizational Response</h3><p>Beazley Security is monitoring client perimeter devices through our Exposure Management Platform to identify impacted devices and support organizations in remediation of any issues found.</p><p>We are also conducting threat hunts across our MDR environment to detect potential exploitation attempts against our clients.</p><p>If you believe your organization may have been impacted by this attack campaign and need support, please <a href="https://beazley.security/report-security-breach">contact our Incident Response team</a>.</p></div><div class="rtf"><h3 class="rtf-title">Sources</h3><ul><li><p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-15409">https://nvd.nist.gov/vuln/detail/CVE-2026-15409</a></p></li><li><p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-15410">https://nvd.nist.gov/vuln/detail/CVE-2026-15410</a></p></li><li><p><a href="https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2026-0008">https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2026-0008</a></p></li><li><p><a href="https://www.cisa.gov/known-exploited-vulnerabilities-catalog?search_api_fulltext=CVE-2026-15409">https://www.cisa.gov/known-exploited-vulnerabilities-catalog?search_api_fulltext=CVE-2026-15409</a></p></li></ul></div>]]></content><summary type="html">On July 14th, 2026, SonicWall PSIRT disclosed a critical vulnerability affecting SMA1000 secure remote access appliances. Tracked as CVE-2026-15409, SonicWall confirmed this vulnerability is being actively exploited in the wild and CISA has added it to its Known Exploited Vulnerabilities (KEV) catalog.</summary></entry>
</feed>
