- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Generate word list for password cracking
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-28-2001 07:00 AM
тАО03-28-2001 07:00 AM
I am thinking of things like:
Restrict number of character between x and y
Convert letter O to zero, letter L to 1, etc
Add numeric suffix to specified length e.g. pwd123, pwd134, ...
Capitalise word
Reverse word
etc, etc.
Also any good sources of word/phrase lists would be useful.
Thanks in advance
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-28-2001 07:06 AM
тАО03-28-2001 07:06 AM
Re: Generate word list for password cracking
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-28-2001 07:18 AM
тАО03-28-2001 07:18 AM
Re: Generate word list for password cracking
I can see password cracking programs, and hashing algorithms, but no programs to generate / mutate the word lists.
Am I missing something?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-28-2001 07:42 AM
тАО03-28-2001 07:42 AM
Re: Generate word list for password cracking
Sorry, I misunderstood the original question. Here's another link I found that, perhaps, will assist you:
http://www.multicians.org/thvv/gpw.html
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-28-2001 07:50 AM
тАО03-28-2001 07:50 AM
Re: Generate word list for password cracking
Suppose I have a list of 10,000 words/phrases.
For each of those 10,000 I want to create variations of the type
Letter to number (O to 0)
Capitalise first letter
Create numberic suffix to standard length
etc.
My output file would be a wordlist of at least tens of thousands, possibly hundreds of thousands.
I could then use this output file, as an input file to a password cracker that I already have.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-28-2001 09:37 AM
тАО03-28-2001 09:37 AM
Re: Generate word list for password cracking
(:s/l/1/g command in vi, for example).
You could take the new list and append it to the old list so you would have all the words. It would have to be a fairly large program, though, to cover all the options. I'm not a scripting guru, so I'm not sure about how this can be done. Maybe someone out there with a lot of scripting background can tell if it is feasible.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-28-2001 11:23 PM
тАО03-28-2001 11:23 PM
Re: Generate word list for password cracking
Alec Muffet's crack does what you want. It takes an arbitray number of dictionaries, permutes letters for numbers (like 3l33t being eleet being elite) and compares their crypted values with the entries in /etc/passwd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-12-2001 01:15 PM
тАО04-12-2001 01:15 PM
SolutionWhat you're asking for is one of the features of the more advanced password crackers, including Crack and John. If for some reason you need to generate a mutated wordlist only, then the command line to use with John is:
./john -w:source-word-file -rules -stdout > mutated-word-file
and the rules are specified in john.ini (or john.conf). See john-1.6/doc/RULES for the syntax (which is an extension to that used by Crack 5).
The wordlists to use with this you may obtain at:
ftp://ftp.zedz.com/pub/crypto/wordlists/
ftp://sable.ox.ac.uk/pub/wordlists/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-17-2001 01:50 AM
тАО04-17-2001 01:50 AM
Re: Generate word list for password cracking
I will give it a try and then assign the points.