Are there any security implications to making an HTTPS/SSL GET operation with sensitive data in the URL? Would this be logged in cleartext in the IIS logs? Could network traffic requests be sniffed on an open WiFi access point?
i.e. https://www.websiteurl.com/get.aspx?user=user&password=password
Question is better answered here: Are https URLs encrypted?
That said you are better off not using get requests with the username/pw on the querystring anyway.
edit
I wanted to add a bit more to this.
GETrequest is available in the browser history. If something is able to sniff the browser history then it would have complete access to whatever was in the query string.Between #2 and #4, using the query string for sensitive data is unwise.