How to handle masked passwords in input parameters?
#1
For example, the following command

hashcat -m 0 ee89223a2bXXXXXXXX132ed77abbcc79 -a 3 ?h?h?h?h?h?h?h?h?h?h?h?h

I need to perform SHA-256 hashing on each generated candidate password, and then the candidate password should proceed to the original program process


the original process:
?h?h?h?h?h?h?h?h?h?h?h?h
candidate password:  124a4e6fa21a
md5(124a4e6fa21a)
COMPARE(  md5(124a4e6fa21a)  ee89223a2bXXXXXXXX132ed77abbcc79     )


my requirements
?h?h?h?h?h?h?h?h?h?h?h?h
candidate password:  124a4e6fa21a
md5(124a4e6fa21a)
SHA-256(  md5(124a4e6fa21a)  )
COMPARE(  SHA-256(  md5(124a4e6fa21a)  )  ,  ee89223a2bXXXXXXXX132ed77abbcc79     )


I tried to handle this in the function, but actually, the candidate passwords generated by this function do not affect the computation result
Reply


Messages In This Thread
How to handle masked passwords in input parameters? - by gitc - 12-29-2024, 04:53 PM