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 : bitnami_credentials_file
#!/bin/sh # Copyright VMware, Inc. # SPDX-License-Identifier: APACHE-2.0 # # Create a separate file with credentials based on welcome message. # . /opt/bitnami/scripts/init/functions if [ "xbitnami" != "xroot" ] && [ -d "/home/bitnami" ]; then USERHOME="/home/bitnami" else USERHOME="/root" fi cp /dev/null $USERHOME/bitnami_credentials || exit 1 chown bitnami:bitnami $USERHOME/bitnami_credentials || exit 1 chmod 0400 $USERHOME/bitnami_credentials || exit 1 bitnami_credentials_header() { echo "Welcome to the Bitnami package for LAMP" echo application_password=`get_applications_password` if [ "x$application_password" = "x" ] ; then application_password='some-secret-password' fi # If the application uses password and we have configured one if [ "xsome-secret-password" != "x" -a "x$application_password" != "x" ]; then if [ "x" != "x" ] ; then echo "******************************************************************************" echo "The default username and password is '' and '$application_password'." echo "******************************************************************************" echo else echo "******************************************************************************" echo "The default password is '$application_password'." echo "******************************************************************************" echo fi echo "You can also use this password to access the databases and any other component the stack includes." echo fi echo "Please refer to https://docs.bitnami.com/ for more details." echo } run_once_globally_check "bitnami_credentials_template" if [ $? -eq 0 ]; then mkdir -p "$DATA_DIR/bitnami_credentials" && chmod 0755 "$DATA_DIR/bitnami_credentials" && rm -f "$DATA_DIR/bitnami_credentials/*" bitnami_credentials_header >$DATA_DIR/bitnami_credentials/credentials fi cat $DATA_DIR/bitnami_credentials/credentials > $USERHOME/bitnami_credentials
Close