PHP/MySQL security--where to begin?

后端 未结 5 1963
广开言路
广开言路 2021-02-15 17:57

I\'m a PHP/MySQL noob who knows nothing about online security.

Could you point me to some resources that will aid in my knowledge? (Beginner level, please!)

5条回答
  •  遇见更好的自我
    2021-02-15 18:12

    This question is well-answered and covers MySQL injection attacks (one of the more common concerns. This question is also well documented and covers XSS (cross site scripting) attacks well.

    Lastly, learn about PHP.INI and how to set it up and what is actually open/closed and on/off. A good host will, for example, never turn on register globals, but you should at least know what it is and why to check it. PHP Security has resources on that and many other PHP security concerns.

提交回复
热议问题