Security

Discussion in 'MySQL' started by blaze718, Aug 28, 2009.

  1. #1
    How often do you guys change your database username and password? That's like an daily task to me since I'm a security freak.
     
    blaze718, Aug 28, 2009 IP
  2. blaze718

    blaze718 Peon

    Messages:
    560
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Anyone?...
     
    blaze718, Aug 29, 2009 IP
  3. theapparatus

    theapparatus Peon

    Messages:
    2,925
    Likes Received:
    119
    Best Answers:
    0
    Trophy Points:
    0
    #3
    *shrug* Next to never actually.
     
    theapparatus, Aug 29, 2009 IP
  4. Zizzi

    Zizzi Peon

    Messages:
    67
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    It's not necessary if you know that the rest of your site is fairly secure. Also, it depends on how the passwords are stored in your database. I am assuming your hashes are stored using MD5. Although it is considered to be 'weak', a properly salted MD5 hash can take years to crack. Most hackers give up after a few days.

    Things to make sure you do:
    - Don't use dictionary words, or even a combination of dictionary words.
    - Use 3 of the following: lowercase, uppercase, symbols, numbers.
    - Use salting methods to store your hash.
    - DO NOT use standard salting methods, make up your own. (Hackers can be lazy. It takes to time write a cracker that can crack different forms of salted hashes)

    Other than that, just make sure you don't get keylogged.
     
    Zizzi, Aug 29, 2009 IP
  5. theapparatus

    theapparatus Peon

    Messages:
    2,925
    Likes Received:
    119
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Or get blocked from the servers after the 5th attempt by the firewalls. :)
     
    theapparatus, Aug 30, 2009 IP