Directory Traversal Attacks

Post Reply
User avatar
Royal
Posts: 10566
Joined: Mon Apr 11, 2011 5:55 pm

Directory Traversal Attacks

Post by Royal » Sat Oct 06, 2018 6:30 pm

What is a Directory Traversal attack?

Properly controlling access to web content is crucial for running a secure web server. Directory traversal or Path Traversal is an HTTP attack which allows attackers to access restricted directories and execute commands outside of the web server’s root directory.

Web servers provide two main levels of security mechanisms

Access Control Lists (ACLs)
Root directory

An Access Control List is used in the authorization process. It is a list which the web server’s administrator uses to indicate which users or groups are able to access, modify or execute particular files on the server, as well as other access rights.


What an attacker can do if your website is vulnerable

With a system vulnerable to directory traversal, an attacker can make use of this vulnerability to step out of the root directory and access other parts of the file system. This might give the attacker the ability to view restricted files, which could provide the attacker with more information required to further compromise the system.

Depending on how the website access is set up, the attacker will execute commands by impersonating himself as the user which is associated with “the website”. Therefore it all depends on what the website user has been given access to in the system.


https://www.acunetix.com/websitesecurit ... traversal/


Post Reply