PDA

View Full Version : Visual Build Pro 7 making random connections?


Rogier
06-30-2009, 09:03 AM
Since I'm using Visual Build Pro 7, I noticed it sometimes tries to connect to "crl.comodoca.com" when starting a build. I've never seen this with version 6.

I dunno why it's doing this, or whatever it's trying to download, but since my builds typically only require local stuff, I'd rather disable it. Is that possible?

Or, actually I'm wondering, what does VBP7 need from crl.comodoca.com exactly?

kinook
06-30-2009, 10:06 AM
VBP itself doesn't connect to anything external. VBP does verify its digital signature at times (for security reasons). I suspect what's happening is that calling the Windows API to verify a signature (WinVerifyTrust (http://msdn.microsoft.com/en-us/library/aa388208(VS.85).aspx)) causes Windows to retrieve a certificate revocation list (CRL) to determine if the certificate has been revoked. setreg.exe (http://msdn.microsoft.com/en-us/library/aa387700(VS.85).aspx) can be used to prevent the external lookup:
http://blogs.msdn.com/heaths/archive/2008/12/11/another-possible-workaround-for-error-1330.aspx

There also appears to be a flag available to prevent the revocation list lookup when verifying a signature, which we'll use in the next release.