我正在使用aircrack-ng
WPA2 接入点捕获握手。我想以pcap
格式编写输出文件,但我不断收到错误。我尝试aircrack-ng
使用 github 和 arch 存储库中的版本重新安装。我最终想将输出文件保存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
答案1
显然,您必须省略-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.cap