Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
snap /
core24 /
1587 /
etc /
init.d /
Delete
Unzip
Name
Size
Permission
Date
Action
apparmor
3.65
KB
-rwxr-xr-x
2025-08-15 12:16
cryptdisks
937
B
-rwxr-xr-x
2024-06-05 13:46
cryptdisks-early
896
B
-rwxr-xr-x
2024-06-05 13:46
dbus
3.08
KB
-rwxr-xr-x
2023-12-05 15:36
kmod
2
KB
-rwxr-xr-x
2024-04-18 10:06
plymouth
1.35
KB
-rwxr-xr-x
2024-03-21 13:42
plymouth-log
760
B
-rwxr-xr-x
2024-03-21 13:42
procps
959
B
-rwxr-xr-x
2024-03-24 15:35
ssh
3.96
KB
-rwxr-xr-x
2025-07-21 15: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; }