Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.217.117
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
initramfs-tools /
hooks /
Delete
Unzip
Name
Size
Permission
Date
Action
dmsetup
506
B
-rwxr-xr-x
2022-10-19 19:37
expand-root
973
B
-rwxr-xr-x
2020-07-16 17:53
fsck
2.16
KB
-rwxr-xr-x
2025-04-24 15:40
keymap
687
B
-rwxr-xr-x
2020-08-31 23:59
klibc-utils
646
B
-rwxr-xr-x
2021-12-26 17:51
kmod
432
B
-rwxr-xr-x
2022-12-09 22:58
resume
3.14
KB
-rwxr-xr-x
2025-04-24 15:40
thermal
1.29
KB
-rwxr-xr-x
2025-04-24 15:40
udev
1.69
KB
-rwxr-xr-x
2026-04-27 19:48
Save
Rename
#!/bin/sh PREREQ="" prereqs() { echo "$PREREQ" } case $1 in # get pre-requisites prereqs) prereqs exit 0 ;; esac # Hook to load keymaps into the initramfs if requested by KEYMAP="y" if [ "$KEYMAP" != "y" ] && [ "$KEYMAP" != "Y" ]; then exit 0 fi if [ ! -x /bin/setupcon ]; then echo "setupcon is missing. Please install the 'console-setup' package." exit 0 fi . /usr/share/initramfs-tools/hook-functions # Tell setupcon to copy/create the files it needs. setupcon --setup-dir "$DESTDIR" # Copy additional files that setupcon needs. We assume they are # executables. while read -r file; do copy_exec "$file" done < "$DESTDIR/morefiles" rm -f "$DESTDIR/morefiles" exit 0