What are the methods used to secure HTTP traffic inside a WinForms application from sniffing.
I want to ensure that all HTTP traffic originating from say the WebRequest is not directly visible to someone using a sniffing application such as Fiddler.
Apart from using HTTPS are there any alternatives for sending web traffic out of a WinForms application that is unsniffable?
You could create a VPN connection to the webserver, and then route the traffic over that?
You could create a SSH connection to a server that has a VPN tunnel to the webserver, then route all the traffic via SHH, then the VPN?