-
Download xor, extract the content, modify the value
path[0]to point to the executablexor.exe. -
Download 7-Zip, extract the content, modify the value
path[1]to point to the executable7z.exe. -
Download quickbms, extract the content, modify the value
path[2]to point to the executablequickbms.exe. -
Download fmod_extractors, extract the content, modify the value
path[3]to point to the executablefmod_extr.exe.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| for d in $(find /sys/kernel/iommu_groups/ -type l | sort -n -k5 -t/); do | |
| n=${d#*/iommu_groups/*}; n=${n%%/*} | |
| printf 'IOMMU Group %s ' "$n" | |
| lspci -nns "${d##*/}" | |
| done; |