我想在aireplay-ng命令中使用存储在文件中的mac地址。我希望此命令对文件中的每个 mac 地址执行一次。你能告诉我怎么做吗?
sudo aireplay-ng -1 0 -e VMC_AP -a D4:4C:24:2B:EE:80 -h CC:AF:78:B3:E5:0F mon0 --ignore-negative-one
我希望-h CC:AF:78:B3:E5:0F
被存储在文件中的不同 mac 地址替换。
谢谢!
假设 mac.txt 是所有 mac 地址所在的文件(每行一个),您可以使用以下内容:
while read mac
do
sudo aireplay-ng -1 0 -e VMC_AP -a D4:4C:24:2B:EE:80 -h $mac mon0 --ignore-negative-one &
done < mac.txt