10-13-2022, 07:41 AM
From
$ hcxdumptool --help
enable_status=15 (== 1+2+4+8)
Using a bitmask makes on some cases the command line small.
$ hcxdumptool --help
Code:
--enable_status=<digit> : enable real-time display (waterfall)
only incoming traffic
each message is displayed only once at the first occurrence to avoid spamming the real-time display
bitmask:
0: no status (default)
1: EAPOL
2: ASSOCIATION and REASSOCIATION
4: AUTHENTICATION
8: BEACON and PROBERESPONSE
16: ROGUE AP
32: GPS (once a minute)
64: internal status (once a minute)
128: run as server
256: run as client
512: EAP
1024: EAP NAK
characters < 0x20 && > 0x7e are replaced by .
example: show everything but don't run as server or client (1+2+4+8+16 = 31)
show only EAPOL and ASSOCIATION and REASSOCIATION (1+2 = 3)
enable_status=15 (== 1+2+4+8)
Code:
enable this output:
1: EAPOL
2: ASSOCIATION and REASSOCIATION
4: AUTHENTICATION
8: BEACON and PROBERESPONSE
Using a bitmask makes on some cases the command line small.