15 char exactly
#1
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
Reply
#2
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=mas...m_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.
Reply
#3
(02-04-2020, 12:31 PM)philsmd Wrote: 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=mas...m_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.


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
Reply