Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
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
/
usr /
share /
dracut /
modules.d /
95zfcp /
[ HOME SHELL ]
Name
Size
Permission
Action
56-zfcp.rules
46
B
-rw-r--r--
check
90
B
-rwxr-xr-x
install
220
B
-rwxr-xr-x
installkernel
30
B
-rwxr-xr-x
parse-zfcp.sh
203
B
-rwxr-xr-x
zfcpconf.sh
1.4
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : zfcpconf.sh
#!/bin/sh # config file syntax: # deviceno WWPN FCPLUN # # Example: # 0.0.4000 0x5005076300C213e9 0x5022000000000000 # 0.0.4001 0x5005076300c213e9 0x5023000000000000 # # # manual setup: # modprobe zfcp # echo 1 > /sys/bus/ccw/drivers/zfcp/0.0.4000/online # echo LUN > /sys/bus/ccw/drivers/zfcp/0.0.4000/WWPN/unit_add # # Example: # modprobe zfcp # echo 1 > /sys/bus/ccw/drivers/zfcp/0.0.4000/online # echo 0x5022000000000000 > /sys/bus/ccw/drivers/zfcp/0.0.4000/0x5005076300c213e9/unit_add CONFIG=/etc/zfcp.conf PATH=/bin:/usr/bin:/sbin:/usr/sbin if [ -f "$CONFIG" ]; then if [ ! -d /sys/bus/ccw/drivers/zfcp ]; then modprobe zfcp fi if [ ! -d /sys/bus/ccw/drivers/zfcp ]; then return fi tr "A-Z" "a-z" < $CONFIG| while read line; do case $line in \#*) ;; *) [ -z "$line" ] && continue set $line if [ $# -eq 5 ]; then DEVICE=$1 SCSIID=$2 WWPN=$3 SCSILUN=$4 FCPLUN=$5 echo "Warning: Deprecated values in /etc/zfcp.conf, ignoring SCSI ID $SCSIID and SCSI LUN $SCSILUN" elif [ $# -eq 3 ]; then DEVICE=${1##*0x} WWPN=$2 FCPLUN=$3 fi echo 1 > /sys/bus/ccw/drivers/zfcp/${DEVICE}/online [ ! -d /sys/bus/ccw/drivers/zfcp/${DEVICE}/${WWPN}/${FCPLUN} ] \ && echo $FCPLUN > /sys/bus/ccw/drivers/zfcp/${DEVICE}/${WWPN}/unit_add ;; esac done fi
Close