Dark Mode
Capec-139 Detail
Relative Path Traversal
Detailed Software Likelihood: High Typical Severity: High
Parents: 126
Threats: T62 T290 T291
Tools: 3
Not present
| External ID | Source | Link | Description |
|---|---|---|---|
| CAPEC-139 | capec | https://capec.mitre.org/data/definitions/139.html | |
| CWE-23 | cwe | http://cwe.mitre.org/data/definitions/23.html | |
| REF-9 | reference_from_CAPEC | https://www.owasp.org/index.php/Testing_for_Path_Traversal_(OWASP-AZ-001) | OWASP Testing Guide (v4), 2010, The Open Web Application Security Project (OWASP) |
| REF-10 | reference_from_CAPEC | http://projects.webappsec.org/w/page/13246952/Path-Traversal | WASC Threat Classification 2.0, 2010, The Web Application Security Consortium (WASC) |
Explore
-
Fingerprinting of the operating system: In order to perform a valid path traversal, the adversary needs to know what the underlying OS is so that the proper file seperator is used.
-
Survey application: Using manual or automated means, an adversary will survey the target application looking for all areas where user input is taken to specify a file name or path.
| Techniques |
|---|
| Port mapping. Identify ports that the system is listening on, and attempt to identify inputs and protocol types on those ports. |
| TCP/IP Fingerprinting. The adversary uses various software to make connections or partial connections and observe idiosyncratic responses from the operating system. Using those responses, they attempt to guess the actual operating system. |
| Induce errors to find informative error messages |
| Techniques |
|---|
| Use a spidering tool to follow and record all links on a web page. Make special note of any links that include parameters in the URL. |
| Use a proxy tool to record all links visited during a manual traversal of a web application. Make special note of any links that include parameters in the URL. Manual traversal of this type is frequently necessary to identify forms that are GET method forms rather than POST forms. |
| Use a browser to manually explore a website and analyze how it is constructed. Many browser plug-ins are available to facilitate the analysis or automate the URL discovery. |
Experiment
-
Attempt variations on input parameters: Using manual or automated means, an adversary attempts varying relative file path combinations on all found user input locations and observes the responses.
| Techniques |
|---|
| Provide "../" or "..\" at the beginning of any filename to traverse to the parent directory |
| Use a list of probe strings as path traversal payload. Different strings may be used for different platforms. Strings contain relative path sequences such as "../". |
| Use a proxy tool to record results of manual input of relative path traversal probes in known URLs. |
Exploit
-
Access, modify, or execute arbitrary files.: An adversary injects path traversal syntax into identified vulnerable inputs to cause inappropriate reading, writing or execution of files. An adversary could be able to read directories or files which they are normally not allowed to read. The adversary could also access data outside the web document root, or include scripts, source code and other kinds of files from external websites. Once the adversary accesses arbitrary files, they could also modify files. In particular situations, the adversary could also execute arbitrary code or system commands.
| Techniques |
|---|
| Manipulate file and its path by injecting relative path sequences (e.g. "../"). |
| Download files, modify files, or try to execute shell commands (with binary files). |
- The target application must accept a string as user input, fail to sanitize combinations of characters in the input that have a special meaning in the context of path navigation, and insert the user-supplied string into path navigation commands.
Not present
| Low | High |
|---|---|
| To inject the malicious payload in a web page | |
| To bypass non trivial filters in the application |
| Integrity | Availability | Access Control | Confidentiality |
|---|---|---|---|
| Modify Data | Execute Unauthorized Commands (Run Arbitrary Code) | Bypass Protection Mechanism | Read Data |
| Execute Unauthorized Commands (Run Arbitrary Code) | Unreliable Execution | Execute Unauthorized Commands (Run Arbitrary Code) |
- The attacker uses relative path traversal to access files in the application. This is an example of accessing user's password file. http://www.example.com/getProfile.jsp?filename=../../../../etc/passwd However, the target application employs regular expressions to make sure no relative path sequences are being passed through the application to the web page. The application would replace all matches from this regex with the empty string. Then an attacker creates special payloads to bypass this filter: http://www.example.com/getProfile.jsp?filename=%2e%2e/%2e%2e/%2e%2e/%2e%2e /etc/passwd When the application gets this input string, it will be the desired vector by the attacker.