Local File Inclusion is a vulnerability that allows the attacker to read files that are stored locally through the web application.This happens because the code of the application does not properly sanitize the include() function.
So if an application is vulnerable to LFI this means that an attacker can harvest information about the web server. Below you can see an example of PHP code that is vulnerable to LFI.
In this article we will use the mutillidae as the target application in order to exploit the local file inclusion flaw through Burp Suite. As we can see and from the next screenshot the user can select the file name and he can view the contents of this just by pressing the view file button.
So what we will do is that we will try to capture and manipulate the HTTP request with Burp in order to read system files.
As we can see from the above request,the web application is reading the files through the textfile variable.So we will try to modify that in order to read a system directory like /etc/passwd. In order to achieve that we have to go out of the web directory by using directory traversal.
We will forward the request and now we can check the response on the web application as the next image is showing:
We have successfully read the contents of the /etc/passwd file.Now with the same process we can dump and other system files.Some of the paths that we might want to try are the following:
• /etc/group
• /etc/hosts
• /etc/motd
• /etc/issue
• /etc/mysql/my.cnf
• /proc/self/environ
• /proc/version
• /proc/cmdline
Conclusion:
As we saw the exploitation of this vulnerability doesn’t require any particular skill but just knowledge of well-known directories for different platforms.An attacker can discover a large amount of information for his target through LFI just by reading files.It is an old vulnerability which cannot be seen very often in modern web applications
0 nhận xét