0

what should my database password include and not include? I'm using mySQL and PHP

4 Answers 4

2

Wikipedia actually has a pretty extensive article on the subject of password strength. Definitely worth a read.

Sign up to request clarification or add additional context in comments.

Comments

1
  • Lowercase Letters (a-z)
  • Uppercase Letters (A-Z)
  • Numbers (0-9)
  • Special Characters

Also ensure that you password isnt something silly short like 4 chars. Make it a nice long password, 10+ chars.

Comments

0

You can read guidelines at http://dev.mysql.com/doc/mysql-security-excerpt/5.0/en/password-security.html

Comments

0

My personal rule for choosing mysql password are:

  • It should be a valid var name.
  • It should include upper and lowercase letters.
  • Uppercase letters shouldn't necessarily be at the beginning of a word. eg : woRd
  • It should be longer than 15 chars.
  • It should include include numbers.
  • It should never reference the name of my project or something about me.

eg: fLodHooters_25_lightsOn

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.