![]() |
|
|
|
|||
|
Install apg port or add package
Code:
cd /usr/ports/security/apg ; make install clean pkg_add -r apg Code:
/usr/local/bin/apg -a 1 -m 8 -n 50 |more Last edited by erno; 8th May 2008 at 06:54 AM. |
|
||||
|
Some website offers an online service to generate secure password.
Or try the following commands instead: Code:
dd if=/dev/urandom count=200 bs=1 2>/dev/null|tr "\n" " "|sed 's/[^a-zA-Z0-9]//g'|cut -c-8 Code:
head -c 200 /dev/urandom | tr -cd '[:graph:]' | head -c 8 Code:
dd if=/dev/urandom count=128 bs=1 2>&1 | md5 | cut -b-8 http://foolab.org/node/1436 I know complex password is good, but its very troublesome to remember them
|
|
|||
|
I'm using this
Code:
head -c 10 /dev/random | uuencode -m - |
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Hacking at Random 2009 (13-16 Aug, Vierhouten, NL.) | Carpetsmoker | Off-Topic | 2 | 6th November 2010 03:54 PM |
| Generating passwords with jot(1) | J65nko | Guides | 6 | 5th February 2010 01:28 AM |
| See what process is generating DNS traffic? | Bruco | FreeBSD General | 3 | 2nd July 2009 05:57 PM |
| Anyone with AMD64 random panics on i386? | indiocolifa | FreeBSD General | 13 | 24th March 2009 01:53 AM |
| Questions about encrypt local passwords | aleunix | OpenBSD Security | 4 | 2nd June 2008 02:07 PM |