Why is my .Net app contacting Verisign?

2019-04-26 19:52发布

I wrote a .Net application that has nothing to do with network communication. There is not a single line of code in the whole application that uses the NIC, but my firewall has caught it trying to contact Verisign for some reason when the app starts. This does not happen regularly; as a matter of fact, it has only happened twice.

The last time it happened, I was able to launch Wireshark before telling my firewall to allow access to the network. There was no real data transfer that I can tell. It only captured 9 TCP packets: some SYN packets, some SYN/ACK, and some RST packets (The RST packets were broken). I would suspect one of my third-party dlls, but I don't see why a math library or an image manipulation library would try to establish a connection with Verisign and then do nothing with that connection.

My clients are in organizations with tight security; the last thing I want is a phone call asking why my application is connecting to the Internet.

Does anyone know why this is happening? Is there a way to prevent it from happening?

The .pcap file that Wireshark generated is here.

5条回答
孤傲高冷的网名
2楼-- · 2019-04-26 20:31

Here's a good link a blog explaining what's happening, and the changes to your application config file you can add to stop it from happening, specifically:

<configuration>
   <runtime>
       <generatePublisherEvidence enabled="false"/>
   </runtime>
</configuration>

It's related to authenticode signing, and the PublisherMembershipCondition which you almost definitely don't need. That's explained here on MSDN

A thing to note is that .Net 2.0 and .Net 3.0 only added support for this config setting with SP1. .Net 3.5 supports this without any service pack.

查看更多
Root(大扎)
3楼-- · 2019-04-26 20:41

Are these paid third party dlls which are possibly doing some sort of usage authentication?

查看更多
做自己的国王
4楼-- · 2019-04-26 20:44

Are any of the 3rd party DLLs signed with Authenticode?

查看更多
Deceive 欺骗
5楼-- · 2019-04-26 20:46

If it's a web app with SSL, it could be IE trying to verify that the certificate hasn't been revoked.

查看更多
forever°为你锁心
6楼-- · 2019-04-26 20:47

If you sign your assembly with a real certificate, the .net runtime has to check the digital signature.

查看更多
登录 后发表回答