我使用aircrack-ng来捕获WPA2接入点上的握手。我想用pcap格式编写输出文件,但是我总是会出错。我尝试过使用github和arch存储库的版本重新安装aircrack-ng。我最终希望以hccapx格式保存外部文件,以便使用hashcat进行破解。
## OS: Arch Linux x86_64
## Kernel: 5.18.12-zen1-1-zen
## Name: aircrack-ng-git
## Version: 20220715.76370d0e-1
sudo airmon-ng start wlan1
# (mac80211 monitor mode already enabled for [phy1]wlan1 on [phy1]10)
sudo airodump-ng -i wlan1 -c 6 --essid $ESSID --write "$ESSID-log" --output-format pcap
# Invalid output format: IVS and PCAP format cannot be used together.
sudo airodump-ng -i wlan1 -c 6 --essid $ESSID --write "$ESSID-log"
# outfile: $ESSID-log.ivs
sudo airodump-ng -i wlan1 -c 6 --essid $ESSID --write "$ESSID-log" --output-format kismet
# outfile: $ESSID-log.kismet.csv
# outfile: $ESSID-log.csv发布于 2022-07-27 21:20:51
显然,您必须在命令中省略-i字符串,只需在没有它的情况下编写设备名称即可。
例如:
## before
sudo airodump-ng -i wlan1 -c 6 --essid $ESSID --write "$ESSID-log"
# outfile: $ESSID-log.ivs
## after
sudo airodump-ng wlan1 -c 6 --essid $ESSID --write "$ESSID-log"
# outfile: $ESSID-log.caphttps://unix.stackexchange.com/questions/711531
复制相似问题