Post
Topic
Board Meta
Re: Info about the recent attack
by
SoreGums
on 11/09/2011, 12:31:38 UTC
Create 4 random passwords which contains no special characters and are 10 characters long:
Code:
cat /dev/urandom| tr -dc 'a-zA-Z0-9' | fold -w 10| head -n 4
Create 4 random passwords which DO contains special characters and are 12 characters long:
Code:
$ cat /dev/urandom| tr -dc 'a-zA-Z0-9-_!@#$%^&*()_+{}|:<>?='|fold -w 12| head -n 4| grep -i '[!@#$%^&*()_+{}|:<>?=]'
that's pretty neat little script - cheers Wink

I'm going to stick to lastpass though...