CVE-2024-32651Critical· 10.0▾ AbyssalPoC availablechangedetection.io has a Server Side Template Injection using Jinja2 which allows Remote Command Execution
▾ Abyssal zone — Critical with a public exploit or in-the-wild use
impact 55 · likelihood 16.7 · exploitation 12
A public proof-of-concept already exists for this vulnerability — see Exploit availability below.
Public exploit / PoC code seen in 2 sources. Availability, not in-the-wild use.
Exploit-prediction probability, daily snapshots since Sep 12.
Disclosure to exploitation, from the record and what we observed since indexing it.
Disclosed via OSV
Last analysed / modified upstream
84%
2 GitHub repos · Nuclei ×1 (last check)
A Server Side Template Injection in changedetection.io caused by usage of unsafe functions of Jinja2 allows Remote Command Execution on the server host.
changedetection.io version: 0.45.20
docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
dgtlmoon/changedetection.io latest 53529c2e69f1 44 hours ago 423MB
The vulnerability is caused by the usage of vulnerable functions of Jinja2 template engine.
from jinja2 import Environment, BaseLoader
...
# Get the notification body from datastore
jinja2_env = Environment(loader=BaseLoader)
n_body = jinja2_env.from_string(n_object.get('notification_body', '')).render(**notification_parameters)
n_title = jinja2_env.from_string(n_object.get('notification_title', '')).render(**notification_parameters)
{{ self.__init__.__globals__.__builtins__.__import__('os').popen('id').read() }}
In the PoC I've used id as payload and Telegram to read the result.
Attackers can run any system command without any restriction and they don't need to read the result in the notification app (e.g. they could use a reverse shell).
The impact is critical as the attacker can completely takeover the server host.
This can be reduced if changedetection access is protected by login page with a password, but this isn't required by the application (not by default and not enforced).
Edoardo Ottavianelli
changedetection-io < 0.45.21Upgrade to a patched release:
changedetection-io 0.45.21Connected by shared product, vendor, weakness, or advisory.
CVE-2026-27645Medium· 6.1changedetection.io Vulnerable to Reflected XSS in RSS Single Watch Error Response
CVE-2024-34061Medium· 4.3changedetection.io Cross-site Scripting vulnerability
CVE-2024-51483Medium· 6.5changedetection.io Path Traversal
CVE-2024-23329Low· 3.7changedetection.io API endpoint is not secured with API token
CVE-2026-29038Medium· 6.1changedetection.io has Reflected XSS in its RSS Tag Error Response
CVE-2026-29039Highchangedetection.io vulnerable to XPath - Arbitrary File Read via unparsed-text()