<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Cloudflare — CraftedSignal Threat Feed</title><link>https://feed.craftedsignal.io/vendors/cloudflare/</link><description>Trending threats, MITRE ATT&amp;CK coverage, and detection metadata — refreshed continuously.</description><generator>Hugo</generator><language>en</language><managingEditor>hello@craftedsignal.io</managingEditor><webMaster>hello@craftedsignal.io</webMaster><lastBuildDate>Mon, 04 May 2026 15:00:00 +0000</lastBuildDate><atom:link href="https://feed.craftedsignal.io/vendors/cloudflare/feed.xml" rel="self" type="application/rss+xml"/><item><title>Multi-Stage 'Code of Conduct' Phishing Campaign Leads to AiTM Token Compromise</title><link>https://feed.craftedsignal.io/briefs/2026-05-aitm-phishing/</link><pubDate>Mon, 04 May 2026 15:00:00 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2026-05-aitm-phishing/</guid><description>A widespread phishing campaign utilized 'code of conduct' lures, a multi-step attack chain, and legitimate email services to distribute authenticated messages from attacker-controlled domains, ultimately leading to adversary-in-the-middle (AiTM) token compromise, primarily targeting US-based organizations.</description><content:encoded><![CDATA[<p>Between April 14 and 16, 2026, Microsoft Defender Research observed a sophisticated, large-scale phishing campaign targeting over 35,000 users across more than 13,000 organizations in 26 countries, predominantly in the United States (92%). The campaign, which did not focus on a single vertical, impacted a range of industries, with Healthcare &amp; life sciences (19%), Financial services (18%), Professional services (11%), and Technology &amp; software (11%) being the most affected. Attackers employed code of conduct-themed lures delivered via emails that appeared as internal compliance or regulatory communications. The campaign utilized a multi-step attack chain, including CAPTCHA challenges and intermediate staging pages, to reinforce legitimacy and filter out automated defenses, ultimately leading to an adversary-in-the-middle (AiTM) phishing flow.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>The attack begins with phishing emails posing as internal compliance communications, using subjects like &ldquo;Internal case log issued under conduct policy&rdquo;.</li>
<li>The emails contain a PDF attachment (e.g., &ldquo;Awareness Case Log File – Tuesday 14th, April 2026.pdf&rdquo;) that claims a &ldquo;code of conduct review&rdquo; has been initiated.</li>
<li>Recipients are instructed to click a “Review Case Materials” link within the PDF.</li>
<li>Clicking the link redirects the user to one of the attacker-controlled domains (e.g., acceptable-use-policy-calendly[.]de).</li>
<li>The landing page displays a Cloudflare CAPTCHA to validate the user and impede automated analysis.</li>
<li>After CAPTCHA completion, the user is redirected to an intermediate site that informs them the requested documentation is encrypted and requires account authentication.</li>
<li>The user is presented with a legitimate-looking sign-in experience, part of an AiTM phishing flow.</li>
<li>The attackers proxy the authentication session in real time and capture authentication tokens, granting immediate account access.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>This campaign resulted in the compromise of authentication tokens, enabling attackers to gain unauthorized access to user accounts and bypass multifactor authentication. With more than 35,000 users targeted across over 13,000 organizations, the potential for widespread data breaches, financial fraud, and further malicious activities is significant. The targeting of sectors like Healthcare and Financial Services indicates a focus on high-value targets with sensitive data.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Educate users about phishing lures, especially those using social engineering tactics and enterprise-style HTML templates.</li>
<li>Deploy the Sigma rule &ldquo;Detect Suspicious PDF Opening via Uncommon Applications&rdquo; to identify unusual PDF execution paths, based on the &lsquo;file_event&rsquo; log source.</li>
<li>Configure email security settings in Microsoft Defender for Office 365 to filter out phishing emails effectively.</li>
<li>Enable network protection to leverage SmartScreen as a host-based web proxy.</li>
<li>Block access to the attacker-controlled domains, such as acceptable-use-policy-calendly[.]de, at the DNS resolver level.</li>
</ul>
]]></content:encoded><category domain="severity">high</category><category domain="type">advisory</category><category>phishing</category><category>credential-theft</category><category>AiTM</category><category>token-compromise</category></item><item><title>livewire-markdown-editor Arbitrary File Upload Vulnerability</title><link>https://feed.craftedsignal.io/briefs/2024-01-02-livewire-markdown-editor-upload/</link><pubDate>Tue, 02 Jan 2024 12:00:00 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2024-01-02-livewire-markdown-editor-upload/</guid><description>The livewire-markdown-editor versions before v1.3 contain an arbitrary file upload vulnerability in the MarkdownEditor::updatedAttachments() Livewire handler, allowing authenticated users to upload any file type, potentially leading to stored XSS, phishing, malware distribution, and markdown injection.</description><content:encoded><![CDATA[<p>Versions of <code>mckenziearts/livewire-markdown-editor</code> prior to v1.3 are vulnerable to arbitrary file upload via the <code>MarkdownEditor::updatedAttachments()</code> Livewire handler. This handler lacks server-side validation for file types, extensions, and content. An authenticated user with access to a page embedding the markdown editor can upload malicious files (e.g., <code>.html</code>, <code>.svg</code>, <code>.js</code>) to the disk configured by <code>livewire-markdown-editor.disk</code>. If this disk is a public cloud storage bucket (S3, DigitalOcean Spaces, Cloudflare R2, Scaleway Object Storage), the uploaded files are publicly accessible with a guessed <code>Content-Type</code> header. This vulnerability allows attackers to perform stored XSS, host phishing pages, distribute malware, and inject malicious markdown. A real-world exploitation was observed in production.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>An attacker gains access to an application using a vulnerable version of <code>mckenziearts/livewire-markdown-editor</code>.</li>
<li>The attacker navigates to a page embedding the <code>&lt;livewire:markdown-editor&gt;</code> component.</li>
<li>The attacker uses the file upload functionality of the editor to upload a malicious file, such as a <code>.html</code> or <code>.svg</code> file containing XSS payloads.</li>
<li>The <code>MarkdownEditor::updatedAttachments()</code> Livewire handler processes the uploaded file without proper validation.</li>
<li>The handler stores the file on the disk configured by <code>livewire-markdown-editor.disk</code> (e.g., a public cloud bucket like S3, DigitalOcean Spaces, Cloudflare R2, Scaleway Object Storage).</li>
<li>The uploaded file becomes publicly accessible on the storage domain.</li>
<li>A user visits the URL of the uploaded malicious file, triggering the XSS payload or accessing the phishing page.</li>
<li>The attacker achieves their objective, such as stealing user credentials, redirecting users to malicious websites, or compromising the application&rsquo;s integrity.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation of this vulnerability can lead to several critical impacts. Stored XSS on the storage domain can allow attackers to steal user credentials or perform other malicious actions in the context of the application. Phishing pages hosted on the application&rsquo;s storage domain can trick users into revealing sensitive information. Malware distribution from a domain users trust can lead to widespread infections. Additionally, markdown injection via crafted filenames can compromise the integrity of the editor&rsquo;s output. A real-world exploitation of this vulnerability was observed in production on a community platform using this package.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Upgrade to <code>mckenziearts/livewire-markdown-editor</code> v1.3 or later to patch the vulnerability.</li>
<li>If immediate upgrading is not feasible, disable the upload UI on every instance of the editor by passing <code>:show-upload=&quot;false&quot;</code>. This prevents the vulnerable code path from being reached.</li>
<li>Monitor web server logs (category <code>webserver</code>, product <code>linux</code>) for requests to the storage domain for unusual file extensions like <code>.html</code>, <code>.svg</code>, <code>.js</code>, <code>.php</code>, or <code>.exe</code>, which could indicate attempted exploitation.</li>
<li>Implement the file upload detection rule to identify potentially malicious file uploads to the storage domain.</li>
</ul>
]]></content:encoded><category domain="severity">high</category><category domain="type">advisory</category><category>arbitrary-file-upload</category><category>stored-xss</category><category>vulnerability</category></item></channel></rss>