-1

We have many text files with ~all the words from a given language.

Does someone know a "full" list of methods a word/dictionary can be remaked? ex.:

testword

can be converted using leetspeak (https://en.wikipedia.org/wiki/Leet) to:

7357\/\/0RD

What other converting methods exists in the world?

gasko peter
  • 843
  • 1
  • 12
  • 20
  • 2
    "What other converting methods exists in the world?" There is literally no end to the answers you can receive.... –  Jan 15 '14 at 11:41

2 Answers2

2

There is no possible "full" list, except the set of all possible sequence of characters, which is quite big, verging on the infinite, even.

To see what is done in practice, you may begin by reading up on the dictionary generation rules of John the Ripper, a well-known password cracking tool.

Thomas Pornin
  • 320,799
  • 57
  • 780
  • 949
0

Having knowledge about password rules applied to a system is typically a good way. Let's say a service require a legitimate password to be between 6-10 alphanumeric characters with at least one number. You can get a grip on the rules by registering in that system (if this is possible) or apply some domain knowledge of this system.

So without this knowledge there is in deed no way of generating dictionaries in a efficient way. If you can prune 500.000.000 passwords that are <6 or >10 or having no number in it, you have already won. Converting everything to leet speak does not automatically help when the system in question does dissallow backslashes for instance.

(On the other hand as an administrator: hiding those rules from the legitimate user will really annoy them)

But there is a way of generating a full list, you don't even need any word lists for that, that is a simple brute force attack over the entire character space beginning with 1 up to some limit, lets say a password limit of 256. Then you will have the guaranteed "word list". The amount of garbage data is of course enormous but it might be as well as enormous when using leet speak on a server disallowing those chars.

Samuel
  • 708
  • 5
  • 13