Local File Inclusion Exploitation With Burp

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.

Vulnerable Code to LFI
Vulnerable Code 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.

Location of LFI on the Web Application
Location of LFI on the Web Application

 

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.

Capturing the HTTP Request
Capturing the HTTP Request

 

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.

HTTP Request Modification - /etc/passwd
HTTP Request Modification – /etc/passwd

 

We will forward the request and now we can check the response on the web application as the next image is showing:

Reading the /etc/passwd
Reading the /etc/passwd

 

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
/etc/group contents
/etc/group contents

 

etc/hosts contents
etc/hosts contents

 

motd
motd

 

/etc/issue contents
/etc/issue contents

 

mysql configuration file
mysql configuration file

 

environment
/proc/self/environ

 

p
/proc/version contents

 

/proc/cmdline contents
/proc/cmdline contents

 

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.