<?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/" xmlns:webfeeds="http://webfeeds.org/rss/1.0"><channel><title>SCBE-AETHERMOORE - CraftedSignal Threat Feed</title><link>https://feed.craftedsignal.io/vendors/scbe-aethermoore/</link><description>Trending threats, MITRE ATT&amp;CK coverage, and detection metadata. Fed continuously.</description><generator>Hugo</generator><language>en</language><managingEditor>hello@craftedsignal.io</managingEditor><webMaster>hello@craftedsignal.io</webMaster><lastBuildDate>Sat, 26 Sep 2026 02:06:58 +0000</lastBuildDate><atom:link href="https://feed.craftedsignal.io/vendors/scbe-aethermoore/feed.xml" rel="self" type="application/rss+xml"/><image><url>https://feed.craftedsignal.io/favicon-32x32.png</url><title>CraftedSignal Threat Feed</title><link>https://feed.craftedsignal.io/</link><width>32</width><height>32</height></image><webfeeds:icon>https://feed.craftedsignal.io/favicon.svg</webfeeds:icon><item><title>Unauthenticated AetherBrowser API Exposes Operator Email Metadata</title><link>https://feed.craftedsignal.io/briefs/2026-09-aetherbrowser-unauth-api/</link><pubDate>Sat, 26 Sep 2026 02:06:58 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2026-09-aetherbrowser-unauth-api/</guid><description>An unauthenticated API endpoint in SCBE-AETHERMOORE AetherBrowser allows remote attackers to trigger the execution of a subprocess that retrieves and exposes operator email metadata from IMAP accounts.</description><content:encoded><![CDATA[<p>The SCBE-AETHERMOORE AetherBrowser API server, specifically in version 4.2.1, includes a critical information-disclosure vulnerability within <code>scripts/aetherbrowser/api_server.py</code>. The <code>POST /api/ops/check-email</code> endpoint is exposed without any authentication or authorization mechanisms, such as API-key validation or middleware access guards. By default, the application binds to all interfaces (<code>0.0.0.0:8100</code>) and is configured with wildcard CORS (<code>allow_origins=[&quot;*&quot;]</code>), making it accessible to any network-connected actor.</p>
<p>When invoked, the endpoint triggers the execution of <code>email_reader.py</code> as a subprocess. This script automatically attempts to load credentials from <code>config/connector_oauth/.env.connector.oauth</code> and initiates IMAP connections to configured ProtonMail or Gmail accounts. The API server captures the standard output of this process, which includes sender information, subjects, and body snippets of fetched RFC822 messages, and returns this sensitive data to the caller in a JSON response. This provides a mechanism for unauthorized actors to exfiltrate operational intelligence without requiring credentials or prior access to the host environment.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>Attacker performs network scanning to identify reachable instances of AetherBrowser listening on port 8100.</li>
<li>Attacker crafts a standard HTTP POST request to the <code>/api/ops/check-email</code> endpoint.</li>
<li>The <code>api_server.py</code> processes the request, bypassing authentication checks due to the missing <code>Depends()</code> decorator.</li>
<li>The server executes <code>email_reader.py</code> as a system subprocess (<code>_run_subprocess</code>).</li>
<li>The <code>email_reader.py</code> script parses local environment files to retrieve configured IMAP credentials.</li>
<li>The script establishes an IMAP connection to the target mail provider (ProtonMail or Gmail) using the retrieved credentials.</li>
<li>The script fetches RFC822 messages, parses them, and writes email metadata to stdout.</li>
<li>The API server intercepts the first 2000 characters of stdout and returns the email data to the attacker in the HTTP response.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation allows unauthenticated remote attackers to exfiltrate email metadata, including sender identities, subjects, and content snippets. This disclosure of sensitive operational communications can facilitate follow-on social engineering or targeted attacks against operators. Additionally, repeated calls to the endpoint can lead to IMAP connection exhaustion or account-level security alerts, effectively disclosing the operational infrastructure's mail configuration and diagnostic status.</p>
<h2 id="recommendation">Recommendation</h2>
<ol>
<li>Patch immediately by implementing mandatory API-key validation using a header-based check (e.g., <code>X-API-KEY</code>) for all <code>/api/ops/*</code> endpoints.</li>
<li>Modify the API server configuration to bind only to <code>127.0.0.1</code> to prevent remote access unless explicitly required by the architecture.</li>
<li>Disable wildcard CORS (<code>allow_origins=[&quot;*&quot;]</code>) and restrict access to specific, trusted origins.</li>
<li>Implement strict input and output sanitization for subprocess interactions; the application should not return raw stdout from operational scripts to external API callers.</li>
<li>Rotate all mail credentials stored in <code>config/connector_oauth/.env.connector.oauth</code> if it is suspected that the API was exposed to untrusted networks.</li>
</ol>
]]></content:encoded><category domain="severity">high</category><category domain="type">threat</category></item></channel></rss>