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 /
scripts /
init /
[ HOME SHELL ]
Name
Size
Permission
Action
bitnami_agent
1.24
KB
-rwxr-xr-x
bitnami_agent_extra
806
B
-rwxr-xr-x
bitnami_credentials_file
1.95
KB
-rwxr-xr-x
clean_metadata
377
B
-rwxr-xr-x
functions
17.6
KB
-rwxr-xr-x
get_default_passwords
1.26
KB
-rwxr-xr-x
get_metadata
183
B
-rwxr-xr-x
hostname
264
B
-rwxr-xr-x
swap_file
692
B
-rwxr-xr-x
update_welcome_file
460
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : get_default_passwords
#!/bin/sh # Copyright VMware, Inc. # SPDX-License-Identifier: APACHE-2.0 # # Get the default password that will be used for all services and applications # . /opt/bitnami/scripts/init/functions # when run with --force option, set the password regardless of flag if [ "x$1" != "x--force" ] ; then run_once_globally_check "get_default_passwords" if [ $? -ne 0 ]; then exit 0 fi fi # get if password should be modified APPUSER="" PASSWD="`get_applications_password`" if [ "x$PASSWD" = "x" ] ; then exit 0 fi # log at start as well since when changing takes long time to complete, # get console output may not show the full log echo "" echo "#########################################################################" echo "# #" ( echo "# Setting Bitnami application password to '${PASSWD}' #" if [ "x$APPUSER" != "x" ]; then echo "# (the default application username is '${APPUSER}') #" fi ) | sed 's/^#\(.\{71\}\)\s*#/#\1#/g' # Limits the horizontal size of the box echo "# #" echo "#########################################################################" echo ""
Close