A file inclusion attack is a type of security exploit that takes advantage of improper or unchecked input handling in web applications. The goal of such an attack is to include files on a server through the web browser. There are two main types of file inclusion attacks: Local File Inclusion (LFI) and Remote File Inclusion (RFI).
Local File Inclusion (LFI):
In an LFI attack, an attacker tries to include files that are already present on the target system. These files could be configuration files, system files, or any other sensitive information.
The attacker manipulates input parameters or user-controlled data in a way that the application includes a file from the local file system.
For example, if a web application includes a file based on user input without proper validation, an attacker might input a malicious path to include sensitive files.
Remote File Inclusion (RFI):
RFI is a more severe form of file inclusion attack where the attacker includes files from a remote server controlled by them.
The attacker injects a URL pointing to a file on a remote server into a parameter or input field, and the application fetches and includes the contents of that remote file.
This can lead to the execution of arbitrary code on the server, potentially allowing the attacker to take control of the system.
File inclusion vulnerabilities can occur due to poor input validation and lack of proper security measures in web applications. To prevent file inclusion attacks, developers should:
Validate and sanitize user input.
Avoid dynamically including files based on user input without proper validation.
Implement proper access controls to restrict file access.
Use secure coding practices and frameworks that handle user input securely.
Regular security assessments, code reviews, and penetration testing can help identify and mitigate file inclusion vulnerabilities in web applications.
Using BurpSuite and the FoxyProxy extension is recommended.
Low
We've a div containing three distinct hyperlinks, each triggering the display of various files within the web application upon activation. The exhibition of a specific file is accomplished through the utilization of the subsequent GET request.
GET /DVWA/vulnerabilities/fi/?page=file1.php HTTP/1.1Host:localhostUser-Agent:Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0Accept:text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8Accept-Language:en-US,en;q=0.5Accept-Encoding:gzip, deflate, brReferer:http://localhost/DVWA/vulnerabilities/fi/?page=include.phpConnection:closeCookie:security=low; PHPSESSID=s7nq882ng75b21h8b8uc4rmaodUpgrade-Insecure-Requests:1
This is php code of this level:
The concept involves manipulating the filename within the page parameter to any desired file on the target, enabling us to retrieve its contents. By employing the following GET request, we can read the contents of the etc password file.
<?phpif( !defined('DVWA_WEB_PAGE_TO_ROOT') ) {exit ("Nice try ;-). Use the file include next time!");}?>1.) Bond. James Bond<?phpecho"2.) My name is Sherlock Holmes. It is my business to know what other people don't know.\n\n<br /><br />\n";$line3 ="3.) Romeo, Romeo! Wherefore art thou Romeo?";$line3 ="--LINE HIDDEN ;)--";echo $line3 ."\n\n<br /><br />\n";$line4 ="NC4pI"."FRoZSBwb29s"."IG9uIH"."RoZSByb29mIG1"."1c3QgaGF"."2ZSBh"."IGxlY"."Wsu";echobase64_decode( $line4 );?><!-- 5.) The world isn't run by weapons anymore, or energy, or money. It's run by little ones and zeroes, little bits of data. It's all just electrons. -->
The input is not sanitized, so I can execute any (potentially malicious) command.
Medium
In this case, code includes a little validation checks:
it tries to remove all sorts of http and https protocol usage, trying to remove the possibility for a Remote File Inclusion (RFI), and it also replaces ../ with the empty string: "".
The handling of the '../' character sequence is insufficient, as the validation is not performed recursively.
1st Payload
....//....//....//....//....//etc/passwd
After input validation (not recursive), changing ../ to "", we obtain this result:
The input is not sanitized sufficiently , so I can execute any (potentially malicious) command.
High
In this code the're two validation checks:
The fnmatch() function in PHP, which matches strings against patterns using shell-style wildcards. In our scenario, it matches any file that begins with 'file.'
The condition $file != 'include.php' introduces a specific case where the 'if' statement fails only when the file doesn't start with 'file' and is precisely 'include.php'.
1st Payload
Regarding LFI exploitation, the code solely verifies whether the parameter begins with 'file' and does not examine its ending. Consequently, we can employ the following GET request to expose the 'passwd' file.