vote up 3 vote down star
1

I'm using the following code to make sure all certificates pass, even invalid ones, but I would like to know if there is a better way, as this event gets called globally and I only want the certificate to pass for a certain HTTP call and not for any others that are happening asynchronously.

// This delegate makes sure that non-validating SSL certificates are passed
ServicePointManager.ServerCertificateValidationCallback = delegate(object certsender, X509Certificate cert, X509Chain chain, System.Net.Security.SslPolicyErrors error)
{
   return true;
};

The code above is just an example of ignoring any non-validation on the certificate. The problem that I'm having is that it is a global event. I can't see which session the event is happening for. I might have a couple of http requests going through and I want to ask the user for an action for each request.

flag

Doesn't this defeat the whole purpose of securing your communications with TLS/SSL? – Alexander Sep 24 '08 at 21:44
No - it just opens you up in Man In the Middle (MITM) attacks - you still get the on the wire encryption (which, IMHO is the most important anyway). – Mark Brackett Sep 24 '08 at 23:01
I think I better explain my question a bit more - will edit... – Mladen Mihajlovic Sep 25 '08 at 7:05
Well, I guess if your threat model only includes passive attackers, then you don't need to fear MITM attacks, but, in general, MITM attacks aren't hard to perform so excluding them from the threat model isn't worth it. – Alexander Sep 25 '08 at 14:12
Well the actual idea is to give the user the choise of whether to go on or not, kind of like TortoiseSvn does. But I thought I'd solve on problem at at time ;) – Mladen Mihajlovic Sep 25 '08 at 18:03

2 Answers

vote up 1 vote down check

What about the certsender argument? Does it contain anything sensible so that you can tell what connection the callback is happening for? I checked the .NET API but it doesn't say what the argument is supposed to contain...

link|flag
Funny enough I thought I did check it but I went back because of this post and yes, certsender is actually the HttpRequest object which helps immensely. Thanks for making me check again ;) – Mladen Mihajlovic Sep 27 '08 at 21:04
vote up 0 vote down

Well, you could actually bother to check some of those parameters. ;) For instance, if you have a self signed certificate, then only let error == SslPolicyErrors.RemoteCertificateChainError through. You could also check the issuer, name, etc. on the certificate itself for additional security.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.