Linux business57.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
Server IP : 199.188.201.191 & Your IP : 18.220.22.253
Domains :
Cant Read [ /etc/named.conf ]
User : derozboy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
dracut /
modules.d /
90crypt /
Delete
Unzip
Name
Size
Permission
Date
Action
crypt-cleanup.sh
442
B
-rwxr-xr-x
2018-10-08 13:38
crypt-lib.sh
7.47
KB
-rwxr-xr-x
2018-10-08 13:38
crypt-run-generator.sh
770
B
-rwxr-xr-x
2018-10-08 13:38
cryptroot-ask.sh
4.76
KB
-rwxr-xr-x
2018-10-08 13:38
module-setup.sh
4.61
KB
-rwxr-xr-x
2024-04-06 13:22
parse-crypt.sh
6.97
KB
-rwxr-xr-x
2018-10-08 13:38
parse-keydev.sh
1.34
KB
-rwxr-xr-x
2018-10-08 13:38
probe-keydev.sh
382
B
-rwxr-xr-x
2018-10-08 13:38
Save
Rename
#!/bin/sh if getargbool 1 rd.luks -n rd_NO_LUKS && \ [ -n "$(getarg rd.luks.key)" ]; then exec 7>/etc/udev/rules.d/65-luks-keydev.rules echo 'SUBSYSTEM!="block", GOTO="luks_keydev_end"' >&7 echo 'ACTION!="add|change", GOTO="luks_keydev_end"' >&7 for arg in $(getargs rd.luks.key); do unset keypath keydev luksdev splitsep : "$arg" keypath keydev luksdev info "rd.luks.key: keypath='$keypath' keydev='$keydev' luksdev='$luksdev'" if [ -z "$keypath" ]; then warn 'keypath required!' continue fi # A keydev of '/' is treated as the initrd itself if [ "/" == "$keydev" ]; then [ -z "$luksdev" ] && luksdev='*' echo "$luksdev:$keydev:$keypath" >> /tmp/luks.keys continue elif [ -n "$keydev" ]; then udevmatch "$keydev" >&7 || { warn 'keydev incorrect!' continue } printf ', ' >&7 fi { printf -- 'RUN+="%s --unique --onetime ' $(command -v initqueue) printf -- '--name probe-keydev-%%k ' printf -- '%s /dev/%%k %s %s"\n' \ $(command -v probe-keydev) "${keypath}" "${luksdev}" } >&7 done unset arg keypath keydev luksdev echo 'LABEL="luks_keydev_end"' >&7 exec 7>&- fi