File Inclusion LFI / RFI
PHP
If the path
passed to the include()
is taken from a user-controlled parameter, like a GET
parameter, and the code does not explicitly filter and sanitize the user input
, then the code becomes vulnerable to File Inclusion
PHP functions that would lead to the same vulnerability if we had control over the path passed into them: include_once()
, require()
, require_once()
, file_get_contents()
NodeJS
readfile():
render() in Express.js:
Java
include
import
.NET
Response.WriteFile
@Html.Partial()
include
Read vs Execute
Function
Read Content
Execute
Remote URL
PHP
include()
/include_once()
✅
✅
✅
require()
/require_once()
✅
✅
❌
file_get_contents()
✅
❌
✅
fopen()
/file()
✅
❌
❌
NodeJS
fs.readFile()
✅
❌
❌
fs.sendFile()
✅
❌
❌
res.render()
✅
✅
❌
Java
include
✅
❌
❌
import
✅
✅
✅
.NET
@Html.Partial()
✅
❌
❌
@Html.RemotePartial()
✅
❌
✅
Response.WriteFile()
✅
❌
❌
include
✅
✅
✅
Burp Extension
One Liner
Local File Inclusion (LFI)
Detection - Error Message
Warning: main(pages/$page): failed to open stream: No such file or directory in /home/enigmagroup/public_html/challenges/basics/vm/1/index.php on line 14
Basic LFI
/etc/passwd is forbidden - Try !/etc!/passwd
Path Traversal
With Curl
--path-as-is
Fuzzing
Payloads
NGINX Alias Path Traversal
Burp extension
Filename Prefix
prefix a /
before our payload, and this should consider the prefix as a directory
Note: This may not always work, as in this example a directory named lang_/
may not exist, so our relative path may not be correct. Furthermore, any prefix appended to our input may break some file inclusion techniques
we will discuss in upcoming sections, like using PHP wrappers and filters or RFI.
Appended Extensions
See Basic Bypass - Appended Extension
Second-Order Attacks
For example, a web application may allow us to download our avatar through a URL like (/profile/$username/avatar.png
). If we craft a malicious LFI username (e.g. ../../../etc/passwd
), then it may be possible to change the file being pulled to another local file on the server and grab it instead of our avatar.
Django, Rails, or Node.js Web Application Header Values
Windows LFI
Payload List
WAF Basic Bypasses
/etc/passwd is forbidden - Try !/etc!/passwd
If the WAF blocks you from reading /etc/passwd directly, you can use ?
to bypass it.
Non-Recursive Path Traversal Filters
....//
Other bypass:
..././
escaping the forward slash character:
....\/
adding extra forward slashes:
....////
Encoding
Core PHP filters on versions 5.3.4 and earlier were specifically vulnerable to this bypass, but even on newer versions we may find custom filters that may be bypassed through URL encoding
Encode ../
into %2e%2e%2f
Furthermore, we may also use Burp Decoder to encode the encoded string once again to have a double encoded
string, which may also bypass other types of filters.
Various non-standard encodings, such as ..%c0%af
or ..%ef%bc%8f
, may also work.
You may refer to the Command Injections module for more about bypassing various blacklisted characters, as the same techniques may be used with LFI as well.
Approved Paths
To find the approved path, we can examine the requests sent by the existing forms, and see what path they use for the normal web functionality. Furthermore, we can fuzz web directories under the same path, and try different ones until we get a match. To bypass this, we may use path traversal and start our payload with the approved path
Appended Extension
With modern versions of PHP, we may not be able to bypass this and will be restricted to only reading files in that extension, which may still be useful, as we will see in the next section (e.g. for reading source code).
There are a couple of other techniques we may use, but they are obsolete with modern versions of PHP and only work with PHP versions before 5.3/5.4
.
Path Truncation
In earlier versions of PHP, defined strings have a maximum length of 4096 characters, likely due to the limitation of 32-bit systems. If a longer string is passed, it will simply be truncated
, and any characters after the maximum length will be ignored. Furthermore, PHP also used to remove trailing slashes and single dots in path names, so if we call (/etc/passwd/.
) then the /.
would also be truncated, and PHP would call (/etc/passwd
). PHP, and Linux systems in general, also disregard multiple slashes in the path (e.g. ////etc/passwd
is the same as /etc/passwd
). Similarly, a current directory shortcut (.
) in the middle of the path would also be disregarded (e.g. /etc/./passwd
).
It is also important to note that we would also need to start the path with a non-existing directory
for this technique to work.
Null Bytes
An application may require the user-supplied filename to end with an expected file extension, such as .png
.
Adding a null byte (%00
) at the end of the string would terminate the string and not consider anything after it.
/etc/passwd%00
=> /etc/passwd%00.php
filename=../../../etc/passwd%00.png
PHP Filters
Input Filters
php://filter/
The filter that is useful for LFI attacks is the convert.base64-encode
filter
Fuzzing for PHP Files
Start by reading index.php
and scanning it for more references and so on, but fuzzing for PHP files may reveal some files that may not otherwise be found that way.
Source Code Disclosure
Error-based oracle - Dump File
PHP Wrappers
Data
The data wrapper can be used to include external data, including PHP code. However, the data wrapper is only available to use if the (allow_url_include
) setting is enabled in the PHP configurations.
PHP Configurations
/etc/php/X.Y/apache2/php.ini
for Apache /etc/php/X.Y/fpm/php.ini
) for Nginx
where X.Y
is your install PHP version
Remote Code Execution
We can URL encode the base64 string, and then pass it to the data wrapper with data://text/plain;base64
Input
We pass our input to the input
wrapper as a POST request's data. . So, the vulnerable parameter must accept POST requests for this attack to work
Expect
Don't need to provide a web shell, as it is designed to execute commands.
Determine whether Expect is installed on the back-end server - See PHP Configurations
Use expect://
wrapper
expect
module also use for XXE vulnerabilities
Cookie Based PHP LFI
Remote File Inclusion (RFI)
"Remote File Inclusion (RFI)", if the vulnerable function allows the inclusion of remote URLs. This allows two main benefits:
Enumerating local-only ports and web applications (i.e. SSRF)
Gaining remote code execution by including a malicious script that we host
The Server-side Attacks module (Bug Bounty Hunter Path) covers various SSRF
techniques, which may also be used with RFI vulnerabilities.
LFI may not necessarily be an RFI - See Read vs. Execute
Verify RFI
A more reliable way to determine whether an LFI vulnerability is also vulnerable to RFI is to try and include a URL
, and see if we can get its content
Remote Code Execution with RFI
We can use a custom web shell we download from the internet, use a reverse shell script, or write our own basic web shell
It is a good idea to listen on a common HTTP port like 80
or 443
, as these ports may be whitelisted in case the vulnerable web application has a firewall preventing outgoing connections. Furthermore, we may host the script through an FTP service or an SMB service
HTTP
FTP
If the server requires valid authentication, then the credentials can be specified in the URL, as follows:
SMB
If the vulnerable web application is hosted on a Windows server (which we can tell from the server version in the HTTP response headers), then we do not need the allow_url_include
setting to be enabled for RFI exploitation, as we can utilize the SMB protocol for the remote file inclusion.
LFI and File Uploads
Crafting Malicious Image
We need to know the path to our uploaded file - Source code analysis
Zip Upload
Phar Upload
shell.php:
Compiled into a phar file:
LFI2RCE via phpinfo()
LFI/uploads which occurs if file uploads is enabled in the PHP configurations and the phpinfo()
page is somehow exposed to us
Log Poisoning
For this attack to work, the PHP web application should have read privileges over the logged files, which vary from one server to another.
PHP Session Poisoning
/var/lib/php/sessions/
on Linux and in C:\Windows\Temp\
on Windows
If the PHPSESSID
cookie is set to el4ukv0kqbvoirg7nkp4dncpk3
, then its location on disk would be /var/lib/php/sessions/sess_el4ukv0kqbvoirg7nkp4dncpk3
Use the cookie value you find in your own session
Include the session file once again
Writing PHP code to the session file
Include the session file and use the &cmd=id
Server Log Poisoning
Apache
logs are located in /var/log/apache2/
on Linux and in C:\xampp\apache\logs\
on Windows, while Nginx
logs are located in /var/log/nginx/
on Linux and in C:\nginx\log\
on Windows
The logs may be in a different location in some cases => Fuzz
User-Agent
header is controlled by us through the HTTP request headers, so we should be able to poison this value.
or with Curl
We can specify a command to be executed with (?cmd=id
)
Service logs we may be able to read:
/var/log/sshd.log
/var/log/mail
/var/log/vsftpd.log
Automated Scanning
Fuzzing parameters
Fuzz for exposed parameters
LFI wordlists
Start with LFI-Jhaddix.txt: https://github.com/danielmiessler/SecLists/blob/master/Fuzzing/LFI/LFI-Jhaddix.txt
Fuzzing Server Files
Server Webroot
Linux:
Windows
Depending on our LFI situation, we may need to add a few back directories (e.g. ../../../../
), and then add our index.php
afterwords.
Also try LFI-Jhaddix.txt
Server Logs/Configurations
Start with LFI-Jhaddix.txt
More payload:
Linux
Windows
We do get the default webroot path and the log path. However, in this case, the log path is using a global apache variable (APACHE_LOG_DIR
), which are found in another file we saw above, which is (/etc/apache2/envvars
)
The (APACHE_LOG_DIR
) variable is set to (/var/log/apache2
), and the previous configuration told us that the log files are /access.log
and /error.log
Tools
Resources
Last updated
Was this helpful?