How do I keep a mySQL database secure?

前端 未结 5 1243
-上瘾入骨i
-上瘾入骨i 2021-02-08 09:46

I\'m going to be implementing a PHP/mySQL setup to store credit card information.

It seems like AES_ENCRYPT/AES_DECRYPT is the way to go,

5条回答
  •  半阙折子戏
    2021-02-08 10:31

    MySQL, there is six easy steps you can do to secure your sensitive data.

    Step 1: Remove wildcards in the grant tables

    Step 2: Require the use of secure passwords

    Note: Use the MySQL “--secure-auth” option to prevent the use of older, less secure MySQL password formats.

    Step 3: Check the permissions of configuration files

    Step 4: Encrypt client-server transmissions

    Step 5: Disable remote access

    Step 6: Actively monitor the MySQL access log

    Security Tools

提交回复
热议问题