I am very new to PHP and having little knowledge about cakePHP
I am trying to pass some sensitive information using POST method from site1.com
to site2.com
.
But the Problem is with CSRF protection at site2.com
, it shows CSRF token Mismatch whenever i tried to pass post parameter to site2.com
from site1.com
.
I wanted to know how to bypass this csrf protection.. Is there any way to bypass only for this specific post parameter or domain? or Is there anyway to generate token at site1.com
and verify at site2.com
using get method?