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 /
rcS.d /
Delete
Unzip
Name
Size
Permission
Date
Action
S01apparmor
3.65
KB
-rwxr-xr-x
2023-02-14 11:49
S01hwclock.sh
1.71
KB
-rwxr-xr-x
2023-02-13 08:48
S01keyboard-setup.sh
1.45
KB
-rwxr-xr-x
2022-07-18 12:25
S01kmod
2.01
KB
-rwxr-xr-x
2022-12-09 22:58
S01networking
4.42
KB
-rwxr-xr-x
2023-01-23 21:14
S01procps
959
B
-rwxr-xr-x
2022-12-19 06:06
S01udev
6.71
KB
-rwxr-xr-x
2023-02-28 11:15
S01ufw
2.03
KB
-rwxr-xr-x
2023-05-16 13:59
S01x11-common
2.7
KB
-rwxr-xr-x
2021-08-18 10:58
Save
Rename
#! /bin/sh # kFreeBSD do not accept scripts as interpreters, using #!/bin/sh and sourcing. if [ true != "$INIT_D_SCRIPT_SOURCED" ] ; then set "$0" "$@"; INIT_D_SCRIPT_SOURCED=true . /lib/init/init-d-script fi ### BEGIN INIT INFO # Provides: procps # Required-Start: mountkernfs $local_fs # Required-Stop: # Should-Start: udev module-init-tools # X-Start-Before: $network # Default-Start: S # Default-Stop: # Short-Description: Configure kernel parameters at boottime # Description: Loads kernel parameters that are specified in /etc/sysctl.conf ### END INIT INFO # # written by Elrond <Elrond@Wunder-Nett.org> DESC="Setting kernel variables" DAEMON=/sbin/sysctl PIDFILE=none # Comment this out for sysctl to print every item changed QUIET_SYSCTL="-q" do_start_cmd() { STATUS=0 $DAEMON $QUIET_SYSCTL --system || STATUS=$? return $STATUS } do_reload() { call do_start_cmd; } do_stop() { return 0; } do_status() { return 0; }