![]() |
15 char exactly - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: 15 char exactly (/thread-8937.html) |
15 char exactly - maxhrc - 02-04-2020 I All, i spent hours to search some solutions...but still no understand syntax :-( and have great problem with my GPU I' ve a radeon RX 460 4 gb but with -d 2 parameter hashcat not work..... and so on.... I need to crack a 15 exactly char password of wifi. only lower case and number (important fix 15 char not less not more) I write mask -1 ?l?l..... 15 times and -2 ?d?d?....15 times... not work I read wiki but can undestand method :-( What is correct syntax? I run on windows.... thanks MAX RE: 15 char exactly - philsmd - 02-04-2020 it is infeasible the math is (26+10)^15 = 221073919720733357899776 (very huge number !) which by the way is even larger than a 64-bit number (2^64 = 18446744073709551616) see https://hashcat.net/wiki/doku.php?id=mask_attack#custom_charsets The syntax of course would be Code: hashcat -m 2500 -a 3 -w 3 --custom-charset1 ?l?d my.hccapx ?1?1?1?1?1?1?1?1?1?1?1?1?1?1?1 You will of course get an "Integer overflow detected" error, because it's just an insane approach of cracking passwords. RE: 15 char exactly - maxhrc - 02-04-2020 (02-04-2020, 12:31 PM)philsmd Wrote: it is infeasible Thx Phil..... ok I understand :-( it's impossible in this life :-D It's a vodafone router.... that have 15 charset....I assume that it's impossible to crack with bruteforce |