
Proof-of-concept exploit for CVE-2021-41773, an Apache HTTP Server 2.4.49 path traversal vulnerability enabling remote file disclosure and CGI execution.
apache http server vulnerability (only works 2.4.49)
httpd.conf
...
<IfModule mpm_prefork_module>
LoadModule cgi_module modules/mod_cgi.so # uncomment this line
</IfModule>
...
<Directory />
AllowOverride none
# Require all denied # comment out this line or set `Require all granted`
</Directory>
...