Did you know that WordPress provides a salt-generation engine with copy/paste ready text that you can use for your wp-config.php file to help make your WordPress installations that much safer from password cracking? If you aren’t familiar with the concept of salting cryptographic data, Wikipedia has a great entry.
The output of that URL looks like this (WARNING: Do not use these values)
define('AUTH_KEY', 'lsN32UCfT=-}ToXgR={6+OYzrV_!^qaZvQ$gQ&q?Rj#4lYpl-5r,(-k(b9^0M<C~'); define('SECURE_AUTH_KEY', 'O@$?-d^82Z1t+[V)+{ot6f./uR6nMppeI,IEB9Vbm]l^Vk6FS$04xt)lX:P!@9(G'); define('LOGGED_IN_KEY', '&!0}EW$U5qCDo{3jFZV[!$;`t|0QN&DvO|>FC.{~V7~Yzq2HR2/wb:ZE&=TAjwK~'); define('NONCE_KEY', '.Tx 2G+|)-@iI,74;M-2Aj+LdG@*SN|^D`|;^|0HJS`1V6FJ2`:oy2EQE|/;/vjz'); define('AUTH_SALT', 'qVK*v<Ehe_YW>#gKh>+aI9h@9&ZJB|D{is][raYOXS5,z0R3NWIT4fjWNiX3DG:5'); define('SECURE_AUTH_SALT', 't-Y;V9Wx7CK{T,_Y/{iUr[US?x_|@eZu6)O4 m{P`+n8xBkd.^9C{*$P`X|1xB!H'); define('LOGGED_IN_SALT', ']V@Xh;|[EX81$n&Iaj>tXC5+WRW@Qk/D_BW TGzfj#I5+N3$2r96cKMXx$|[+pb*'); define('NONCE_SALT', ':]+qOBD+h5pW4m |3,P5!mCXQ5]w~@7P>+#]gr,3NP/^8#;llu1v_l7 _fM1cnqa');
Take 5 minutes and go generate your own salts and update your wp-config.php file. It will greatly increase the security of your sites.