When you send data using a query string, is it encrypted / hidden?
Can anyone see my variable values when I submit with them using a web address / GET request?
I've been wondering this for a long while. And the answer is:
YES (probably).
In theory, your browser would do something like this:
- Read in your request: https://someaddress.com/?mypassword=bugsbunny&creditcard=123412341234
- Resolve the address to someaddress.com: 255.254.253.252
- Connect with the web server at that IP address (port 443) using a secure handshake with SSL.
- Transmit your encrypted request.
- Disconnect.
For example, PayPal allows authorized users to perform searches and make credit transactions like this all the time.
The main concern, in theory, appears to be the possible use of "sniffers," programs placed along networks that can read transactions. If the transactions are not encrypted, the data can be easily read.
The best suggestion is, if you have control over the program on the receiving end (not the case with PayPal), you could:
- Encrypt your data on your local machine
- Send that data via the https / SSL connection
- Decrypt the data when it is received on the other end.
No comments :
Post a Comment