Månedsarkiv: marts 2014

Create Strong passwords in BASH Script

OK, this has been answered a couple of times before: http://unifix.org/cgi-bin/index.pl?action=show&ID=193 http://unifix.org/cgi-bin/index.pl?action=show&ID=203 But none of those scripts actually test for password strength 🙂 Debug mode: LOOP=1 PASSWORD=”” until [[ $PASSWORD =~ [a-z].*[a-z] ]] && [[ $PASSWORD =~ [A-Z].*[A-Z] ]] && … Læs resten

Udgivet i Knowledge Base | Skriv en kommentar