Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
rc5.d /
Delete
Unzip
Name
Size
Permission
Date
Action
K01apache-htcacheclean
2.43
KB
-rwxr-xr-x
2024-09-28 08:35
S01apache2
7.95
KB
-rwxr-xr-x
2024-09-29 18:51
S01console-setup.sh
1.21
KB
-rwxr-xr-x
2023-05-21 21:30
S01cron
2.99
KB
-rwxr-xr-x
2022-07-17 08:49
S01dbus
3.08
KB
-rwxr-xr-x
2023-02-08 13:21
S01mariadb
7
KB
-rwxr-xr-x
2025-02-19 00:56
S01nginx
4.47
KB
-rwxr-xr-x
2025-02-17 19:40
S01php8.4-fpm
4.19
KB
-rwxr-xr-x
2025-10-01 20:26
S01qemu-guest-agent
3.04
KB
-rwxr-xr-x
2023-04-26 15:50
S01redis-server
1.57
KB
-rwxr-xr-x
2024-01-16 10:13
S01rsync
4.31
KB
-rwxr-xr-x
2025-01-15 18:47
S01ssh
3.96
KB
-rwxr-xr-x
2023-02-08 10:43
S01sudo
1.13
KB
-rwxr-xr-x
2023-06-27 11:45
Save
Rename
#!/bin/sh ### BEGIN INIT INFO # Provides: console-setup.sh # Required-Start: $remote_fs # Required-Stop: # Should-Start: console-screen kbd # Default-Start: 2 3 4 5 # Default-Stop: # X-Interactive: true # Short-Description: Set console font and keymap ### END INIT INFO if [ -f /bin/setupcon ]; then case "$1" in stop|status) # console-setup isn't a daemon ;; start|force-reload|restart|reload) if [ -f /lib/lsb/init-functions ]; then . /lib/lsb/init-functions else log_action_begin_msg () { echo -n "$@... " } log_action_end_msg () { if [ "$1" -eq 0 ]; then echo done. else echo failed. fi } fi log_action_begin_msg "Setting up console font and keymap" if /lib/console-setup/console-setup.sh; then log_action_end_msg 0 else log_action_end_msg $? fi ;; *) echo 'Usage: /etc/init.d/console-setup.sh {start|reload|restart|force-reload|stop|status}' exit 3 ;; esac fi