PHP - Security what is best way?

后端 未结 6 833
无人及你
无人及你 2021-02-06 09:24

What is the best way to secure an intranet website developed using PHP from outside attacks?

6条回答
  •  后悔当初
    2021-02-06 09:28

    You could only allow access from internal IPs from the php app itself. Also dont ignore the usual security and best practices. Input validation and output encoding(whitelisting only), user accounts with hashed passwords etc.

提交回复
热议问题