Skip to content

Commit 8800212

Browse files
authored
Changelog for v4.15.3 (#3012)
Release v4.15.3.
1 parent c3fa2a2 commit 8800212

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## v4.15.3 - 2026-06-14
4+
5+
**Security**
6+
7+
* fix(static): reject encoded path separators that bypass route-level middleware by @vishr in https://github.com/labstack/echo/pull/3011
8+
9+
Fixes [GHSA-vfp3-v2gw-7wfq](https://github.com/labstack/echo/security/advisories/GHSA-vfp3-v2gw-7wfq): an encoded path separator (`%2F` or `%5C`) in a static file URL could bypass route-level middleware (e.g. authentication on a sibling route) and disclose static files. Both `StaticDirectoryHandler` (used by `Static`/`StaticFS`) and the `Static` middleware are affected. Backport of the v5 fix (#3009). Thanks to @a-tt-om and @oran-gugu for reporting.
10+
11+
312
## v4.15.2 - 2026-05-01
413

514
**Security**

echo.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ const (
267267

268268
const (
269269
// Version of Echo
270-
Version = "4.15.2"
270+
Version = "4.15.3"
271271
website = "https://echo.labstack.com"
272272
// http://patorjk.com/software/taag/#p=display&f=Small%20Slant&t=Echo
273273
banner = `

0 commit comments

Comments
 (0)