<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="/css/rss.css" type="text/css"?>
<rss version="2.0" 
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
>
<channel>
<atom:link href="https://isc.sans.edu/rssfeed_full.xml" rel="self" type="application/rss+xml" />
<title>SANS Internet Storm Center, InfoCON: green</title>
<atom:link href="https://isc.sans.edu/rssfeed_full.xml" rel="self" type="application/rss+xml" /><link>https://isc.sans.edu</link><description><![CDATA[SANS Internet Storm Center - Cooperative Cyber Security Monitor]]></description><language>   en-us</language><lastBuildDate>   Wed, 10 Jun 2026 20:30:03 +0000</lastBuildDate><pubDate>Wed, 10 Jun 2026 08:29:21 GMT</pubDate><copyright>(C) SANS Institute 2026</copyright>
             <generator>isc rss feed maker</generator>
             <ttl>30</ttl>
             <webMaster>handlers@sans.org (ISC Handlers)</webMaster>
             <image>
               <title>SANS Internet Storm Center, InfoCON: green</title>
               <url>https://isc.sans.edu/images/status.gif</url>
               <link>https://isc.sans.edu</link>
             </image>
  <item>
    <title><![CDATA[How has use of framing protection security headers changed in the past 3 years&#x3f;, (Wed, Jun 10th)]]></title>
    <link>https://isc.sans.edu/diary/rss/33068</link>    <guid>https://isc.sans.edu/diary/rss/33068</guid><description><![CDATA[ <p>Back in 2023, I wrote a diary&#x5b;<a href="https://isc.sans.edu/diary/29698">1</a>&#x5d; discussing how commonly X-Frame-Options and CSP headers containing the frame-ancestors directive were used on 1 million most popular domains on the internet (based on the Tranco list&#x5b;<a href="https://tranco-list.eu/">2</a>&#x5d;), and how they were set. Given that three years have passed since then, I thought it might be interesting to repeat the analysis and see what &#xe2;&#x80;&#x93; if anything &#xe2;&#x80;&#x93; has changed in the meantime.</p>&#xd;]]></description><content:encoded><![CDATA[<p>Back in 2023, I wrote a diary[<a href="https://isc.sans.edu/diary/29698">1</a>] discussing how commonly X-Frame-Options and CSP headers containing the frame-ancestors directive were used on 1 million most popular domains on the internet (based on the Tranco list[<a href="https://tranco-list.eu/">2</a>]), and how they were set. Given that three years have passed since then, I thought it might be interesting to repeat the analysis and see what &ndash; if anything &ndash; has changed in the meantime.</p>

<p>Before we get to the data, however, let&rsquo;s briefly recap what the headers in question do and why they are important.</p>

<p>Both headers basically serve the same fundamental purpose &ndash; they inform a browser whether the content of a given web page may be embedded in an iframe or similar object on another web page. Without either of these headers in place, any web page may freely load any other web page in an iframe, which can be quite beneficial in some instances, but also provides a functionality that is commonly abused by phishing actors[<a href="https://isc.sans.edu/diary/29638">3</a>].</p>

<p>The most common abuse scenario is related to a generic framing attack, and leads to what is sometimes called an &ldquo;overlay phishing&rdquo;. It is based on an attacker creating a malicious page which loads a legitimate website (usually the official company website of the recipient of the phishing) in a full-screen iframe, then overlays a fake login prompt on top of it. The result is that the victim sees what may appear to be the real login page. Setting either X-Frame-Options or CSP with the frame-ancestors directive on the legitimate site effectively mitigates this approach, because the browser will refuse to load the page inside an iframe in the first place, and all that would be displayed would be a fake login form over a browser message informing the user that a page cannot be loaded (which should make the credential stealing form apper less than trustworthy to most people).</p>

<p>This is a good reason why these headers are worth implementing on any organization&#39;s web site, regardless of how prominent or otherwise &ldquo;interesting&rdquo; the organization might consider itself to be.&nbsp;</p>

<p>For completeness&rsquo; sake, it should be mentioned that although the two security headers serve a similar purpose, they are not exactly equal. The X-Frame-Options header is the older of the two mechanisms and, while functional, is relatively limited in what it can express. It supports three directives: DENY (the page may not be framed by anyone), SAMEORIGIN (the page may only be framed by pages on the same origin/domain), and ALLOW-FROM (the page may be framed by a specific origin/domain).</p>

<p>Although the header in general is still widely supported and does its job well, its ALLOW-FROM directive was never universally supported by all browsers and is now considered obsolete[<a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/X-Frame-Options#allow-from_origin">4</a>].&nbsp;More importantly, however, the X-Frame-Options header as a whole has been basically superseded by the Content Security Policy frame-ancestors directive.</p>

<p>The CSP frame-ancestors directive offers considerably more flexibility than X-Frame-Options. It supports the same basic use cases (frame-ancestors &#39;none&#39; being equivalent to DENY, frame-ancestors &#39;self&#39; being equivalent to SAMEORIGIN), but also enables some additional ones (such as&nbsp; supporting wildcard matching for subdomains etc.). Modern browsers therefore generally treat frame-ancestors as the authoritative directive, ignoring X-Frame-Options entirely when both are present[<a href="https://w3c.github.io/webappsec-csp/#frame-ancestors-and-frame-options">5</a>].&nbsp;That said, X-Frame-Options remains relevant for legacy browser compatibility and &ndash; in practice &ndash; both headers can be sent simultaneously without any harm, which is what many HTTP servers actually do.</p>

<p>With this context in mind, let us look at how the use of these headers has evolved since 2023.</p>

<p>The data was gathered using the same approach that I used in 2023 &ndash; I used a simple Python script that went through the current Tranco list of the 1 million most popular domains and attempted to connect to each one over HTTPS, recording which security-related headers were present in the response. The script performed no retries on failure, and the following numbers are therefore not completely precise.&nbsp;Nevertheless, based on a few tests, I would estimate the error rate to be significantly less than 0.5%, which I consider sufficient for our purposes of seeing whether and how the use of both &ldquo;framing protection&rdquo; headers has changed over time.</p>

<p>And as you may see from the following charts, which include both the 2023 and 2026 data for comparison, the numbers have indeed moved in an interesting way over the past three years (and the direction of movement is not entirely consistent across different sample sizes).</p>

<p><a href="https://isc.sans.edu/diaryimages/images/26-06-10-x-frame-or-csp.png"><img alt="" src="https://isc.sans.edu/diaryimages/images/26-06-10-x-frame-or-csp.png" style="border-width: 1px; border-style: solid; width: 800px; height: 474px;" /></a></p>

<p>In the top 1 thousand most popular domains, the overall coverage by either X-Frame-Options or CSP frame-ancestors directive has actually decreased &ndash; from 27.1% in 2023 to 23.1% in 2026. On the other hand, in the top 100 thousand domains, the coverage has increased significantly&nbsp;&ndash; from 20.6% to 37.4%&nbsp;&ndash; and in the full top 1 million domains it has grown from 14.4% to 29.7%. The divergence between the top 1k and the larger samples is somewhat puzzling at first glance, though it likely reflects the fact that the composition of the top 1k list has changed quite a bit over three years, with domains of some security-conscious organizations dropping out of the top 1k and being replaced by domains that don&#39;t serve web content in the traditional sense (CDN endpoints, infrastructure domains, API backends, and so on) and therefore don&#39;t send security headers at all.</p>

<p>Looking at the breakdown of specific X-Frame-Options directives in use, SAMEORIGIN remains the most common choice across all sample sizes, which is not surprising, as it is generally the most practical option for most web applications.</p>

<p><a href="https://isc.sans.edu/diaryimages/images/26-06-10-x-frame.png"><img alt="" src="https://isc.sans.edu/diaryimages/images/26-06-10-x-frame.png" style="border-width: 1px; border-style: solid; width: 800px; height: 474px;" /></a></p>

<p>In the top 1 thousand domains, SAMEORIGIN has actually declined (from 19.4% to 15.3%), while in the top 100 thousand and top 1 million, it has increased notably &ndash; from 16.9% to 20.8% and from 12.4% to 19.4% respectively. The DENY directive has seen modest increases across all sample sizes, and the ALLOW-FROM directive remains at negligible levels in the larger samples and is completely absent from the 1k sample.</p>

<p>When it comes to CSP with the frame-ancestors directive, the numbers tell an encouraging story across all sample sizes. In the top 1k, usage has grown from 7.9% to 9.4%. In the top 100k, it has more than doubled &ndash; from 3.8% to 7.9%. And in the full 1 million sample, the increase is even more dramatic, from 1.9% to 7.1%.</p>

<p><a href="https://isc.sans.edu/diaryimages/images/26-06-10-csp.png"><img alt="" src="https://isc.sans.edu/diaryimages/images/26-06-10-csp.png" style="border-width: 1px; border-style: solid; width: 801px; height: 475px;" /></a></p>

<p>This, next to the aforementioned more than doubling of domains that use either CSP frame-ancestors or X-Frame-Options, is one of the two the most positive findings in the entire dataset. As discussed above, CSP frame-ancestors is the currently recommended approach for preventing framing attacks, so its growth relative to X-Frame-Options, as well as in absolute terms, is a welcome trend.</p>

<p>Looking at the specific values used in the frame-ancestors directive, &#39;self&#39; remains the most common choice, which is consistent with the 2023 findings. The &#39;none&#39; directive, which provides the strictest protection by disallowing framing entirely regardless of origin, has seen notable growth in the larger sample sizes &ndash; from 0.43% to 1.29% in the top 100k, and from 0.20% to 2.49% in the top 1 million. This suggests that at least some administrators are becoming more deliberate in their framing policies, choosing to explicitly disallow all framing rather than merely restricting it to the same origin. The use of specific domain(s) in the frame-ancestors value has remained relatively flat or slightly decreased across all sample sizes, which is expected, as this configuration requires more deliberate setup, and is generally only applicable to specific deployment scenarios (e.g. embedded widgets, single sign-on flows etc.).</p>

<p>To sum up, despite the slight regression in the top 1k, the overall picture that emerges from the 2026 data is noticeably more positive than the 2023 one. Both X-Frame-Options and CSP frame-ancestors are more widely deployed across the 1 million most popular domains &ndash; and one can therefore assume that across the internet as a whole as well &ndash; than they were three years ago. CSP frame-ancestors in particular has seen a very significant growth, which is encouraging.</p>

<p>On the other hand, even with these improvements, the data still shows that even the majority of the most popular domains on the internet do not use either of these headers at all, leaving their users potentially exposed to framing-based attacks, including the phishing techniques discussed at the beginning of this diary. Given how straightforward these headers are to implement (for most web applications, adding the appropriate response header is a matter of a single line of server configuration), there is clearly still considerable room for improvement across the industry as a whole.</p>

<p>Then again, this also means that it will be that much more interesting to see where things stand in another two or three years&hellip;</p>

<p>[1] <a href="https://isc.sans.edu/diary/29698">https://isc.sans.edu/diary/29698</a><br />
[2] <a href="https://tranco-list.eu/">https://tranco-list.eu/</a><br />
[3] <a href="https://isc.sans.edu/diary/29638">https://isc.sans.edu/diary/29638</a><br />
[4] <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/X-Frame-Options#allow-from_origin">https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/X-Frame-Options#allow-from_origin</a><br />
[5] <a href="https://w3c.github.io/webappsec-csp/#frame-ancestors-and-frame-options">https://w3c.github.io/webappsec-csp/#frame-ancestors-and-frame-options</a></p>

<p>-----------<br />
Jan Kopriva<br />
<a href="https://www.linkedin.com/in/jan-kopriva/">LinkedIn</a><br />
<a href="https://www.nettles.cz/">Nettles Consulting</a></p>

 
 (c) SANS Internet Storm Center. https://isc.sans.edu Creative Commons Attribution-Noncommercial 3.0 United States License.]]></content:encoded>    <pubDate>Wed, 10 Jun 2026 08:29:21 GMT</pubDate>  </item>  <item>
    <title><![CDATA[ISC Stormcast For Wednesday, June 10th, 2026 https://isc.sans.edu/podcastdetail/9966, (Wed, Jun 10th)]]></title>
    <link>https://isc.sans.edu/diary/rss/33066</link>    <guid>https://isc.sans.edu/diary/rss/33066</guid><description><![CDATA[  (c) SANS Internet Storm Center. https://isc.sans.edu Creative Commons Attribution-Noncommercial 3.0 United States License.]]></description><content:encoded><![CDATA[
 
 (c) SANS Internet Storm Center. https://isc.sans.edu Creative Commons Attribution-Noncommercial 3.0 United States License.]]></content:encoded>    <pubDate>Wed, 10 Jun 2026 02:00:02 GMT</pubDate>  </item>  <item>
    <title><![CDATA[Microsoft June 2026 Patch Tuesday, (Tue, Jun 9th)]]></title>
    <link>https://isc.sans.edu/diary/rss/33064</link>    <guid>https://isc.sans.edu/diary/rss/33064</guid><description><![CDATA[ <p>Microsoft today released patches for 204 vulnerabilities. 38 of these vulnerabilities are considered critical, and three have been disclosed before today. Six of the vulnerabilities affect Microsoft cloud solutions and do not require any user action. In addition, Microsoft incorporated 360 different vulnerabilities affecting Chromium into its Edge browser.</p>&#xd;]]></description><content:encoded><![CDATA[<p>Microsoft today released patches for 204 vulnerabilities. 38 of these vulnerabilities are considered critical, and three have been disclosed before today. Six of the vulnerabilities affect Microsoft cloud solutions and do not require any user action. In addition, Microsoft incorporated 360 different vulnerabilities affecting Chromium into its Edge browser.</p>

<p>This is certainly a busier-than-usual patch Tuesday. In particular, the large number of patched Chromium/Edge vulnerabilities underscores the impact of AI tools on vulnerability discovery.&nbsp;</p>

<p>Some noteworthy vulnerabilities:</p>

<p><strong>CVE-2026-49160</strong>: This vulnerability was made public a week ago. As implemented, the &quot;HPACK&quot; compression algorithm in HTTP/2 and HTTP/3 can lead to a &quot;compression bomb&quot; that consumes excessive&nbsp;resources. Many HTTP/2 implementations are vulnerable. Microsoft addressed this issue by adding a &quot;MaxHeadersCount&quot; registry setting that limits the amount of allocated resources.</p>

<p><strong>CVE-2026-47291</strong>: Affecting the Microsoft web server engine http.sys, just like CVE-2026-49160, this vulnerability is rated critical and allows for remote code execution. The integer overflow requires an oversized request to trigger it. Microsoft recommends restricting the &quot;MaxRequestBytes&quot; to prevent exploitation until the patch can be rolled out.</p>

<p>CVE-2026-45648: A stack-based buffer overflow in Active Directory Domain Services. A successful attack requires authentication, and Microsoft considers exploit development as &quot;unlikely&quot;.</p>

<p>Microsoft fixed three different BitLocker security feature bypass vulnerabilities. One of the vulnerabilities was already publicly known. An &quot;anonymous&quot; researcher is credited with the discovery, but I assume it is one of the &quot;Nightmare Eclipse&quot; vulnerabilities.&nbsp;</p>

<p>Several critical vulnerabilities affect Microsoft Office, Outlook, and Word.</p>

<table class="msfttable">
	<thead class="msftthead">
		<tr>
			<th colspan="8">Description</th>
		</tr>
		<tr>
			<th>CVE</th>
			<th>Disclosed</th>
			<th>Exploited</th>
			<th>Exploitability (old versions)</th>
			<th>current version</th>
			<th>Severity</th>
			<th>CVSS Base (AVG)</th>
			<th>CVSS Temporal (AVG)</th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<td colspan="8">.NET SDK Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45490%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">.NET Tampering Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45491%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>6.2</td>
			<td>5.4</td>
		</tr>
		<tr>
			<td colspan="8">ASP.NET Core Denial of Service Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45591%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.5</td>
			<td>6.5</td>
		</tr>
		<tr>
			<td colspan="8">Azure HorizonDB Elevation of Privilege Vulnerability<br />
			(no customer action required)</td>
		</tr>
		<tr>
			<td>%%cve:2026-48567%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>10.0</td>
			<td>8.7</td>
		</tr>
		<tr>
			<td colspan="8">Azure Kubernetes Service (AKS) Remote Code Execution Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-32193%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>8.8</td>
			<td>7.7</td>
		</tr>
		<tr>
			<td colspan="8">Azure Stack Edge Remote Code Execution Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-47643%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>9.8</td>
			<td>8.5</td>
		</tr>
		<tr>
			<td colspan="8">Azure Stack Edge Spoofing Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-41098%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>8.4</td>
			<td>7.3</td>
		</tr>
		<tr>
			<td colspan="8">Copilot Chat (Microsoft Edge) Information Disclosure Vulnerability<br />
			(no customer action required)</td>
		</tr>
		<tr>
			<td>%%cve:2026-47644%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>6.5</td>
			<td>5.7</td>
		</tr>
		<tr>
			<td colspan="8">DHCP Client Service Remote Code Execution Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-44815%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>9.8</td>
			<td>8.5</td>
		</tr>
		<tr>
			<td colspan="8">HTTP.sys Denial of Service Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-49160%%</td>
			<td class="msftyes">Yes</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.5</td>
			<td>6.5</td>
		</tr>
		<tr>
			<td colspan="8">HTTP.sys Remote Code Execution Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-47291%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>9.8</td>
			<td>8.5</td>
		</tr>
		<tr>
			<td colspan="8">M365 Copilot Information Disclosure Vulnerability<br />
			(no customer action required)</td>
		</tr>
		<tr>
			<td>%%cve:2026-42824%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>6.5</td>
			<td>5.7</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Azure Attestation service and Device Health Attestation Service Spoofing Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45642%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>3.9</td>
			<td>3.4</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Azure Network Adapter Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45476%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>8.2</td>
			<td>7.1</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Bing Search Spoofing Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45650%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>4.3</td>
			<td>3.8</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Cryptographic Services Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-44810%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>8.4</td>
			<td>7.3</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft DWM Core Library Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45637%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Defender for Endpoint for Mac Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45647%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.5</td>
			<td>4.8</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Dynamics 365 (on-premises) Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-40371%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>8.8</td>
			<td>7.7</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Excel Information Disclosure Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-44822%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>8.2</td>
			<td>7.1</td>
		</tr>
		<tr>
			<td>%%cve:2026-45455%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>3.3</td>
			<td>2.9</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Excel Remote Code Execution Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45469%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-44817%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-44818%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.0</td>
			<td>6.1</td>
		</tr>
		<tr>
			<td>%%cve:2026-44820%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-44823%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Excel Security Feature Bypass Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45459%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>3.3</td>
			<td>2.9</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Exchange Online Information Disclosure Vulnerability<br />
			(no customer action required)</td>
		</tr>
		<tr>
			<td>%%cve:2026-48579%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>9.1</td>
			<td>7.9</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Exchange Server Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45504%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>8.8</td>
			<td>7.7</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Exchange Server Information Disclosure Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45502%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.0</td>
			<td>4.4</td>
		</tr>
		<tr>
			<td>%%cve:2026-45503%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>8.1</td>
			<td>7.1</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Exchange Server Remote Code Execution Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45583%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.5</td>
			<td>6.5</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Exchange Server Spoofing Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45500%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>6.1</td>
			<td>5.3</td>
		</tr>
		<tr>
			<td>%%cve:2026-45501%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>6.5</td>
			<td>5.7</td>
		</tr>
		<tr>
			<td>%%cve:2026-47631%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>8.1</td>
			<td>7.1</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Graph Information Disclosure Vulnerability<br />
			(no customer action required)</td>
		</tr>
		<tr>
			<td>%%cve:2026-47655%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>6.5</td>
			<td>5.7</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Graphics Component Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-42986%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Kinect Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-41092%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Live Share Canvas SDK Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45644%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>8.0</td>
			<td>7.0</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft M365 Copilot Remote Code Execution Vulnerability<br />
			(no customer action required)</td>
		</tr>
		<tr>
			<td>%%cve:2026-45497%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>7.7</td>
			<td>6.7</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Office Click-To-Run Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-47293%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.0</td>
			<td>6.1</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Office Information Disclosure Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45485%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>3.3</td>
			<td>2.9</td>
		</tr>
		<tr>
			<td>%%cve:2026-44821%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.5</td>
			<td>4.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-45460%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>4.7</td>
			<td>4.1</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Office Project Server Spoofing Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45483%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>4.6</td>
			<td>4.0</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Office Remote Code Execution Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45475%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-45472%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>8.4</td>
			<td>7.3</td>
		</tr>
		<tr>
			<td>%%cve:2026-45474%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>8.4</td>
			<td>7.3</td>
		</tr>
		<tr>
			<td>%%cve:2026-44819%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-44824%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-45461%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>8.4</td>
			<td>7.3</td>
		</tr>
		<tr>
			<td>%%cve:2026-45645%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-45463%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>8.4</td>
			<td>7.3</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Outlook and Word Remote Code Execution Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45456%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>8.4</td>
			<td>7.3</td>
		</tr>
		<tr>
			<td>%%cve:2026-45458%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>8.4</td>
			<td>7.3</td>
		</tr>
		<tr>
			<td>%%cve:2026-47635%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>8.4</td>
			<td>7.3</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft PC Manager Security Feature Bypass Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-49161%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft PowerToys Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-42902%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft SharePoint Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45484%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>8.8</td>
			<td>7.7</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft SharePoint Remote Code Execution Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45454%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>6.5</td>
			<td>5.7</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft SharePoint Server Remote Code Execution Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-47298%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>8.0</td>
			<td>7.0</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft SharePoint Server Spoofing Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45467%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>4.6</td>
			<td>4.0</td>
		</tr>
		<tr>
			<td>%%cve:2026-45468%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>4.6</td>
			<td>4.0</td>
		</tr>
		<tr>
			<td>%%cve:2026-45479%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>4.6</td>
			<td>4.0</td>
		</tr>
		<tr>
			<td>%%cve:2026-45453%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.4</td>
			<td>4.7</td>
		</tr>
		<tr>
			<td>%%cve:2026-47636%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.4</td>
			<td>4.7</td>
		</tr>
		<tr>
			<td>%%cve:2026-47637%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>4.6</td>
			<td>4.0</td>
		</tr>
		<tr>
			<td>%%cve:2026-47638%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>4.6</td>
			<td>4.0</td>
		</tr>
		<tr>
			<td>%%cve:2026-47639%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.4</td>
			<td>4.7</td>
		</tr>
		<tr>
			<td>%%cve:2026-47641%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>4.6</td>
			<td>4.0</td>
		</tr>
		<tr>
			<td>%%cve:2026-33113%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.4</td>
			<td>4.7</td>
		</tr>
		<tr>
			<td>%%cve:2026-45462%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>4.6</td>
			<td>4.0</td>
		</tr>
		<tr>
			<td>%%cve:2026-45464%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.4</td>
			<td>4.7</td>
		</tr>
		<tr>
			<td>%%cve:2026-45465%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.4</td>
			<td>4.7</td>
		</tr>
		<tr>
			<td>%%cve:2026-47634%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.3</td>
			<td>6.4</td>
		</tr>
		<tr>
			<td>%%cve:2026-47640%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>4.6</td>
			<td>4.0</td>
		</tr>
		<tr>
			<td>%%cve:2026-45481%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.3</td>
			<td>6.4</td>
		</tr>
		<tr>
			<td>%%cve:2026-48560%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.4</td>
			<td>4.7</td>
		</tr>
		<tr>
			<td>%%cve:2026-48562%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>4.6</td>
			<td>4.0</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Teams for Android Information Disclosure Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-42835%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>8.1</td>
			<td>7.1</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft UxTheme Library (uxtheme.dll) Denial of Service Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45606%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.5</td>
			<td>4.8</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Visual Studio Code CoPilot Chat Extension Security Feature Bypass Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45482%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>8.4</td>
			<td>7.3</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Word Information Disclosure Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45466%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>3.3</td>
			<td>2.9</td>
		</tr>
		<tr>
			<td colspan="8">Microsoft Word Remote Code Execution Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45471%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-45486%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-45643%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-45457%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">NT OS Kernel Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-42980%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-42916%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Nuance PowerScribe Remote Code Execution Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-26142%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>9.8</td>
			<td>8.5</td>
		</tr>
		<tr>
			<td colspan="8">Office for Android Spoofing Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45649%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.1</td>
			<td>6.2</td>
		</tr>
		<tr>
			<td colspan="8">Remote Desktop Client Remote Code Execution Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-47289%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>8.8</td>
			<td>7.7</td>
		</tr>
		<tr>
			<td>%%cve:2026-47653%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>8.8</td>
			<td>7.7</td>
		</tr>
		<tr>
			<td>%%cve:2026-47654%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>7.5</td>
			<td>6.6</td>
		</tr>
		<tr>
			<td>%%cve:2026-48563%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>7.5</td>
			<td>6.5</td>
		</tr>
		<tr>
			<td>%%cve:2026-42909%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.5</td>
			<td>6.5</td>
		</tr>
		<tr>
			<td>%%cve:2026-42913%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.5</td>
			<td>6.5</td>
		</tr>
		<tr>
			<td>%%cve:2026-42992%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>7.5</td>
			<td>6.5</td>
		</tr>
		<tr>
			<td>%%cve:2026-44799%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>7.5</td>
			<td>6.5</td>
		</tr>
		<tr>
			<td>%%cve:2026-44801%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>7.5</td>
			<td>6.5</td>
		</tr>
		<tr>
			<td>%%cve:2026-42985%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>8.8</td>
			<td>7.7</td>
		</tr>
		<tr>
			<td>%%cve:2026-42993%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.5</td>
			<td>6.5</td>
		</tr>
		<tr>
			<td colspan="8">Secure Boot Security Feature Bypass Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45588%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.9</td>
			<td>6.9</td>
		</tr>
		<tr>
			<td>%%cve:2026-48568%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.9</td>
			<td>6.9</td>
		</tr>
		<tr>
			<td>%%cve:2026-48570%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.9</td>
			<td>7.1</td>
		</tr>
		<tr>
			<td>%%cve:2026-48573%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.9</td>
			<td>6.9</td>
		</tr>
		<tr>
			<td>%%cve:2026-48575%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.9</td>
			<td>6.9</td>
		</tr>
		<tr>
			<td>%%cve:2026-48576%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.9</td>
			<td>6.9</td>
		</tr>
		<tr>
			<td>%%cve:2026-48578%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.9</td>
			<td>6.9</td>
		</tr>
		<tr>
			<td>%%cve:2026-45654%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.9</td>
			<td>6.9</td>
		</tr>
		<tr>
			<td colspan="8">UEFI Secure Boot Security Feature Bypass Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45656%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Visual Studio Code Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-40376%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.5</td>
			<td>6.5</td>
		</tr>
		<tr>
			<td>%%cve:2026-47281%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>9.6</td>
			<td>8.3</td>
		</tr>
		<tr>
			<td colspan="8">Visual Studio Code Information Disclosure Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-47284%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>6.5</td>
			<td>5.7</td>
		</tr>
		<tr>
			<td colspan="8">Visual Studio Code MSSQL Extension Remote Code Execution Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-47292%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Visual Studio Code Security Feature Bypass Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-48569%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.1</td>
			<td>6.2</td>
		</tr>
		<tr>
			<td colspan="8">Visual Studio Code Tampering Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-47287%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>6.5</td>
			<td>5.7</td>
		</tr>
		<tr>
			<td colspan="8">Windows Active Directory Domain Services Remote Code Execution Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45648%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>8.8</td>
			<td>7.7</td>
		</tr>
		<tr>
			<td colspan="8">Windows Administrator Protection Secure Feature Bypass Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-42829%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Windows Ancillary Function Driver for WinSock Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-34335%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.0</td>
			<td>6.1</td>
		</tr>
		<tr>
			<td>%%cve:2026-45601%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.0</td>
			<td>6.1</td>
		</tr>
		<tr>
			<td>%%cve:2026-45598%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.0</td>
			<td>6.1</td>
		</tr>
		<tr>
			<td>%%cve:2026-45596%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.0</td>
			<td>6.1</td>
		</tr>
		<tr>
			<td>%%cve:2026-45638%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-45603%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.0</td>
			<td>6.1</td>
		</tr>
		<tr>
			<td>%%cve:2026-42911%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.0</td>
			<td>6.1</td>
		</tr>
		<tr>
			<td colspan="8">Windows Application Identity (AppID) Information Disclosure Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45594%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.5</td>
			<td>4.8</td>
		</tr>
		<tr>
			<td colspan="8">Windows BitLocker Security Feature Bypass Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45655%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.3</td>
			<td>4.6</td>
		</tr>
		<tr>
			<td>%%cve:2026-45658%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-50507%%</td>
			<td class="msftyes">Yes</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>6.8</td>
			<td>6.1</td>
		</tr>
		<tr>
			<td colspan="8">Windows Bluetooth Port Driver Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45640%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.0</td>
			<td>6.1</td>
		</tr>
		<tr>
			<td colspan="8">Windows Bluetooth Service Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45605%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Windows Boot Manager Security Feature Bypass Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-47656%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.9</td>
			<td>6.9</td>
		</tr>
		<tr>
			<td colspan="8">Windows Collaborative Translation Framework (CTFMON) Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45586%%</td>
			<td class="msftyes">Yes</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Windows Common Log File System Driver Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-44809%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Windows DHCP Client Information Disclosure Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45634%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.5</td>
			<td>4.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-45608%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>6.8</td>
			<td>5.9</td>
		</tr>
		<tr>
			<td colspan="8">Windows DNS Client Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-41108%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.0</td>
			<td>6.1</td>
		</tr>
		<tr>
			<td colspan="8">Windows DWM Core Library Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-42905%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-44811%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-44808%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-44807%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-42983%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-44802%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-44813%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-44804%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Windows DWM Core Library Information Disclosure Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-48566%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.5</td>
			<td>4.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-44814%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.5</td>
			<td>4.8</td>
		</tr>
		<tr>
			<td colspan="8">Windows Deployment Services (WDS) Remote Code Execution</td>
		</tr>
		<tr>
			<td>%%cve:2026-42987%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>8.1</td>
			<td>7.1</td>
		</tr>
		<tr>
			<td colspan="8">Windows Device Health Attestation (DHA) Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-33828%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Windows Dynamic Host Configuration Protocol (DHCP) Tampering Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45602%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>9.1</td>
			<td>7.9</td>
		</tr>
		<tr>
			<td colspan="8">Windows Function Discovery Service (fdwsd.dll) Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-42836%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.0</td>
			<td>6.1</td>
		</tr>
		<tr>
			<td colspan="8">Windows Graphics Component Remote Code Execution Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-44803%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-44812%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Windows Hotpatch Monitoring Service Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-42910%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Windows Hyper-V Information Disclosure Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-42972%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.5</td>
			<td>4.8</td>
		</tr>
		<tr>
			<td colspan="8">Windows Hyper-V Remote Code Execution Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45607%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>8.4</td>
			<td>7.3</td>
		</tr>
		<tr>
			<td>%%cve:2026-45641%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>8.4</td>
			<td>7.3</td>
		</tr>
		<tr>
			<td>%%cve:2026-47652%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>8.2</td>
			<td>7.1</td>
		</tr>
		<tr>
			<td colspan="8">Windows Internet (wininet.dll) Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45592%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Windows Kerberos Denial of Service Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-42903%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>6.5</td>
			<td>5.7</td>
		</tr>
		<tr>
			<td>%%cve:2026-42914%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.3</td>
			<td>4.6</td>
		</tr>
		<tr>
			<td colspan="8">Windows Kerberos Key Distribution Center (KDC) Remote Code Execution</td>
		</tr>
		<tr>
			<td>%%cve:2026-47288%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>7.1</td>
			<td>6.2</td>
		</tr>
		<tr>
			<td colspan="8">Windows Kernel Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-48583%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-45653%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.0</td>
			<td>6.1</td>
		</tr>
		<tr>
			<td>%%cve:2026-42984%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.0</td>
			<td>6.1</td>
		</tr>
		<tr>
			<td colspan="8">Windows Kernel Remote Code Execution Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45657%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>9.8</td>
			<td>8.5</td>
		</tr>
		<tr>
			<td colspan="8">Windows Kernel-Mode Driver Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45600%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Windows Managed Installer Information Disclosure Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45604%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.5</td>
			<td>4.8</td>
		</tr>
		<tr>
			<td colspan="8">Windows Mark of the Web Security Feature Bypass Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45595%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.4</td>
			<td>4.7</td>
		</tr>
		<tr>
			<td colspan="8">Windows Media Remote Code Execution Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-48574%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftcritical">Critical</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Windows NTFS Remote Code Execution Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45636%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Windows NTLM Spoofing Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-50508%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>6.5</td>
			<td>5.7</td>
		</tr>
		<tr>
			<td colspan="8">Windows Narrator Braille Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-48565%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Windows Network Controller (NC) Host Agent Denial of Service Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-44805%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.5</td>
			<td>4.8</td>
		</tr>
		<tr>
			<td colspan="8">Windows Performance Monitor Remote Code Execution Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-42981%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>8.1</td>
			<td>7.1</td>
		</tr>
		<tr>
			<td>%%cve:2026-42974%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>8.1</td>
			<td>7.1</td>
		</tr>
		<tr>
			<td colspan="8">Windows Program Compatibility Assistant Service Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45487%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Windows Projected File System Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-42828%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-42837%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Windows Push Notification Information Disclosure Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-42969%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.5</td>
			<td>4.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-42971%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.5</td>
			<td>4.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-42970%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.5</td>
			<td>4.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-42973%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.5</td>
			<td>4.8</td>
		</tr>
		<tr>
			<td colspan="8">Windows Push Notifications Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-42978%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-42977%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-42979%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-42991%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Windows Remote Desktop Protocol (RDP) Information Disclosure Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45639%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.5</td>
			<td>6.5</td>
		</tr>
		<tr>
			<td>%%cve:2026-42908%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.5</td>
			<td>6.5</td>
		</tr>
		<tr>
			<td colspan="8">Windows SDK Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45593%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Windows Shell Information Disclosure Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-42906%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.5</td>
			<td>4.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-42907%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>6.5</td>
			<td>5.7</td>
		</tr>
		<tr>
			<td colspan="8">Windows Storage Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-47648%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.0</td>
			<td>6.1</td>
		</tr>
		<tr>
			<td colspan="8">Windows TCP/IP Denial of Service Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-42915%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.7</td>
			<td>5.0</td>
		</tr>
		<tr>
			<td colspan="8">Windows TCP/IP Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-42904%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>9.6</td>
			<td>8.3</td>
		</tr>
		<tr>
			<td colspan="8">Windows Telephony Server Information Disclosure Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-42968%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>5.5</td>
			<td>4.8</td>
		</tr>
		<tr>
			<td colspan="8">Windows Telephony Service Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-42912%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.0</td>
			<td>6.1</td>
		</tr>
		<tr>
			<td colspan="8">Windows UI Automation Manager (uiamanager.dll) Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45597%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.0</td>
			<td>6.1</td>
		</tr>
		<tr>
			<td colspan="8">Windows UPnP Device Host Remote Code Execution Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-45599%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>8.1</td>
			<td>7.1</td>
		</tr>
		<tr>
			<td>%%cve:2026-45635%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>8.1</td>
			<td>7.1</td>
		</tr>
		<tr>
			<td colspan="8">Windows Universal Disk Format File System Driver (UDFS) Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-40409%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td>%%cve:2026-40404%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
		<tr>
			<td colspan="8">Winlogon Elevation of Privilege Vulnerability</td>
		</tr>
		<tr>
			<td>%%cve:2026-42989%%</td>
			<td class="msftno">No</td>
			<td class="msftno">No</td>
			<td>-</td>
			<td>-</td>
			<td class="msftimportant">Important</td>
			<td>7.8</td>
			<td>6.8</td>
		</tr>
	</tbody>
</table>

<p>&nbsp;</p>

<p>--<br />
Johannes B. Ullrich, Ph.D. , Dean of Research, <a href="https://sans.edu">SANS.edu</a><br />
<a href="https://jbu.me/164">Twitter</a>|</p>

<p>&nbsp;</p>

 
 (c) SANS Internet Storm Center. https://isc.sans.edu Creative Commons Attribution-Noncommercial 3.0 United States License.]]></content:encoded>    <pubDate>Tue, 09 Jun 2026 17:34:29 GMT</pubDate>  </item>  <item>
    <title><![CDATA[ISC Stormcast For Tuesday, June 9th, 2026 https://isc.sans.edu/podcastdetail/9964, (Tue, Jun 9th)]]></title>
    <link>https://isc.sans.edu/diary/rss/33062</link>    <guid>https://isc.sans.edu/diary/rss/33062</guid><description><![CDATA[  (c) SANS Internet Storm Center. https://isc.sans.edu Creative Commons Attribution-Noncommercial 3.0 United States License.]]></description><content:encoded><![CDATA[
 
 (c) SANS Internet Storm Center. https://isc.sans.edu Creative Commons Attribution-Noncommercial 3.0 United States License.]]></content:encoded>    <pubDate>Tue, 09 Jun 2026 02:00:03 GMT</pubDate>  </item>  <item>
    <title><![CDATA[TeamPCP Supply Chain Campaign: Activity Through 2026-06-07, (Mon, Jun 8th)]]></title>
    <link>https://isc.sans.edu/diary/rss/33060</link>    <guid>https://isc.sans.edu/diary/rss/33060</guid><description><![CDATA[ <p>This diary continues the Internet Storm Center&&#x23&#x3b;x26&#x3b;&#x23&#x3b;39&#x3b;s tracking of the TeamPCP supply chain campaign, first documented in the SANS white paper <a href="https://www.sans.org/white-papers/when-security-scanner-became-weapon">When the Security Scanner Became the Weapon</a> and most recently in the handler diary <a href="https://isc.sans.edu/diary/33014">Activity Through 2026-05-24</a>. Since that update, the story moved into two new places: the United States government, which formally caught up to the campaign, and the wider population of attackers now wielding the Mini Shai-Hulud framework that TeamPCP open-sourced last month.</p>&#xd;]]></description><content:encoded><![CDATA[<p>This diary continues the Internet Storm Center&#39;s tracking of the TeamPCP supply chain campaign, first documented in the SANS white paper&nbsp;<a href="https://www.sans.org/white-papers/when-security-scanner-became-weapon">When the Security Scanner Became the Weapon</a>&nbsp;and most recently in the handler diary&nbsp;<a href="https://isc.sans.edu/diary/33014">Activity Through 2026-05-24</a>. Since that update, the story moved into two new places: the United States government, which formally caught up to the campaign, and the wider population of attackers now wielding the Mini Shai-Hulud framework that TeamPCP open-sourced last month.</p>

<h2 id="bottom-line-up-front">Bottom line up front</h2>

<p>Two developments stand out since the last update. First, the federal response that prior coverage flagged as conspicuously absent arrived in a roughly 48-hour burst: on 2026-05-27 CISA added the campaign&#39;s primary tracking vulnerabilities to its Known Exploited Vulnerabilities catalog, and on 2026-05-28 it issued its first standalone advisory naming the Nx Console and GitHub repository compromises. Second, the leaked Mini Shai-Hulud framework produced its first significant in-the-wild npm wave: beginning 2026-06-01, a credential-stealing worm that Wiz named &quot;Miasma&quot; compromised dozens of @redhat-cloud-services packages, followed two days later by a &quot;Phantom Gyp&quot; variant that reached 57 more. Vendors trace the malware to the TeamPCP lineage but now explicitly caution that a copycat using the public toolkit cannot be ruled out. The affiliated extortion channels stayed frozen, so this period&#39;s activity was ecosystem-scale worming rather than named-victim extortion.</p>

<h2 id="how-this-developed">How this developed</h2>

<p>The last update closed with two open questions: whether CISA would act on a campaign it had so far left out of the KEV catalog, and whether the framework TeamPCP published to GitHub would produce copycat attacks. Both resolved in the affirmative. CISA&#39;s KEV addition and standalone advisory closed the government-silence gap within roughly a day of each other. A week later, the Red Hat npm compromise demonstrated that the open-sourced code is now operational in other hands. The throughline is that the campaign has entered a phase where its tradecraft outlives any single operator: the same techniques, subverted build pipelines that emit validly signed artifacts and install-time credential theft, now arrive from attackers who may have no direct connection to TeamPCP at all.</p>

<h2 id="what-changed-by-theme">What changed, by theme</h2>

<h3 id="cisa-formally-caught-up">CISA formally caught up</h3>

<p>On 2026-05-27, CISA added&nbsp;<a href="https://www.cisa.gov/news-events/alerts/2026/05/27/cisa-adds-three-known-exploited-vulnerabilities-catalog">three vulnerabilities to the KEV catalog</a>, including %%cve:2026-45321%% (the TanStack / Mini Shai-Hulud tracking identifier) and %%cve:2026-48027%% (the malicious code embedded in the Nx Console v18.95.0 build), both carrying a federal remediation due date of 2026-06-10, alongside %%cve:2026-8398%% (DAEMON Tools Lite). This resolved the multi-week KEV omission that earlier coverage tracked as an open question. The additions were corroborated by&nbsp;<a href="https://www.scworld.com/brief/cisa-adds-daemon-tools-tanstack-and-nx-console-flaws-to-known-exploited-vulnerabilities-catalog">SC Media</a>&nbsp;and&nbsp;<a href="https://securityaffairs.com/192776/security/u-s-cisa-adds-daemon-tools-tanstack-and-nx-console-flaws-to-its-known-exploited-vulnerabilities-catalog.html">Security Affairs</a>.</p>

<p>The next day, 2026-05-28, CISA published its first standalone advisory on the campaign,&nbsp;<a href="https://www.cisa.gov/news-events/alerts/2026/05/28/supply-chain-compromises-impact-nx-console-and-github-repositories">Supply Chain Compromises Impact Nx Console and GitHub Repositories</a>. The advisory documents the poisoned Nx Console VS Code extension auto-distributed through the editor update mechanism, the exfiltration of approximately 3,800 GitHub-internal repositories, the assignment of %%cve:2026-48027%%, and a separate &quot;Megalodon&quot; campaign that injected malicious GitHub Actions workflows to harvest CI/CD secrets and cloud credentials in public repositories. CISA urges forensic review of CI/CD logs and cloud audit trails and rotation of all CI/CD-accessible secrets.&nbsp;<a href="https://www.techradar.com/pro/security/cisa-warns-that-nx-console-and-github-repositories-abused-in-multiple-supply-chain-compromises-tools-across-enterprise-cloud-and-devops-environments-exploited">TechRadar Pro</a>&nbsp;and&nbsp;<a href="https://www.cybersecuritydive.com/news/cisa-security-software-supply-chain-compromises-GitHub/821487/">Cybersecurity Dive</a>&nbsp;carried the advisory to a wider audience.</p>

<h3 id="the-leaked-framework-produced-its-first-major-wave-red-hat-npm">The leaked framework produced its first major wave: Red Hat npm</h3>

<p>On 2026-06-01, a supply chain attack that Wiz named&nbsp;<a href="https://www.wiz.io/blog/miasma-supply-chain-attack-targeting-redhat-npm-packages">&quot;Miasma&quot;</a>&nbsp;compromised at least 32 packages (across roughly 90 or more versions) published under the @redhat-cloud-services npm scope, with the affected packages cumulatively averaging about 80,000 weekly downloads. The attacker used a compromised Red Hat employee GitHub account to inject malicious GitHub Actions workflows into RedHatInsights repositories, so the malicious releases carried valid SLSA provenance attestations: the pipeline genuinely ran Red Hat code that contained attacker-injected steps. The payload was a credential-stealing worm with a preinstall script and new cloud-identity collectors for GCP and Azure, and the obfuscated index.js grew from roughly 200 KB to about 4.29 MB. Corroborated by&nbsp;<a href="https://www.bleepingcomputer.com/news/security/red-hat-npm-packages-compromised-to-steal-developer-credentials/">BleepingComputer</a>&nbsp;and&nbsp;<a href="https://www.cybersecuritydive.com/news/dozens-red-hat-npm-packages-supply-chain-attack/821723/">Cybersecurity Dive</a>.</p>

<p><a href="https://www.microsoft.com/en-us/security/blog/2026/06/02/preinstall-persistence-inside-red-hat-npm-miasma-credential-stealing-campaign/">Microsoft Threat Intelligence</a>&nbsp;published its analysis on 2026-06-02, confirming the 32 packages across more than 90 versions and characterizing the payload as a lightly reskinned descendant of the Mini Shai-Hulud worm.&nbsp;<a href="https://unit42.paloaltonetworks.com/monitoring-npm-supply-chain-attacks/">Unit 42</a>&nbsp;folded the compromise into its running npm tracker the same day.</p>

<h3 id="install-time-tradecraft-advanced-within-days-phantom-gyp">Install-time tradecraft advanced within days: Phantom Gyp</h3>

<p>On 2026-06-03, a follow-on variant that StepSecurity named &quot;Phantom Gyp&quot; compromised 57 additional packages across 286 or more malicious versions in under two hours. Rather than modifying the package.json scripts field, the variant weaponized binding.gyp files to trigger node-gyp execution at install time, evading monitors that watch only package.json. The largest named victim was @vapi-ai/server-sdk, the official server SDK for the&nbsp;<a href="http://Vapi.ai">Vapi.ai</a>&nbsp;voice platform, with over 408,000 monthly downloads. See&nbsp;<a href="https://www.techtimes.com/articles/317832/20260605/red-hat-npm-packages-compromised-57-more-follow-signed-attestations-cannot-block-pipeline-hijack.htm">TechTimes</a>, corroborated by Wiz and&nbsp;<a href="https://www.protoslabs.io/resources/teampcp-shai-hulud-megalodon-supply-chain-jun-2026">Protos Labs</a>.</p>

<h3 id="attribution-is-now-genuinely-ambiguous">Attribution is now genuinely ambiguous</h3>

<p>Wiz, Microsoft, and Unit 42 all describe the Red Hat payload as Mini Shai-Hulud derived while explicitly warning that a copycat leveraging the public toolkit cannot be excluded. Wiz states the similarities should be treated as evidence of TTP overlap rather than definitive attribution to TeamPCP. This is the practical materialization of the copycat risk flagged when TeamPCP open-sourced its framework: the defender takeaway is unchanged, but single-incident attribution to the operators is now weaker than it was during the operator-run phase earlier in the campaign.</p>

<h3 id="signed-provenance-still-does-not-save-you">Signed provenance still does not save you</h3>

<p>As with the earlier TanStack incident, the Red Hat packages shipped valid provenance attestations because the build pipeline itself was subverted from within. Trade reporting this period foregrounded the point that signed attestations cannot block a pipeline hijack. Build-provenance attestation confirms that an artifact came from a given pipeline; it does not confirm that the pipeline was free of attacker-injected steps.</p>

<h3 id="monetization-stayed-frozen">Monetization stayed frozen</h3>

<p>The affiliated extortion channels posted nothing in this period. Per direct checks of&nbsp;<a href="https://www.ransomware.live/group/vect">ransomware.live</a>, the Vect leak site remained at 25 victims with its most recent listing dated 2026-04-15, and&nbsp;<a href="https://www.ransomware.live/group/cipherforce">CipherForce</a>&nbsp;remained at 6 victims with last activity dated 2026-02-23. The contrast from earlier in the campaign holds: the supply chain operation draws government and vendor attention while the affiliate-ransomware channel remains dormant.</p>

<h2 id="what-defenders-should-do-now">What defenders should do now</h2>

<ul>
	<li>Treat the 2026-06-10 CISA remediation deadline for %%cve:2026-45321%% and %%cve:2026-48027%% as binding. Confirm no exposed Nx Console v18.95.0 install remains and that TanStack-related exposure is remediated.</li>
	<li>Rotate all CI/CD-accessible secrets and cloud credentials, and review CI/CD logs and cloud audit trails, per the CISA advisory. Assume any token reachable from a build pipeline is potentially exposed.</li>
	<li>Inventory use of the affected scopes (@redhat-cloud-services, and the earlier @antv) and packages such as @vapi-ai/server-sdk. Pin to known-good versions and rebuild from a trusted state.</li>
	<li>Monitor install-time execution beyond the package.json scripts field. Include binding.gyp and node-gyp hooks in detection, since Phantom Gyp moved specifically to evade scripts-only monitors. Consider running install with scripts disabled in CI where feasible.</li>
	<li>Do not rely on SLSA provenance attestations alone. Valid provenance does not defend against a compromised build environment; pair it with build-environment integrity controls and behavioral monitoring of install steps.</li>
	<li>Enforce two-factor authentication on registry maintainer accounts, scope publish tokens narrowly, and alert on anomalous workflow changes in source repositories.</li>
</ul>

<h2 id="watch-items">Watch items</h2>

<ul>
	<li>A formal Red Hat post-incident statement and a definitive package and version inventory, including confirmation of the compromised employee-account vector and any downstream notification to consumers.</li>
	<li>Convergence or divergence on attribution. Watch for whether Mandiant or the Google Threat Intelligence Group issues a dedicated note either claiming the Miasma and Phantom Gyp waves as UNC6780 or designating a separate copycat cluster.</li>
	<li>Further binding.gyp and node-gyp install-time abuse beyond the @redhat-cloud-services scope, and whether registry-side or scanner-side detection adapts to install hooks outside package.json.</li>
	<li>The CISA KEV remediation deadline of 2026-06-10. Watch for deadline-driven follow-on guidance, KEV additions covering the Red Hat activity, or disclosure of federal-agency exposure as the date passes.</li>
	<li>Resumption of named-victim extortion. Watch the Vect and CipherForce leak sites for any end to their multi-month dormancy, which would signal a shift back from ecosystem worming to monetization.</li>
</ul>

 
 (c) SANS Internet Storm Center. https://isc.sans.edu Creative Commons Attribution-Noncommercial 3.0 United States License.]]></content:encoded>    <pubDate>Mon, 08 Jun 2026 17:07:37 GMT</pubDate>  </item>  <item>
    <title><![CDATA[ISC Stormcast For Monday, June 8th, 2026 https://isc.sans.edu/podcastdetail/9962, (Mon, Jun 8th)]]></title>
    <link>https://isc.sans.edu/diary/rss/33058</link>    <guid>https://isc.sans.edu/diary/rss/33058</guid><description><![CDATA[  (c) SANS Internet Storm Center. https://isc.sans.edu Creative Commons Attribution-Noncommercial 3.0 United States License.]]></description><content:encoded><![CDATA[
 
 (c) SANS Internet Storm Center. https://isc.sans.edu Creative Commons Attribution-Noncommercial 3.0 United States License.]]></content:encoded>    <pubDate>Mon, 08 Jun 2026 02:00:03 GMT</pubDate>  </item>  <item>
    <title><![CDATA[The Evil MSI Background is Back&#x21;, (Fri, Jun 5th)]]></title>
    <link>https://isc.sans.edu/diary/rss/33054</link>    <guid>https://isc.sans.edu/diary/rss/33054</guid><description><![CDATA[ <p>A few months ago, I wrote a diary about a payload that was embedded into a JPEG picture. It was a MSI-branded background&#x5b;<a href="https://isc.sans.edu/diary/Malicious&#x2b;Script&#x2b;Delivering&#x2b;More&#x2b;Maliciousness/32682">1</a>&#x5d;. Yesterday, I spotted another one&#x21; It seems that the technic is getting more and more popular. This time, it started with a mail containing a WeTransfer link.</p>&#xd;]]></description><content:encoded><![CDATA[<p>A few months ago, I wrote a diary about a payload that was embedded into a JPEG picture. It was a MSI-branded background[<a href="https://isc.sans.edu/diary/Malicious+Script+Delivering+More+Maliciousness/32682">1</a>]. Yesterday, I spotted another one! It seems that the technic is getting more and more popular. This time, it started with a mail containing a WeTransfer link.</p>

<p><img alt="" src="https://isc.sans.edu/diaryimages/images/isc-20260605-1.png" style="width: 600px; height: 923px;" /></p>

<p>Often, the WeTransfer brand is abused in phishing emails. Here, it&#39;s was an official link:&nbsp;</p>

<pre style="background: rgb(238, 238, 238); border: 1px solid rgb(204, 204, 204); padding: 5px 10px;">
hxxps://we[.]tl/t-R4Wv1JkvFfC4Awus</pre>

<p>The thread-actor shared the initial file via this platform. The file is a piece of Javascript called &quot;Remittance Advice.js&quot; (SHA256:8a83de81fbac4eb0961f3d58982f299664a5fa4c874c7469e69f85f3fc5bd33f).</p>

<p>The contains a lot of junk code that will just do nothing:</p>

<p><img alt="" src="https://isc.sans.edu/diaryimages/images/isc-20260605-2.png" style="width: 600px; height: 361px;" /></p>

<p>Every for-loop will just move to the next line. In the middle of the file (&gt;2MB), we have the interesting code that will perform the following tasks:</p>

<p>It will decode the next payload in an environment variable:</p>

<pre style="background: rgb(238, 238, 238); border: 1px solid rgb(204, 204, 204); padding: 5px 10px;">
[Environment]::SetEnvironmentVariable(&quot;INTERNAL_DB_CACHE&quot;, &lt;encoded_payload&gt;)</pre>

<p>The obfuscation technique used is ROT13, old but still very efficient:</p>

<pre style="background: rgb(238, 238, 238); border: 1px solid rgb(204, 204, 204); padding: 5px 10px;">
cbjrefuryy.rkr -RkrphgvbaCbyvpl Olcnff -AbCebsvyr -JvaqbjFglyr Uvqqra -Pbzznaq</pre>

<p>Decoded, it becomes:</p>

<pre style="background: rgb(238, 238, 238); border: 1px solid rgb(204, 204, 204); padding: 5px 10px;">
powershell.exe -ExecutionPolicy Bypass -NoProfile -WindowStyle Hidden -Command</pre>

<p>PowerShell is executed throug WMI:</p>

<ul>
	<li>winmgmts:root\cimv2: connect to WMI</li>
	<li>Win32_ProcessStartup: configure process startup (hidden window)</li>
	<li>Win32_Process.Create(): spawn the process</li>
</ul>

<p>The full command is:</p>

<pre style="background: rgb(238, 238, 238); border: 1px solid rgb(204, 204, 204); padding: 5px 10px;">
powershell.exe -ExecutionPolicy Bypass -NoProfile -WindowStyle Hidden -Command [ScriptBlock]::Create(${env:INTERNAL_DB_CACHE})</pre>

<p>This code will fetch an MSI background JPEG file from this location:</p>

<pre style="background: rgb(238, 238, 238); border: 1px solid rgb(204, 204, 204); padding: 5px 10px;">
hxxp://icy-lab-0431[.]guilherme-telecomunicacoes2024[.]workers[.]dev/mCSlB</pre>

<p>Note that the threat-actor likes to use well-known services to store his/her payloads. workers.dev is the default, free subdomain provided by Cloudflare for deploying serverless applications[<a href="https://developers.cloudflare.com/workers/">2</a>].</p>

<p>The technique to hide the next payload is the same as my previous diary. The Base64-encode payload is delimited here with &quot;IN-&quot; and &quot;-in1&quot;. To defeat simple Base64 lookups, all &quot;A&quot; characters have been replaced by &quot;#&quot;. Once decoded, the payload is a .Net DLL (SHA256:184a3008adff54cb345a599b4f3ca0c7bde29d8ac8379783ff40cd4e7ecc931b). It&#39;s a modified version of the Microsoft.Win32.TaskScheduler, an open-source .NET library for managing Windows Task Scheduler[<a href="https://github.com/dahall/taskscheduler">3</a>].</p>

<p>The PowerShell payload will also fetch another file that will be passed to the loaded malicious DLL:</p>

<pre style="background: rgb(238, 238, 238); border: 1px solid rgb(204, 204, 204); padding: 5px 10px;">
hxxps://pub-a06eb79f0ebe4a6999bcc71a2227d8e3[.]r2[.]dev/snake.png</pre>

<p>Here again, a legit online service is used. r2.dev is the default domain used by Cloudflare R2 to serve files and assets stored in public cloud-native buckets. It is a globally distributed, S3-compatible object storage service that allows developers to store large amounts of unstructured data[<a href="https://developers.cloudflare.com/r2/buckets/public-buckets/">4</a>].</p>

<p>The file looks to be another background and contains probably another payload protected by steganograpy (very common with the .Net loaders):</p>

<p><img alt="" src="https://isc.sans.edu/diaryimages/images/isc-20260605-3(1).png" style="width: 1024px; height: 574px;" /></p>

<p>I&#39;m now reversing the .Net loader. Stay tuned for more details soon!</p>

<p>[1]&nbsp;<a href="https://isc.sans.edu/diary/Malicious+Script+Delivering+More+Maliciousness/32682">https://isc.sans.edu/diary/Malicious+Script+Delivering+More+Maliciousness/32682</a><br />
[2]&nbsp;<a href="https://developers.cloudflare.com/workers/">https://developers.cloudflare.com/workers/</a><br />
[3]&nbsp;<a href="https://github.com/dahall/taskscheduler">https://github.com/dahall/taskscheduler</a><br />
[4]&nbsp;<a href="https://developers.cloudflare.com/r2/buckets/public-buckets/">https://developers.cloudflare.com/r2/buckets/public-buckets/</a></p>

<p><b>Xavier Mertens (@xme)</b><br />
Xameco<br />
Senior ISC Handler - Freelance Cyber Security Consultant<br />
<a href="https://raw.githubusercontent.com/xme/pgp/refs/heads/main/public.key">PGP Key</a></p>

 
 (c) SANS Internet Storm Center. https://isc.sans.edu Creative Commons Attribution-Noncommercial 3.0 United States License.]]></content:encoded>    <pubDate>Fri, 05 Jun 2026 06:47:26 GMT</pubDate>  </item>  <item>
    <title><![CDATA[ISC Stormcast For Friday, June 5th, 2026 https://isc.sans.edu/podcastdetail/9960, (Fri, Jun 5th)]]></title>
    <link>https://isc.sans.edu/diary/rss/33050</link>    <guid>https://isc.sans.edu/diary/rss/33050</guid><description><![CDATA[  (c) SANS Internet Storm Center. https://isc.sans.edu Creative Commons Attribution-Noncommercial 3.0 United States License.]]></description><content:encoded><![CDATA[
 
 (c) SANS Internet Storm Center. https://isc.sans.edu Creative Commons Attribution-Noncommercial 3.0 United States License.]]></content:encoded>    <pubDate>Fri, 05 Jun 2026 02:00:02 GMT</pubDate>  </item>  <item>
    <title><![CDATA[Microsoft's Coreutils for Windows, (Thu, Jun 4th)]]></title>
    <link>https://isc.sans.edu/diary/rss/33048</link>    <guid>https://isc.sans.edu/diary/rss/33048</guid><description><![CDATA[ <p>I&&#x23&#x3b;x26&#x3b;&#x23&#x3b;39&#x3b;ve been using the GnuWin32 CoreUtils for Windows for many years now (it gives you many &#x2a;nix core commands on Windows).</p>&#xd;]]></description><content:encoded><![CDATA[<p>I&#39;ve been using the GnuWin32 CoreUtils for Windows for many years now (it gives you many *nix core commands on Windows).</p>

<p>Microsoft has just&nbsp;<a href="https://github.com/microsoft/coreutils">released</a> their coreutils version for Windows.</p>

<p>You can install them with a winget command (winget install Microsoft.Coreutils) or with the <a href="https://github.com/microsoft/coreutils/releases">installer released on GitHub</a>.</p>

<p>It takes just a few clicks:</p>

<p><img alt="" src="https://isc.sans.edu/diaryimages/images/20260604-074226.png" style="width: 613px; height: 479px;" /></p>

<p><img alt="" src="https://isc.sans.edu/diaryimages/images/20260604-074240.png" style="width: 613px; height: 479px;" /></p>

<p><img alt="" src="https://isc.sans.edu/diaryimages/images/20260604-074312.png" style="width: 613px; height: 479px;" /></p>

<p>It installs a single executable compiled with Rust (coreutils.exe) in the program files folder:</p>

<p><img alt="" src="https://isc.sans.edu/diaryimages/images/20260604-074636.png" style="width: 833px; height: 435px;" /></p>

<p>And each individual command is a hard link to this executable:</p>

<p><img alt="" src="https://isc.sans.edu/diaryimages/images/20260604-074703.png" style="width: 783px; height: 575px;" /></p>

<p>Here is the full list of commands:</p>

<p>&nbsp;</p>

<pre>
<code>arch.cmd
b2sum.cmd
base32.cmd
base64.cmd
basename.cmd
basenc.cmd
cat.cmd
cksum.cmd
comm.cmd
cp.cmd
csplit.cmd
cut.cmd
date.cmd
df.cmd
dirname.cmd
du.cmd
echo.cmd
env.cmd
expr.cmd
factor.cmd
false.cmd
find.cmd
fmt.cmd
fold.cmd
grep.cmd
head.cmd
hostname.cmd
join.cmd
link.cmd
ln.cmd
ls.cmd
md5sum.cmd
mkdir.cmd
mktemp.cmd
mv.cmd
nl.cmd
nproc.cmd
numfmt.cmd
od.cmd
pathchk.cmd
pr.cmd
printenv.cmd
printf.cmd
ptx.cmd
pwd.cmd
readlink.cmd
realpath.cmd
rm.cmd
rmdir.cmd
seq.cmd
sha1sum.cmd
sha224sum.cmd
sha256sum.cmd
sha384sum.cmd
sha512sum.cmd
shuf.cmd
sleep.cmd
sort.cmd
split.cmd
stat.cmd
sum.cmd
tac.cmd
tail.cmd
tee.cmd
test.cmd
touch.cmd
tr.cmd
true.cmd
truncate.cmd
tsort.cmd
unexpand.cmd
uniq.cmd
unlink.cmd
uptime.cmd
wc.cmd
xargs.cmd
yes.cmd
</code></pre>

<p>Didier Stevens<br />
Senior handler<br />
<a href="http://blog.DidierStevens.com">blog.DidierStevens.com</a></p>

 
 (c) SANS Internet Storm Center. https://isc.sans.edu Creative Commons Attribution-Noncommercial 3.0 United States License.]]></content:encoded>    <pubDate>Thu, 04 Jun 2026 06:10:44 GMT</pubDate>  </item>  <item>
    <title><![CDATA[ISC Stormcast For Thursday, June 4th, 2026 https://isc.sans.edu/podcastdetail/9958, (Thu, Jun 4th)]]></title>
    <link>https://isc.sans.edu/diary/rss/33046</link>    <guid>https://isc.sans.edu/diary/rss/33046</guid><description><![CDATA[  (c) SANS Internet Storm Center. https://isc.sans.edu Creative Commons Attribution-Noncommercial 3.0 United States License.]]></description><content:encoded><![CDATA[
 
 (c) SANS Internet Storm Center. https://isc.sans.edu Creative Commons Attribution-Noncommercial 3.0 United States License.]]></content:encoded>    <pubDate>Thu, 04 Jun 2026 02:00:03 GMT</pubDate>  </item></channel>
</rss>
