Securing forms submitting to a different domain

2019-06-09 02:59发布

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?

标签: security ssl
1条回答
够拽才男人
2楼-- · 2019-06-09 03:18

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.

查看更多
登录 后发表回答