When working with MSMQ, the connection cache is disabled by default. Enabling the MSMQ connection cache greatly increases the throughput of the queue (~ 10x).
When viewing the code, there is a link to a security vulnerability, as shown below.
// Whidbey Beta 2 SECREVIEW (Dec 2004 [....]):
// Connection Cache can be a security vulnerability (see bug 422227)
// Therefore, disable it by default
private static bool enableConnectionCache = false;
What is the potential security vulnerability (cannot find the error link)?
source
share