CA2106: Secure asserts
Visual Studio 2010
TypeName | SecureAsserts |
CheckId | CA2106 |
Category | Microsoft.Security |
Breaking Change | Breaking |
Asserting a security permission without performing any security checks can leave an exploitable security weakness in your code. A security stack walk stops when a security permission is asserted. If you assert a permission without performing any checks on the caller, the caller could indirectly execute code by using your permissions. Asserts without security checks are permissible only when you are sure that the assert cannot be used in a harmful manner. An assert is harmless if the code you call is harmless, or users cannot pass arbitrary information to code that you call.