<?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>Echo (V4) - CraftedSignal Threat Feed</title><link>https://feed.craftedsignal.io/products/echo-v4/</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>Tue, 25 Aug 2026 18:50:45 +0000</lastBuildDate><atom:link href="https://feed.craftedsignal.io/products/echo-v4/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>Path Normalization Vulnerability in Echo Web Framework</title><link>https://feed.craftedsignal.io/briefs/2026-08-echo-path-traversal/</link><pubDate>Tue, 25 Aug 2026 18:50:45 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2026-08-echo-path-traversal/</guid><description>An inconsistency between URL path decoding in the Echo framework router and static file handler allows attackers to bypass authentication by using encoded slashes.</description><content:encoded><![CDATA[<p>The Echo web framework, versions of v5 prior to 5.2.0, v4 prior to 4.15.3, and legacy v3 up to 3.3.10, is affected by a path normalization vulnerability (CVE-2026-55677). The issue stems from a disagreement between the routing engine and the StaticDirectoryHandler regarding URL decoding. Specifically, the router matches requests using the raw encoded URL path (keeping '%2F' as is), while the static file handler decodes '%2F' into a literal '/' during filesystem resolution.</p>
<p>This discrepancy allows an attacker to craft requests that bypass route-level access control middleware by obfuscating protected path segments. If an application protects a sensitive directory (e.g., /admin) with authentication middleware, an attacker can use an encoded slash to request paths like '/admin%2Fconfig.json'. The router fails to match the '/admin' pattern, skipping the authentication check, while the static handler later decodes the string to '/admin/config.json', resulting in unauthorized file disclosure.</p>
<h2 id="impact">Impact</h2>
<p>Successful exploitation allows unauthorized disclosure of static files from the application's file system. Applications that serve static files and implement route-based access control are at risk of data leakage. The number of affected deployments is high, given Echo's widespread usage in Go web applications.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Upgrade to Echo v5.2.0, v4.15.3, or later versions immediately to address CVE-2026-55677.</li>
<li>Review applications using <code>StaticFS</code> or <code>StaticDirectoryHandler</code> to ensure that route-level middleware is not bypassed by client-side URL encoding.</li>
<li>Audit web server and application logs for URLs containing encoded characters, specifically '%2F', which may indicate attempted exploitation.</li>
<li>Ensure security configuration for static file routes does not rely solely on path-prefix authentication if the underlying framework router handles path normalization inconsistently.</li>
</ul>
]]></content:encoded><category domain="severity">high</category><category domain="type">advisory</category></item></channel></rss>