help with code for wpa
#1
Can you help please need the a correct code for 3 variable: lower case letters, upper case letters and numbers for wpa

all in one code for only 8 digits


Thanks in advance.
Reply
#2
you mean 8 positions, just options for custom charset, add mode and hashtarget on your own

-1 ?u?l?d ?1?1?1?1?1?1?1?1
Reply
#3
(10-10-2022, 01:41 PM)Snoopy Wrote: you mean 8 positions, just options for custom charset, add mode and hashtarget on your own

-1 ?u?l?d ?1?1?1?1?1?1?1?1

still have error I used below code

hashcat.exe -a 3 -1 ?l?u ?1?1?1?1?1?1?1?1 test.hccapx

Error:
Code:
Hash '?1?1?1?1?1?1?1?1': Token length exception

No hashes loaded.

can you pleased check what's wrong
Reply
#4
(10-11-2022, 10:30 PM)marc1n Wrote: hashcat.exe -a3 -w4 -m2500 -1 ?l?u ?1?1?1?1?1?1?1?1 test.hccapx

Mode WPA:
2500 WPA-EAPOL-PBKDF2 1 https://hashcat.net/misc/example_hashes/hashcat.hccapx
2501 WPA-EAPOL-PMK 14 https://hashcat.net/misc/example_hashes/...pmk.hccapx

Still having this error it made me got mad Smile

?1?1?1?1?1?1?1?1: Invalid argument


Attached Files
.png   Capture.PNG (Size: 3.78 KB / Downloads: 4)
Reply
#5
(10-11-2022, 10:49 PM)blackrosemmt Wrote:
(10-11-2022, 10:30 PM)marc1n Wrote: hashcat.exe -a3 -w4 -m2500 -1 ?l?u ?1?1?1?1?1?1?1?1 test.hccapx

Mode WPA:
2500 WPA-EAPOL-PBKDF2 1 https://hashcat.net/misc/example_hashes/hashcat.hccapx
2501 WPA-EAPOL-PMK 14 https://hashcat.net/misc/example_hashes/...pmk.hccapx

Still having this error it made me got mad Smile

?1?1?1?1?1?1?1?1: Invalid argument

Try hashcat.exe -a3 -w4 -m22000 -1 ?l?u ?1?1?1?1?1?1?1?1 test.hccapx

https://hashcat.net/wiki/doku.php?id=cracking_wpawpa2
Reply
#6
Code:
Usage: hashcat [options]... hash|hashfile|hccapxfile [dictionary|mask|directory]...

Pretty simple to tell whats wrong by just looking how formatting is suppose to be setup.
Reply
#7
I found the problem the code should be with order as below otherwise will return errors

hashcat -m 2500 test.hccapx -a3 -1 ?l?u?d ?1?1?1?1?1?1?1?1
Reply