Hashes export
#1
Hello everyone, i've got a little prob and maybe someone here can help me Smile


Ok so, i've got a database which contains name last name password mail etc etc. It also had hashes and for crack this, i want to know if it's possible to export only the hash from that file to crack them on hashcat.

Thanks for your attention 

Regards
Reply
#2
Do you know what type of hash file that it is?
I believe thats your first step.
Reply
#3
(06-08-2019, 04:23 PM)differentequal Wrote: Do you know what type of hash file that it is?
I believe thats your first step.

It's MD5 Wordpress, stocked in a .txt
Reply
#4
MD5 Wordpress is also known as phpass, to extract them from your database (assuming it's a text/csv), regex on :
- start with "$P$"
- length : 34 characters.

Once extracted, run hashcat mode (-m) 400 on hashlist.
Reply
#5
(06-08-2019, 04:59 PM)Mem5 Wrote: MD5 Wordpress is also known as phpass, to extract them from your database (assuming it's a text/csv), regex on :
- start with "$P$"
- length  : 34 characters.

Once extracted, run hashcat mode (-m) 400 on hashlist.

How i do that ? I'm on windows, i don't know how to 'regex' Sad
Reply
#6
What's the format of your database?
Reply
#7
(06-08-2019, 08:58 PM)Mem5 Wrote: What's the format of your database?

.txt
Reply