Add vulnerable Docker image

This commit is contained in:
2024-09-23 13:48:10 +02:00
parent 7cd6146ec9
commit 8fc0ee36cd
6 changed files with 34 additions and 0 deletions

5
vuln_rfi/Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM php:alpine3.19
COPY src /src
WORKDIR /src
EXPOSE 80
CMD ["php", "-S", "0.0.0.0:80"]