What are the implications of using 'low' security in cakephp?

前端 未结 4 1738
暗喜
暗喜 2021-01-12 11:50

I had an authentication problem in cakephp, when positing credentials from an external site the authentication would work, and then get immediately lost, with the site promp

4条回答
  •  攒了一身酷
    2021-01-12 12:30

    When security is high, a new session ID get generated on every request. It is practically impossible to create a single-sign-on solution between two applications by sharing a session cookie in this case, since Cake will constantly change the session ID without notifying the other application.

    When security is medium (or higher), session.referer_check is enabled.

    When security is low, you don't have either of the above features, but it is still just as secure as any average PHP website/CMS out there.

提交回复
热议问题