Linux ubuntu 6.8.0-90-generic #91-Ubuntu SMP PREEMPT_DYNAMIC Tue Nov 18 14:14:30 UTC 2025 x86_64
nginx/1.24.0
: 67.217.245.49 | : 216.73.216.153
Cant Read [ /etc/named.conf ]
8.3.6
www-data
Bypass.pw
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
udev /
[ HOME SHELL ]
Name
Size
Permission
Action
hwdb.d
[ DIR ]
drwxr-xr-x
rules.d
[ DIR ]
drwxr-xr-x
ata_id
82.72
KB
-rwxr-xr-x
bcache-export-cached
1.13
KB
-rwxr-xr-x
bcache-register
14.3
KB
-rwxr-xr-x
cdrom_id
90.72
KB
-rwxr-xr-x
dmi_memory_id
86.72
KB
-rwxr-xr-x
fido_id
138.73
KB
-rwxr-xr-x
hdparm
1.37
KB
-rwxr-xr-x
hwdb.bin
11.72
MB
-r--r--r--
iocost
150.85
KB
-rwxr-xr-x
kpartx_id
2.33
KB
-rwxr-xr-x
mtd_probe
34.57
KB
-rwxr-xr-x
probe-bcache
14.3
KB
-rwxr-xr-x
scsi_id
87.23
KB
-rwxr-xr-x
snappy-app-dev
18.23
KB
-rwxr-xr-x
usb_modeswitch
1.53
KB
-rwxr-xr-x
v4l_id
34.57
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : bcache-export-cached
#!/bin/sh # # This program reads the bcache superblock on bcacheX slaves to extract the # dev.uuid and dev.label which refer to a specific backing device. # # It integrates with udev 'import' by writing CACHED_UUID=X and optionally # CACHED_LABEL=X for the backing device of the provided bcache device. # Ignore caching devices by skipping unless sb.version=1 # # There is 1 and only 1 backing device (slaves/*) for a bcache device. TEMPNODE=${1} # /dev/bcacheN DEVNAME=${TEMPNODE##*/} # /dev/bcacheN -> bcacheN for slave in "/sys/class/block/$DEVNAME/slaves"/*; do [ -d "$slave" ] || continue /usr/sbin/bcache-super-show "/dev/${slave##*/}" | awk '$1 == "sb.version" { sbver=$2; } $1 == "dev.uuid" { uuid=$2; } $1 == "dev.label" && $2 != "(empty)" { label=$2; } END { if (sbver == 1 && uuid) { print("CACHED_UUID=" uuid) if (label) print("CACHED_LABEL=" label) exit(0) } exit(1); }' # awk exits 0 if it found a backing device. [ $? -eq 0 ] && exit 0 done
Close