PHP伪协议探究php
php中支持的伪协议有下面这么多python
file:// — 访问本地文件系统
http:// — 访问 HTTP(s) 网址
ftp:// — 访问 FTP(s) URLs
php:// — 访问各个输入/输出流(I/O streams)
zlib:// — 压缩流
data:// — 数据(RFC 2397)
glob:// — 查找匹配的文件路径模式
phar:// — PHP 归档
ssh2:// — Secure Shell 2
rar:// — RAR
ogg:// — 音频流
expect:// — 处理交互式的流
今天着重研究php://shell
首先先把官方文档贴上来
http://php.net/manual/zh/wrappers.php.php数组
有两个比较重要的配置在php.ini中,allow_url_fopen 和allow_url_include会影响到fopen等等和include等等函数对于伪协议的支持,而allow_url_include依赖allow_url_fopen,因此allow_url_fopen不开启的话,allow_url_include也是没法使用的。app
php://是用来访问各个输入、输出流的,除了php://stdin, php://stdout 和 php://stderr
ssh
php://input表明能够访问请求的原始数据,简单来讲POST请求的状况下,php://input能够获取到post的数据。函数
比较特殊的一点,enctype=”multipart/form-data” 的时候 php://input 是无效的。post
php://output 是一个只写的数据流, 容许你以 print 和 echo 同样的方式 写入到输出缓冲区。this
这篇文章的关键在于讨论php://filter,事实上,这也是咱们经常使用的一个伪协议,在任意文件读取,甚至getshell的时候都有利用的机会。编码
php://filter
是一种元封装器, 设计用于数据流打开时的筛选过滤应用。 这对于一体式(all-in-one)的文件函数很是有用,相似 readfile()、 file() 和 file_get_contents(), 在数据流内容读取以前没有机会应用其余过滤器。
事实上,在include函数的使用上,常常会形成任意文件读取漏洞,而file_get_contents()和file_put_contents()这样函数下,经常会构成getshell等更严重的漏洞。
php://filter 目标使用如下的参数做为它路径的一部分。 复合过滤链可以在一个路径上指定。详细使用这些参数能够参考具体范例。
文档里是这么写的
名称 描述 resource=<要过滤的数据流> 这个参数是必须的。它指定了你要筛选过滤的数据流。 read=<读链的筛选列表> 该参数可选。能够设定一个或多个过滤器名称,以管道符(|)分隔。 write=<写链的筛选列表> 该参数可选。能够设定一个或多个过滤器名称,以管道符(|)分隔。 <;两个链的筛选列表> 任何没有以 read= 或 write= 做前缀 的筛选器列表会视状况应用于读或写链。
咱们举一个例子,这是平时咱们用来任意文件读取的payload
php://filter/read=convert.base64-encode/resource=upload.php
这里读的过滤器为convert.base64-encode,就和字面上的意思同样,把输入流base64-encode。
resource=upload.php,表明读取upload.php的内容
下面仔细研究下关于过滤器的问题
先贴文档,不由于本身的翻译小问题接锅 (・ω・)ノ
http://php.net/manual/zh/filters.php
http://php.net/manual/zh/filters.convert.php
convert.* 过滤器是php5.0.0之后添加的。
convert.base64-encode和 convert.base64-decode使用这两个过滤器等同于分别用 base64_encode()和 base64_decode()函数处理全部的流数据。 convert.base64-encode支持以一个关联数组给出的参数。若是给出了 line-length,base64 输出将被用 line-length个字符为 长度而截成块。若是给出了 line-break-chars,每块将被用给出的字符隔开。这些参数的效果和用 base64_encode()再加上 chunk_split()相同。
固然,这里的过滤器不止运用于php://filter,因此文档中给出的例子是这样的
<?php $fp = fopen('php://output', 'w'); stream_filter_append($fp, 'convert.base64-encode'); fwrite($fp, "This is a test.\n"); fclose($fp); /* Outputs: VGhpcyBpcyBhIHRlc3QuCg== */ $param = array('line-length' => 8, 'line-break-chars' => "\r\n"); $fp = fopen('php://output', 'w'); stream_filter_append($fp, 'convert.base64-encode', STREAM_FILTER_WRITE, $param); fwrite($fp, "This is a test.\n"); fclose($fp); /* Outputs: VGhpcyBp : cyBhIHRl : c3QuCg== */ $fp = fopen('php://output', 'w'); stream_filter_append($fp, 'convert.base64-decode'); fwrite($fp, "VGhpcyBpcyBhIHRlc3QuCg=="); fclose($fp); /* Outputs: This is a test. */ ?>
convert.quoted-printable-encode和 convert.quoted-printable-decode使用此过滤器的 decode 版本等同于用 quoted_printable_decode()函数处理全部的流数据。没有和 convert.quoted-printable-encode相对应的函数。 convert.quoted-printable-encode支持以一个关联数组给出的参数。除了支持和 convert.base64-encode同样的附加参数外, convert.quoted-printable-encode还支持布尔参数 binary和 force-encode-first。 convert.base64-decode只支持 line-break-chars参数做为从编码载荷中剥离的类型提示。
关于quoted_printable_decode()在php.net上的解释是将 quoted-printable 字符串转换为 8-bit 字符串,原谅我没怎么看懂
string.*是用来处理各个字符串的,比较像python的string模块
rot13,很好理解
<?php $fp = fopen('php://output', 'w'); stream_filter_append($fp, 'string.rot13'); fwrite($fp, "This is a test.\n"); /* Outputs: Guvf vf n grfg. */ ?>
变大写,也一样很好理解
<?php $fp = fopen('php://output', 'w'); stream_filter_append($fp, 'string.toupper'); fwrite($fp, "This is a test.\n"); /* Outputs: THIS IS A TEST. */ ?>
这回是小写
<?php $fp = fopen('php://output', 'w'); stream_filter_append($fp, 'string.tolower'); fwrite($fp, "This is a test.\n"); /* Outputs: this is a test. */ ?>
string.strip_tags(自 PHP 5.0.0 起)使用此过滤器等同于用 strip_tags()函数处理全部的流数据。能够用两种格式接收参数:一种是和 strip_tags()函数第二个参数类似的一个包含有标记列表的字符串,一种是一个包含有标记名的数组。
strip_tags()返回给定的字符串 str 去除空字符、HTML 和 PHP 标记后的结果。
<?php $fp = fopen('php://output', 'w'); stream_filter_append($fp, 'string.strip_tags', STREAM_FILTER_WRITE, "<b><i><u>"); fwrite($fp, "<b>bolded text</b> enlarged to a <h1>level 1 heading</h1>\n"); fclose($fp); /* Outputs: <b>bolded text</b> enlarged to a level 1 heading */ $fp = fopen('php://output', 'w'); stream_filter_append($fp, 'string.strip_tags', STREAM_FILTER_WRITE, array('b','i','u')); fwrite($fp, "<b>bolded text</b> enlarged to a <h1>level 1 heading</h1>\n"); fclose($fp); /* Outputs: <b>bolded text</b> enlarged to a level 1 heading */ ?>
zlib.* 压缩过滤器自 PHP 版本 5.1.0起可用,在激活 zlib的前提下。也能够经过安装来自 » PECL的 » zlib_filter包做为一个后门在 5.0.x版中使用。此过滤器在 PHP 4 中 不可用。
zlib.deflate和 zlib.inflate是主要的两个用法
<?php $params = array('level' => 6, 'window' => 15, 'memory' => 9); $original_text = "This is a test.\nThis is only a test.\nThis is not an important string.\n"; echo "The original text is " . strlen($original_text) . " characters long.\n"; $fp = fopen('test.deflated', 'w'); stream_filter_append($fp, 'zlib.deflate', STREAM_FILTER_WRITE, $params); fwrite($fp, $original_text); fclose($fp); echo "The compressed file is " . filesize('test.deflated') . " bytes long.\n"; echo "The original text was:\n"; /* Use readfile and zlib.inflate to decompress on the fly */ readfile('php://filter/zlib.inflate/resource=test.deflated'); /* Generates output: The original text is 70 characters long. The compressed file is 56 bytes long. The original text was: This is a test. This is only a test. This is not an important string. */ ?>
mcrypt.和 mdecrypt.使用 libmcrypt 提供了对称的加密和解密。
格式为 mcrypt.ciphername,其中 ciphername是密码的名字,将被传递给 mcrypt_module_open()。有如下五个过滤器参数可用:
参数 是否必须 默认值 取值举例
mode 可选 cbc cbc, cfb, ecb, nofb, ofb, stream
algorithms_dir 可选 ini_get(‘mcrypt.algorithms_dir’) a lgorithms 模块的目录
modes_dir 可选 ini_get(‘mcrypt.modes_dir’) modes 模块的目录
iv 必须 N/A 典型为 8,16 或 32 字节的二进制数据。根据密码而定
key 必须 N/A 典型为 8,16 或 32 字节的二进制数据。根据密码而定
细节研究文档吧
http://php.net/manual/zh/filters.encryption.php
from: LoRexxar https://lorexxar.cn/2016/09/14/php-wei/