What security issues should I look out for in PHP

后端 未结 18 1955
挽巷
挽巷 2020-11-29 01:51

I just starting out learning PHP, I\'ve been developing web apps in ASP.Net for a long time. I was wondering if there are any PHP specific security mistakes that I should be

18条回答
  •  爱一瞬间的悲伤
    2020-11-29 02:45

    Most of the security issues related to PHP come from using unparsed "outside" (GET/POST/COOKIE) variables. People put that kind of data directly into file paths or sql queries, resulting in file leakage or sql injections.

提交回复
热议问题