hcxdumtpool enable_status(number)
#1
Hallo,

ich bin neu und am probieren. Bei YOUTUBE wird gesagt: 
sudo hcxdumptool  -i  .... enable_status=1

Aber ausgeführt wird: enable_status=15

Funktioniert, aber weil neugierig habe ich versucht hier eine Auflistung dazu zu finden. Finde hier 1,2,3, aber nichts mit 15.
Weiß da wer mehr darüber?

Vielen Dank im Voraus

translated via google:

Hello,

I'm new and trying. YOUTUBE says:
sudo hcxdumptool -i .... enable_status=1

But running: enable_status=15

It works, but out of curiosity I tried to find a listing for it here. Find 1,2,3 here, but nothing with 15.

Does anyone know more about this?

Thanks in advance
Reply
#2
From
$ 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.
Reply
#3
OK

Thank you
Reply