Generate strong password in linux.

DON'T post new tutorials here! Please use the "Pending Submissions" board so the staff can review them first.
Post Reply
User avatar
Big-E
Administrator
Administrator
Posts: 1332
Joined: 16 May 2007, 16:00
16
Location: IN UR ____ , ____ING UR _____ .
Contact:

Generate strong password in linux.

Post by Big-E »

I just learned of a neat little program to generate strong passwords.

Debian, or other distrobution.

sudo apt-get install mkpasswd

To use type:

mkpasswd --char=10

This will generate a 10 char random password. Good luck remembering it. ;)

You can also try:

mkpasswd -s "insertwordhere"

This will take the characters from the entered word, and create a password from those char.

Ubuntu uses a different program in its repositories for some reason, but its called makepasswd, to install it simply type:


sudo apt-get install makepasswd

The program is used exactly the same way, except of course, you replace mkpasswd with makepasswd.

Now enjoy your new secure passwords and rid of your 'abc123'/'cathat' passwords today. :P

eppik
Fame ! Where are the chicks?!
Fame ! Where are the chicks?!
Posts: 212
Joined: 26 Mar 2006, 16:00
18
Location: Infinite Loop
Contact:

Post by eppik »

I believe a sticky should be made of this....for the future generations of linux users...lol

User avatar
Gogeta70
^_^
^_^
Posts: 3275
Joined: 25 Jun 2005, 16:00
18

Post by Gogeta70 »

I could create a program like this in a few minutes if i desired, it's one of the simplest concepts. As a matter of fact, i think that would be a great lesson in a PHP tutorial, or any other programming language tutorial, probably.

Definitely a great tool for anyone to use. Good find.
¯\_(ツ)_/¯ It works on my machine...

Post Reply