├── .gitignore ├── README.md ├── lfi_phpinfo ├── README.md ├── poc │ └── lfi_phpinfo.py └── web │ ├── Dockerfile │ ├── code │ ├── file.php │ ├── file.txt │ ├── lfi.php │ ├── phpinfo.php │ └── upload.html │ └── docker-compose.yml └── ssrf_curl ├── README.md └── web ├── Dockerfile └── code └── ssrf_curl.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxer/vulnapp/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxer/vulnapp/HEAD/README.md -------------------------------------------------------------------------------- /lfi_phpinfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxer/vulnapp/HEAD/lfi_phpinfo/README.md -------------------------------------------------------------------------------- /lfi_phpinfo/poc/lfi_phpinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxer/vulnapp/HEAD/lfi_phpinfo/poc/lfi_phpinfo.py -------------------------------------------------------------------------------- /lfi_phpinfo/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxer/vulnapp/HEAD/lfi_phpinfo/web/Dockerfile -------------------------------------------------------------------------------- /lfi_phpinfo/web/code/file.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /lfi_phpinfo/web/code/file.txt: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /lfi_phpinfo/web/code/lfi.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lfi_phpinfo/web/code/phpinfo.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /lfi_phpinfo/web/code/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxer/vulnapp/HEAD/lfi_phpinfo/web/code/upload.html -------------------------------------------------------------------------------- /lfi_phpinfo/web/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxer/vulnapp/HEAD/lfi_phpinfo/web/docker-compose.yml -------------------------------------------------------------------------------- /ssrf_curl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxer/vulnapp/HEAD/ssrf_curl/README.md -------------------------------------------------------------------------------- /ssrf_curl/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxer/vulnapp/HEAD/ssrf_curl/web/Dockerfile -------------------------------------------------------------------------------- /ssrf_curl/web/code/ssrf_curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxer/vulnapp/HEAD/ssrf_curl/web/code/ssrf_curl.php --------------------------------------------------------------------------------