02-09-2024, 02:43 AM
(02-08-2024, 04:42 PM)rahhal81 Wrote: How can i use hashcat software or script to found the password.
Your algorithm can be defined as md5($salt1.$pass.$salt2). It is absent in current list of algorithms supported by hashcat.
Possible solutions:
1. Using module md5($pass.$salt) and $salt1 as prefix part of password.
2. Using module md5($salt.$pass) and $salt2 as suffix part of password.
3. Creating and using new module for exact algorithm md5($salt1.$pass.$salt2).