Tag: password
Create Random Password
July 2, 2009
Use this command to create a random password < /dev/urandom tr -dc A-Za-z0-9_ | head -c8 Also see…
Linux Command to Generate a Password
October 22, 2008
Linux command to create a random password head -n1 /dev/urandom|md5sum -b|head -c 5
Random Password in PHP
October 20, 2008
A simple way to create a random password in PHP $password = substr(md5(time()), 0, rand(4,8));
pwck Command
July 27, 2008
check correct syntax and file format of ‘/etc/passwd’ and users existence pwck
Disable Password Prompt at Startup in Windows XP
May 29, 2007
Note: This post may be wrong. I’m getting a lot of complaints that this doesn’t work. See the Microsoft page…
Recent Comments