D
D
Deka0072016-07-28 15:40:44
linux
Deka007, 2016-07-28 15:40:44

How to create a password dictionary?

How to create a password dictionary? For example, for brute force. In what language should it be written or can it be created through a ready-made program or generator.

Answer the question

In order to leave comments, you need to log in

4 answer(s)
A
Alexander, 2016-07-28
@fireSparrow

Why create? Type in the "most common passwords" into the search engine and you will find a ready-made list.
And programmatically generating it is nonsense. You will never guess all the algorithms that the user's head works when he comes up with a password. Trying to algorithmize all this is something from the field of strong AI.

V
Vladimir Martyanov, 2016-07-28
@vilgeforce

Tons of options. You take a bunch of books in txt, set a 20-line python script on them, it forms a dictionary from the texts. You can write a script that will generate words according to the given rules.

S
Spetros, 2016-07-28
@Spetros

Crunch
https://kali.tools/?p=720

A
Anton, 2016-07-28
@MoonMaster

In general, you can use the utility in Kali Linux OS (specially designed for security checks). Well, if you really wanted to write a "bicycle", then simply set a dictionary (letters and numbers from which the word should consist) and, in fact, an infinite loop for generating random words. Random word generated, add to dictionary. It turned out a new word, check if it is in the dictionary. If there is - generate a new one, otherwise add to the dictionary

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question