Securing forms submitting to a different domain

2019-06-09 03:14发布

问题:

I want to secure some forms that are placed on third party sites and submit to our little in house affiliate app.

What is involved to encrypt forms between sites? Is SSL on the receiving domain sufficient? or does the page the form sits on need to be https too?

回答1:

Essentially, you could do it two ways. One simple way is to use HTTPS and but thats as long as both can be HTTPS. They must also both have SSL certificates.

Another way is to POST the forms locally encrypt/secure the data, then do another request over to the other domain where you decrypt it.



标签: security ssl