Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 18.227.46.54
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
lib /
udev /
[ HOME SHELL ]
Name
Size
Permission
Action
hwdb.d
[ DIR ]
drwxr-xr-x
rules.d
[ DIR ]
drwxr-xr-x
ata_id
42.16
KB
-rwxr-xr-x
bcache-register
5.99
KB
-rwxr-xr-x
cdrom_id
54.16
KB
-rwxr-xr-x
collect
42.17
KB
-rwxr-xr-x
hdparm
583
B
-rwxr-xr-x
hwclock-set
776
B
-rwxr-xr-x
hwdb.bin
8.55
MB
-r--r--r--
mtd_probe
5.98
KB
-rwxr-xr-x
probe-bcache
9.99
KB
-rwxr-xr-x
scsi_id
54.71
KB
-rwxr-xr-x
snappy-app-dev
38.07
KB
-rwxr-xr-x
v4l_id
14.08
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : hdparm
#!/bin/sh set -e [ -n "$DEVNAME" ] || exit 1 . /lib/hdparm/hdparm-functions if [ -e /proc/cmdline ]; then #linux only - future proofing against BSD and Hurd :) if grep -wq nohdparm /proc/cmdline ; then exit 0 fi fi raidstat=OK if [ -e /proc/mdstat ]; then if egrep -iq "resync|repair|recover|check" /proc/mdstat; then raidstat=RESYNC fi elif [ -e /proc/rd/status ]; then raidstat=`cat /proc/rd/status` fi if ! [ "$raidstat" = 'OK' ]; then exit 1 fi OPTIONS=$(hdparm_options $DEVNAME) if [ -n "$OPTIONS" ]; then /sbin/hdparm $OPTIONS $DEVNAME 2>/dev/null fi exit 0
Close