Логотип exploitDog
Консоль
Логотип exploitDog

exploitDog

github логотип

GHSA-964w-f6gj-5236

Опубликовано: 28 июл. 2026
Источник: github
Github: Прошло ревью
CVSS3: 5.3

Описание

goshs has ACL Bypass & Path Traversal

Summary

sendFile derives the served filename from the raw request path while opening the file from the cleaned path, so appending a trailing slash empties the derived name and defeats both the never-serve rule for the ACL file and the block list.

Finding (Medium): trailing-slash ACL and hidden-file bypass

httpserver/handler.go, sendFile (lines 789-801) takes the filename from the RAW req.URL.Path while the file itself is opened from the filepath.Clean-ed path. The two disagree, and a trailing slash makes the derived name the empty string. Both protections key on that derived name, so both are defeated: the rule that never serves the .goshs ACL file, and the acl.Block list.

Measured, with negative controls:

GET /blocked/secret.txt -> 404 (control, correctly blocked) GET /blocked/secret.txt/ -> 200 + contents GET /blocked/.goshs/ -> 200, returns the ACL file itself, including the admin:$2a$... bcrypt hash

Unauthenticated when the ACL is configured block-only (common usage). Stated precisely: AUTHENTICATION IS NOT BYPASSED. An unauthenticated request against a directory protected by authentication still returns 401 under the same trick; I tested that. The claim is specifically that the block list and the ACL-file protection are bypassed. In-tree evidence that sendFile is the defect: the sibling handlers doDir and bulkDownload both derive the name correctly; sendFile is the lone outlier.

Suggested fixes

  1. Derive the served filename from the same cleaned path used to open the file, so the authorization decision and the file access cannot disagree.

Tooling

AI assistance was used while investigating. The finding was reproduced against a running server on loopback with negative controls, including the 404-versus-200 pair and the authenticated-directory control that shows authentication is not affected.

Пакеты

Наименование

github.com/patrickhener/goshs/v2

go
Затронутые версииВерсия исправления

<= 2.1.4

2.1.5-0.20260727065949-f3ef599e4091

Наименование

goshs.de/goshs/v2

go
Затронутые версииВерсия исправления

<= 2.1.4

2.1.5-0.20260727065949-f3ef599e4091

Наименование

github.com/patrickhener/goshs

go
Затронутые версииВерсия исправления

<= 1.1.4

Отсутствует

Наименование

goshs.de/goshs

go
Затронутые версииВерсия исправления

<= 1.1.4

Отсутствует

EPSS

Процентиль: 23%
0.00308
Низкий

5.3 Medium

CVSS3

Дефекты

CWE-22
CWE-41
CWE-863

Связанные уязвимости

CVSS3: 5.3
nvd
9 дней назад

goshs is a feature-rich single-binary file server for red teamers and developers. Prior to 2.1.5, the httpserver/handler.go sendFile handler opened files using a cleaned path but derived the authorization filename from raw req.URL.Path, so a trailing slash could bypass .goshs ACL-file protection and block-list checks. This issue is fixed in version 2.1.5.

EPSS

Процентиль: 23%
0.00308
Низкий

5.3 Medium

CVSS3

Дефекты

CWE-22
CWE-41
CWE-863