![]() |
Hcxtools Freezes Mid Operation - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Misc (https://hashcat.net/forum/forum-15.html) +--- Forum: User Contributions (https://hashcat.net/forum/forum-25.html) +--- Thread: Hcxtools Freezes Mid Operation (/thread-10484.html) |
Hcxtools Freezes Mid Operation - Rocuronium - 11-27-2021 For some reason when I run hcxdump it takes several minutes to start and will pick up 3 or 4 out of probably 20 nearby networks which Wifite can find as can any Aircrack-ng commands. I'm even using four of the Alfa 9dbi antennas on my Alfa AC1900. Not only that but it takes almost fifteen minutes in between networks as opposed to seconds or a few minutes between each. If I manually kill "Networkadapter.services" it will not even run saying "Network Is Down". If I use airmon-ng check kill or manually kill the wpa_supplicant it makes no difference in results. Aircrack-ng applications, Besside, and Wifite all detect networks with no issue. Here's what my terminal looks like and after a half hour no new networks have popped up. I'm running The-Distribution-Which-Does-Not-Handle-OpenCL-Well (Kali) in a Virtual Box. Code: ┌──(roc㉿Rocuronium)-[~] RE: Hcxtools Freezes Mid Operation - ZerBea - 11-28-2021 That behavior is easy to explain. On option --enable_status=1 hcxdumptool will show only PMKIDs and EAPOL messages from connected CLIENTs. All other messages are suppressed. If you would like to monitor more traffic (e.g. connection attempts), you must enable this by --enable_status=31 If you choose --enable_status=95 you will get an additional alive message every minute Code: 10:21:00 2447/8 ERROR:1 INCOMING:1090 AGE:1 OUTGOING:432 PMKIDROGUE:1 PMKID:0 M1M2ROGUE:0 M1M2:0 M2M3:0 M3M4:0 M3M4ZEROED:0 GPS:0 If you would like to attack CLIENTs, too I recommend to activate beaconing by --active_beacon The init process on some devices will take some time. Especially on dual or triple band devices, because hcxdumptool request all available frequencies from the device. The more frequencies, the longer the init time. BTW: You should know that you're running a driver (rtl8814au) that depend on NETLINK and hcxdumptool doesn't work well on this drivers. Please take a look at the beginning of your status and you'll see that some information is not present or wrong: INTERFACE PROTOCOL........: unassociated INTERFACE TX POWER........: 0 dBm (lowest value reported by the device) Looks like the interface isn't fully initialized. Instead of reporting the NETWORK protocol the driver reported the association state which is unusual. Also it doesn't report the tx power. compared to drivers without NETLINK dependency: INTERFACE PROTOCOL........: IEEE 802.11 INTERFACE TX POWER........: 20 dBm (lowest value reported by the device) DRIVER....................: rt2800usb or INTERFACE PROTOCOL........: IEEE 802.11 INTERFACE TX POWER........: 20 dBm (lowest value reported by the device) DRIVER....................: mt7601u The reason, why I don't use NETLINK stuff is explained here: https://github.com/ZerBea/hcxdumptool/pull/176#issuecomment-858375892 A workaround could be to to activate monitor mode for the device by ip: Code: $ sudo ip link set dev wlan0 down Code: interface is already in monitor mode, skipping ioctl(SIOCSIWMODE) and ioctl(SIOCSIFFLAGS) system calls Please check the status. Is INTERFACE PROTOCOL and INTERFACE POWER correct shown, after setting monitor mode by iw (running NETLINK API)? Please notice: It is important to set monitor mode on the phy device and not to add a virtual interface. |