Skip to main content

All Questions

1 vote
0 answers
96 views

What's the most simple approach to this wordlist generation and ruleset problem?

This is a password recovery project, which is more complex than just generated a wordlist, since using my tries (see below) it seems to be not enough to just generate a wordlist. I'm trying to recover ...
Sir Muffington's user avatar
0 votes
0 answers
21 views

Is it possible to have and use a dynamic dictionary for brute-forcing? [duplicate]

For some reason - totally useless for the question - I have this PDF file with a password I forgot and I have no way to remember. I know for a fact (the person who created and gave me this PDF told me ...
Monok's user avatar
  • 1
2 votes
2 answers
2k views

dictionary attack hashing algorithm

Does the kind of algorithm used to hash passwords have any advantages or disadvantages in a dictionary attack? i.e. SHA256, MD5, etc. or is it just the dictionary that is used by the attacker matters? ...
gg0092's user avatar
  • 21
1 vote
0 answers
273 views

Using John the Ripper with custom encryption function

I have a working script done with python to do dictionary attack on a few hashes import hashlib def main(): print("Starting...") users = [] with open('users.txt') as f: for line ...
vahvero's user avatar
  • 111