---
id: CVE-2024-56509
aliases:
  - GHSA-j5vv-6wjg-cfr8
  - PYSEC-2026-1242
title: >-
  changedetection.io Vulnerable to Improper Input Validation Leading to LFR/Path
  Traversal
summary: >-
  changedetection.io Vulnerable to Improper Input Validation Leading to LFR/Path
  Traversal
severity: high
cvss: 8.6
cvssVector: 'CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:N'
vendor: changedetection-io
product: changedetection-io
ecosystem: pip
affected:
  - changedetection-io < 0.48.05
patched:
  - changedetection-io 0.48.05
published: '2024-12-27'
updated: '2026-09-10'
sourceUpdated: '2026-09-10T03:50:21.630420297Z'
source: OSV
sourceUrl: 'https://osv.dev/vulnerability/GHSA-j5vv-6wjg-cfr8'
references:
  - url: >-
      https://github.com/dgtlmoon/changedetection.io/security/advisories/GHSA-j5vv-6wjg-cfr8
  - url: 'https://nvd.nist.gov/vuln/detail/CVE-2024-56509'
  - url: >-
      https://github.com/dgtlmoon/changedetection.io/commit/4419bc0e61d0b03c588bd573a3602bbcfd953671
  - url: >-
      https://github.com/dgtlmoon/changedetection.io/commit/f7e9846c9b40a229813d19cdb66bf60fbe5e6a2a
  - url: 'https://github.com/dgtlmoon/changedetection.io'
tags:
  - osv
  - pip
epss: 0.00705
epssPercentile: 0.51328
ingestedAt: '2026-07-08T18:25:50.590Z'
---

## Overview

### Summary
Improper input validation in the application can allow attackers to perform local file read (LFR) or path traversal attacks. These vulnerabilities occur when user input is used to construct file paths without adequate sanitization or validation. For example, using `file:../../../etc/passwd` or `file: ///etc/passwd` can bypass weak validations and allow unauthorized access to sensitive files. Even though this has been addressed in previous patch, it is still insufficient.

### Details
The check in this line of code is insufficient.
```
if re.search(r'^file:/', url.strip(), re.IGNORECASE):
```
The attacker can still bypass this by using:
-`file:../../../../etc/passwd`
-`file: ///etc/passwd` (with space before /)

### PoC
- Open up a changedetection.io instance with a webdriver configured.
- Create a new watch with `file:../../../../etc/passwd`.
- Check the watch preview.
- The contents of `/etc/passwd` should pop out.

### Screenshots
![image](https://github.com/user-attachments/assets/55c34f2e-cafb-4a7a-a7ef-ec222e3f519b)
![image](https://github.com/user-attachments/assets/d41189f5-7bf2-48b5-9ce3-c26f79cefeda)

## Affected packages

- `changedetection-io < 0.48.05`

## Remediation

Upgrade to a patched release:

- `changedetection-io 0.48.05`
