[Solved] CakePHP: How secure post method is? [closed]


I don’t know what you heard about post being insecure and I’m not really sure what you are afraid of (Could you clarify, please?).
If you use post, you can be sure that the data came in via a POST request (and not a GET).

If you are afraid of someone listening in between your server and the client’s browser, it does not make much of a difference which method you use. Both can be intercepted. Use POST/GET via HTTPS instead of HTTP to prevent this.

6

solved CakePHP: How secure post method is? [closed]