View Single Post
  #4  
Old 03-03-2018, 17:02
traf0 traf0 is offline
Family
 
Join Date: Nov 2017
Posts: 93
Rept. Given: 3
Rept. Rcvd 5 Times in 5 Posts
Thanks Given: 268
Thanks Rcvd at 137 Times in 51 Posts
traf0 Reputation: 5
Use free tools, they are more flexible
First use rar2john from John The Cracker jumbo package to get the hashes. With the hashes listed in a file you can start cracking them with john or hashcat .
In your case the "Wordlist + Rules" option is needed: c Capitalize the first letter and lower the rest
Google for a good dictionary or use those from SecLists.

More:
Code:
https://hashcat.net/wiki/doku.php?id=rule_based_attack
https://hashcat.net/wiki/doku.php?id=hashcat
https://github.com/danielmiessler/SecLists/tree/master/Passwords
Regarding "50% of the files contain a file which name contains this password.", you can create a list of them using easy bash script like:
Quote:
for i in $(ls | grep .rar); do unrar l $i | grep "*" | awk '{ print $6}'; done
Reply With Quote
The Following 2 Users Say Thank You to traf0 For This Useful Post:
niculaita (03-04-2018), tonyweb (03-03-2018)