Securely sending callbacks to remote servers

For discussion of the Poker Mavens server module and other administration topics
Post Reply
imop44
Posts: 3
Joined: Sat Jun 01, 2019 9:55 am

Securely sending callbacks to remote servers

Post by imop44 »

When sending a callback to a remote server, is there anything preventing the request and callback password from being read by a malicious party?

Thanks
Kent Briggs
Site Admin
Posts: 5880
Joined: Wed Mar 19, 2008 8:47 pm

Re: Securely sending callbacks to remote servers

Post by Kent Briggs »

The parameters are sent via POST so if your callback code is running on an SSL-enabled server and you specify an HTTPS link then the password is encrypted along with everything else. Even if not, it would require a man-in-the-middle attack. If that were possible then you are already compromised. The password option just keeps random hackers and bots from purposely (or accidentally) executing your callback code.
imop44
Posts: 3
Joined: Sat Jun 01, 2019 9:55 am

Re: Securely sending callbacks to remote servers

Post by imop44 »

Okay great, thanks for the quick response.
Post Reply