Linux server1.sbs.cy 5.14.0-362.18.1.el9_3.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jan 29 07:05:48 EST 2024 x86_64
Apache
: 199.192.25.12 | : 172.70.127.73
28 Domain
8.1.31
administrator
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
BLACK DEFEND!
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
19.45
KB
-rwxr-xr-x
cdrom_id
31.59
KB
-rwxr-xr-x
dmi_memory_id
27.54
KB
-rwxr-xr-x
fc_wwpn_id
1.11
KB
-rwxr-xr-x
fido_id
23.44
KB
-rwxr-xr-x
kdump-udev-throttler
1.41
KB
-rwxr-xr-x
kpartx_id
2.33
KB
-rwxr-xr-x
mtd_probe
15.41
KB
-rwxr-xr-x
prefixdevname
1.45
MB
-rwxr-xr-x
rename_device
15.35
KB
-rwxr-xr-x
scsi_id
36.14
KB
-rwxr-xr-x
v4l_id
15.41
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : fc_wwpn_id
#!/usr/bin/bash # # fc_wwpn_id # # Generates device node names links based on FC WWPN # Copyright (c) 2016-2021 Hannes Reinecke, SUSE Linux GmbH # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation version 2 of the License. # DEVPATH=$1 SCSIPATH=$(cd -P "/sys$DEVPATH/device" || exit; echo "$PWD") d=$SCSIPATH [ -d "$d/scsi_disk" ] || exit 0 target_lun=${d##*:} while [ -n "$d" ] ; do d=${d%/*} e=${d##*/} case "$e" in rport*) rport=$e rport_dir="/sys/class/fc_remote_ports/$rport" if [ -d "$rport_dir" ] ; then rport_wwpn=$(cat "$rport_dir/port_name") fi ;; host*) host=$e host_dir="/sys/class/fc_host/$host" if [ -d "$host_dir" ] ; then host_wwpn=$(cat "$host_dir/port_name") break; fi esac done if [ -n "$rport_wwpn" ] || [ -n "$host_wwpn" ] ; then echo "FC_TARGET_LUN=$target_lun" fi if [ -n "$rport_wwpn" ] ; then echo "FC_TARGET_WWPN=$rport_wwpn" fi if [ -n "$host_wwpn" ] ; then echo "FC_INITIATOR_WWPN=$host_wwpn" fi
Close