Algorithm for generate default password
#2
Two options (there are more, but I prefer one of these):

1) hashcat -a 9 attack
$ cat hashfile.hc22000 | awk 'BEGIN { FS = "*" } ; {print $4 }' > test.list
$ hashcat -m 22000  -r hashcatmac.rule -a9  hashfile.hc22000 test.list


2) use hcxpsktool
$ hcxpsktool -c hashfile.hc22000 --maconly | hashcat -m 22000 hashfile.hc22000


Both options create also variations (e.g. NIC +n):
544617C475F0
544617C475F1
544617C475F2
544617C475F3
...
544617C475FF


Attached Files
.zip   hashcatmac.rule.zip (Size: 3.59 KB / Downloads: 5)
Reply


Messages In This Thread
RE: Algorithm for generate default password - by ZerBea - 12-06-2023, 03:09 PM