CVE-2026-48708

OliveTin gives access to predefined shell commands from a web interface. In versions 3000.0.0 and prior, the template engine uses a single shared text/template.Template instance (tpl package-level variable in service/internal/tpl/templates.go) across all goroutines. Every action execution calls tpl.Parse(source) followed by t.Execute() on this shared instance with no synchronization. When two or more actions execute concurrently (which is the normal case — each ExecRequest spawns a goroutine), a race condition occurs: one goroutine's Parse overwrites the template tree while another goroutine is calling Execute, causing cross-user command contamination, Go runtime panic, and incorrect command execution. This issue has been resolved in version 3000.13.0.
Configurations

No configuration.

History

24 Jun 2026, 17:17

Type Values Removed Values Added
References
  • () https://github.com/OliveTin/OliveTin/commit/d74da9314005954dd49fa20dabf272247bc76519 -

16 Jun 2026, 15:16

Type Values Removed Values Added
References () https://github.com/OliveTin/OliveTin/security/advisories/GHSA-7fq5-7wr8-rjwj - () https://github.com/OliveTin/OliveTin/security/advisories/GHSA-7fq5-7wr8-rjwj -

15 Jun 2026, 21:17

Type Values Removed Values Added
New CVE

Information

Published : 2026-06-15 21:17

Updated : 2026-06-24 17:17


NVD link : CVE-2026-48708

Mitre link : CVE-2026-48708

CVE.ORG link : CVE-2026-48708


JSON object : View

Products Affected

No product.

CWE
CWE-362

Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition')

CWE-567

Unsynchronized Access to Shared Data in a Multithreaded Context