LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Linux Dictionary (https://www.linuxquestions.org/questions/linux-newbie-8/linux-dictionary-4175451793/)

lkurrt 02-26-2013 01:01 PM

Linux Dictionary
 
Can anyone give me a good brute force dictionary list? How can I associate it with Linux running on VMWare? Thanks

danielbmartin 02-26-2013 01:18 PM

Quote:

Originally Posted by lkurrt (Post 4900271)
Can anyone give me a good brute force dictionary list?

Do you mean "word list?" That would be valid words without definitions. Search your computer for files such as
Code:

/usr/share/dict/words
 .. or ..
/usr/dict/words

If you find it you may write a bash program which includes
Code:

WordList="/usr/share/dict/words"
From that point on, you can have all sorts of fun. Example:
Code:

# Find words which have the same letters in the first two columns."
# Examples: aardvark eerie
WordList="/usr/share/dict/words"
awk -F "" '$1==$2 {print}' $WordList >$OutFile

Daniel B. Martin

lkurrt 02-26-2013 01:51 PM

I want to use the word list for Back Track5...

Mara 02-26-2013 02:01 PM

lkurrt, what do you want to use the dictinary for? Please note that the LQ rules clearly state that we do not accept cracking questions:
Quote:

Posts containing information about cracking, piracy, warez, fraud or any topic that could be damaging to either LinuxQuestions.org or any third party will be immediately removed.

lkurrt 02-26-2013 02:03 PM

I want to pentest it on my own router. Its for educational purposes.

Habitual 02-26-2013 02:25 PM

http://www.linuxquestions.org/questi...te-4175451794/

spiky0011 02-26-2013 02:48 PM

Hi

Have you checked the passwd lists that come with BT5 or even make your own list

lkurrt 02-26-2013 03:35 PM

Can i copy paste dictionary? The one I download in my Windows and copy paste it in Linux running on VMWare?

spiky0011 02-26-2013 03:43 PM

Hi

I dont use vm, cant you use a usb stick


All times are GMT -5. The time now is 06:29 PM.