Linux ip-172-26-5-244 6.1.0-28-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.119-1 (2024-11-22) x86_64
Apache
: 172.26.5.244 | : 216.73.216.21
Cant Read [ /etc/named.conf ]
8.3.14
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
opt /
bitnami /
[ HOME SHELL ]
Name
Size
Permission
Action
apache
[ DIR ]
drwxrwxr-x
apache2
[ DIR ]
drwxrwxr-x
apps
[ DIR ]
drwxr-xr-x
bncert
[ DIR ]
drwxr-xr-x
common
[ DIR ]
drwxr-xr-x
gonit
[ DIR ]
drwxr-xr-x
letsencrypt
[ DIR ]
drwxr-xr-x
licenses
[ DIR ]
drwxr-xr-x
mariadb
[ DIR ]
drwxr-xr-x
nami
[ DIR ]
drwxr-xr-x
peclapcu
[ DIR ]
drwxr-xr-x
php
[ DIR ]
drwxr-xr-x
phpmyadmin
[ DIR ]
drwxrwxr-x
scripts
[ DIR ]
drwxr-xr-x
stats
[ DIR ]
drwxr-xr-x
var
[ DIR ]
drwxr-xr-x
varnish
[ DIR ]
drwxr-xr-x
.bitnami_components.json
829
B
-rw-r--r--
.firstboot.status
4
B
-rw-r--r--
bncert-tool
37.38
MB
-rwxr-xr-x
ctlscript.sh
1.43
KB
-rwxr-xr-x
properties.ini
104
B
-rwxrwx---
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ctlscript.sh
#!/bin/sh # Copyright VMware, Inc. # SPDX-License-Identifier: APACHE-2.0 # # ctlscript.sh interface for gonit # # Allow only root execution if [ `id|sed -e s/uid=//g -e s/\(.*//g` -ne 0 ]; then echo "This script requires root privileges" exit 1 fi help() { echo "usage: $0 help" echo " $0 (start|stop|restart|status)" echo " $0 (start|stop|restart|status) [service]" cat <<EOF help - this screen start - start the service(s) stop - stop the service(s) restart - restart or start the service(s) status - show the status of the service(s) EOF } get_status_from_gonit() { gonit summary $1 | awk ' BEGIN { IGNORECASE=1 } /Process/ { printf $2 " " if ( $NF == "Running" ) { print "already running" } else { print "not running" } } ' } if [ "x$1" = "help" ]; then help elif [ "x$2" = "x" ]; then # Operation over all the services if [ "x$1" = "xstart" ] || [ "x$1" = "xstop" ] || [ "x$1" = "xrestart" ]; then echo "$1ing services.." | sed 's/^./\u&/g' if [ -x /bin/systemctl ]; then /bin/systemctl $1 bitnami else /etc/init.d/bitnami $1 fi exit $? elif [ "x$1" = "xstatus" ]; then get_status_from_gonit else help exit 1 fi else if [ "x$1" = "xstart" ] || [ "x$1" = "xstop" ] || [ "x$1" = "xrestart" ]; then gonit $1 $2 exit $? elif [ "x$1" = "xstatus" ]; then get_status_from_gonit $2 else help exit 1 fi fi
Close