help for bruteforce
#1
Hello everyone, good morning! I would like to know how to brute force this string using all the letters of the latin alphabet and the numbers from zero to nine as i can't do it by myself.
$2y$10$CsgimnoQBfiIAvK/xpjBr.ZtVG21QPjeiaIL8MkNmtxM9EuDceiN3
Reply
#2
(01-23-2022, 10:18 AM)qkwt Wrote: Hello everyone, good morning! I would like to know how to brute force this string using all the letters of the latin alphabet and the numbers from zero to nine as i can't do it by myself.
$2y$10$CsgimnoQBfiIAvK/xpjBr.ZtVG21QPjeiaIL8MkNmtxM9EuDceiN3


-m (define hash type)
hash.txt (txt where hash is locates)
-a (attack mode)
-w (attack type)
-O --outfile=.txt --outfile-format=3 
-1 ?d?l (d=digits l=small letters L=large letters)
?1?1?1?1?1?1?1?1  (?1=as many times as password long persumably is)
-i --increment-min 8 --increment-max 9  (options for increment)
Reply
#3
given your example this hash

$2y$

isnt supported by hashcat
Reply