Точнее генератор сноснозапоминаемых паролей. Используются, к сожалению, только латинские буквы. Да и настройками программа не блещет, точнее их вообще нет. Есть только два параметра которые можно ей передать:
gpw 3 10
То есть сгенерировать 3 пароля длиной в 10 символов.
Мне кажется, что иногда может пригодиться, но лучше использовать русское слово или словосочетание написанное на английской раскладке. Особенно хорошо, когда в нём есть буквы Х, Ъ, Ж, Э, Б и Ю 🙂
Обновление 05 января 2010
Ещё одна заметка на эту тему: Создание паролей.
Shell: Linux Password Generator
A simple bash function to generate secure passwords with standard Unix programs:
function mkpw() { head /dev/urandom | uuencode -m - | sed -n 2p | cut -c1-${1:-8}; }
Add that to your ~/.bashrc file. The password length can be specified as an argument (defaults to 8).
Example usage:
$ mkpw
B5PcCWC3
$ mkpw 10
V8T7ZrTQuN
On Ubuntu, the uuencode program is in the sharutils package. Alternatively, you could replace uuencode with md5sum or sha1sum, which would restrict the passwords to hex digits (and which would therefore make them appropriate for WEP keys and the like):
function mkpw_md5() { head /dev/urandom | md5sum | cut -c1-${1:-8}; }
function mkpw_sha1() { head /dev/urandom | sha1sum | cut -c1-${1:-8}; }
Labels: Bash, Make Password, Password Generator, Secure Password, Shell Function, Technology
Bash скрипт генерации паролей.
Perl-скрипт генерации паролей