Tagged Questions
The code-access-security tag has no wiki summary.
54
votes
8answers
1k views
Is “Code Access Security” of any real world use?
I am in the process of studying for the 70-536 .NET Framework - Application Development Foundation Exam, as I have been programming .net for many years, this should not be hard!
However I am having ...
22
votes
3answers
965 views
Looking for a practical approach to sandboxing .NET plugins
I am looking for a simple and secure way to access plugins from a .NET application. Although I imagine that this is a very common requirement, I am struggling to find anything that meets all my needs:
...
11
votes
1answer
148 views
Securing website assemblies with new code security model
I'm currently on a project where we are creating a MVC site. The site needs to use code access security, due to the fact that third party dll's needs to be plugged in, to provide custom functionality. ...
9
votes
6answers
386 views
What is the security risk of object reflection?
So after a few hours of workaround the limitation of Reflection being currently disabled on the Google App Engine, I was wondering if someone could help me understand why object reflection can be a ...
8
votes
1answer
119 views
.NET Security Exception on a Network Share
We deploy our .NET applications by putting them on the LAN, and allowing users to run from there. We are part of a very large organization and do not have have admin rights to the individual ...
7
votes
3answers
213 views
Problem using C# iterator methods with code access security
I have a simple method that uses an iterator block to return an IEnumerable<T>:
IEnumerable<MyItem> GetItems()
{
foreach (var item in Items)
{
yield return item;
}
}
...
6
votes
2answers
785 views
How to inherit from DataAnnotations.ValidationAttribute (it appears SecureCritical under Visual Studio debugging host in .NET 4 !)
I have an [AllowPartiallyTrustedCallers] class library containing subtypes of the System.DataAnnotations.ValidationAttribute. The library is used on contract types of WCF services.
In .NET 2/3.5, ...
5
votes
3answers
122 views
Load Assembly with custom Permissions
I need to load an untrusted assembly into my AppDomain. I don't want to Sandbox a new AppDomain for this assembly to execute in, because it internally requires access to certain functionality such as ...
5
votes
3answers
310 views
Code Access Security is a joke?
I have just read about this article about Code Access Security. It has such an example in it:
using System.Security.Permissions;
public class MyFileAccessor
{
public MyFileAccessor(String path, ...
5
votes
1answer
2k views
Intermittent PolicyException: Execution permission cannot be acquired
We are intermittently seeing the following exception shortly after an App Pool recycle in an ASP.NET application:
System.Configuration.ConfigurationErrorsException: Could not load file or assembly ...
5
votes
3answers
402 views
How can I prevent unauthorized code from accessing my assembly in .NET 2.0?
In .NET 1.x, you could use the StrongNameIdentityPermissionAttribute on your assembly to ensure that only code signed by you could access your assembly. According to the MSDN documentation,
In ...
4
votes
1answer
118 views
Better security of PHP by keeping include files outside the public folder?
Languages such as Perl, Pythong, etc are usually considered to have a better security comparing with PHP. Apart from possible security holes, one reason can be (I do not know, I am asking) that we do ...
4
votes
1answer
145 views
.NET/Security: Limiting runtime-loaded assemblies from accessing certain APIs
In a shell application, I need to be able to load and execute other .NET assemblies at runtime, but without giving them full trust. Essentially, I want to limit them (the loaded assemblies) from ...
4
votes
2answers
204 views
Limiting Access to a DLL in .NET
I write in-house software for a company.
I always want to leverage OOP techniques as best as I can. In this thinking, I want to create a Data Access Layer (DAL) isolated in its own .DLL.
What can ...
4
votes
2answers
138 views
Are there commercially deployed and used .NET CAS (Code Access Security) based applications?
I've seen a couple threads here on SO that ask about what CAS is and how to use it.My specific is specifically focused on real-world usages of CAS.
For example:
DotNetNuke did some efforts in the ...
4
votes
2answers
3k views
.net 4.0 with Code Access Security NetFx40_LegacySecurityPolicy won't work
I'm trying to use an external library DevExpress.XtraTreeList.v8.1.dll in my vsto office addin built using VS2010 beta 2. I am getting the following compile time error:
...
3
votes
3answers
137 views
Protecting PHP code from web hosting staff, others, etc
Is there a way to protect my PHP program and associated files from my web hosting company’s staff members? I am in the process of building an application and am spending weeks/months on the ...
3
votes
1answer
185 views
Debugging TrustNotGrantedException in VSTO word addin
I'm getting TrustNotGrantedException thrown for some specific users of our VSTO word addin.
These users have the certificate installed correctly.
The exception is being thrown when the app checks ...
3
votes
1answer
728 views
Call protected generic method via .NET reflection within derived class
recently I was trying to do something like this in WP7 app
I have class
abstract class A {
//this method has an implementation
protected void DoSomething<T, TKey>(Func<T, TKey> func) { ...
3
votes
2answers
538 views
GIT support for branch based user authorization - Best Practices or Tools?
For a product based GIT repository, wherein there are branches for maintenance, testing as well as future development, how do I control user access to these branches. By access, I mean that even ...
3
votes
1answer
478 views
C# 3.5 winforms app upgraded to C#4.0 issue because of the exclusion of CAS
I have a C# 4.0 Winform app that I just upgraded from 3.5 to 4.0. The C# 4.0 Winforms app references a C# 3.5 dll that will load a series of dlls from network paths based off of user selections and ...
3
votes
2answers
529 views
Custom CodeAccessSecurityAttribute
I've created the following attribute:
[Serializable]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = true, Inherited = true)]
public class ...
3
votes
3answers
381 views
How to tell whether Code Access Security is allowed in library code
In .NET 4 Code Access Security (CAS) is deprecated. Whenever you call a method that implicitly uses it, it fails with a NotSupportedException, that can be resolved with a configuration switch that ...
3
votes
6answers
257 views
How to restrict to add an item to List<T>?
I have Class called Person containing to properties, Father and List of Children.
I want every one to use only AddChild Method to add children, not the List.Add method ,
so how do I restrict use of ...
3
votes
4answers
298 views
Using the .NET Framework security system
I was wondering - do any of you actually use the various classes in the System.Security.Permissions namespace? I mainly develop desktop/server-side components (i.e., no web) and the general ...
2
votes
1answer
23 views
Where does a custom CAS policy for ASP.NET have to go?
In my hosting environment I do not have access to anything outside of my virtual directory-- I can't edit the machine.config, nor the machine level web.config, nor can I put anything in the GAC.
I ...
2
votes
1answer
53 views
Disable Type in code running on the SQLCLR
Recently I've managed to get the Razor parser working under .NET 3.5 and hosted by SQL Server 2008. At the moment, it's really just an experiment to see what is feasible. This is working, including ...
2
votes
4answers
248 views
Code theft prevention - Chaperon or anything similar
Has anyone heard of Chaperon? is it effective in preventing code theft?
Now i understand that there can be many ways if someone was to steal code and there is nothing that could be completely ...
2
votes
2answers
231 views
Are there any coding guidelines for the Android platform that focus on security?
Are there any good coding guidelines for the Android platform that focus on security?
Thanks
2
votes
4answers
101 views
How can I limit access to an assembly?
How can I limit the loading and execution of my libraries based on a defined precondition? For example, if I distribute to a client an application that uses an external library, how can I ensure the ...
2
votes
1answer
657 views
Issue with Code Access Security Policy - deploying a third party dll to bin
Okay, i think most of you guys out there use wspbuilder to build the wsp solutions and to deploy it. So here is my problem.
I'm working on a SharePoint solution which makes use of a third party dll ...
2
votes
1answer
83 views
Question about Code Access Security (CAS)
I am studying the Code Access Security of .NET 2.0. My current understanding is as below:
The basic mechanism of the CAS is for the CLR to collect certain evidences from the assembly, and then use ...
2
votes
2answers
132 views
Any example for Security of .Net Desktop application
Is it possible to prevent any unauthorised user to access code or application in desktop application like any web application?
Thanks in advance.
2
votes
1answer
134 views
How can I use CAS in .NET 4 to lock down my MEF extensions?
I have an application in .NET 4 that uses MEF for extensibility. My main application has three assemblies: Host, Application and Contracts.
Host is the "boot-strapping" executable that creates the ...
2
votes
4answers
98 views
Application Reverse Engineering Protection / Hardening
I want to protect my applications from reverse engineering.
What I would like to do is protect the executable from any tampering, such as with hex editors, resource editors, and dis-assembly ...
2
votes
1answer
261 views
Enable/disable code access through license key - Application versioning
I have written a POS application, and now i want to create different versions of it. Something like a basic version, a premium version and a Full version. So if a client pays more they get more ...
2
votes
4answers
377 views
Exists a replacement for the command-line-tool CASPOL.exe?
When trying to execute a .NET-App, it throws a "PolicyException", because "only one group is allowed".
The tool should list existing settings, and allow to delete selected settings.
Using caspol to ...
2
votes
2answers
793 views
fine-grained permissions; PrincipalPermission - roles seperate from permissions;
I've been using PrincipalPermission for a while in wcf services.
[PrincipalPermission(SecurityAction.Demand, Role = SecurityRoles.CanManageUsers)]
Our roles are prefixed with: Can* and is how we ...
2
votes
1answer
1k views
Is there a CASPOL.exe GUI command line generator?
Is there a simple utility/GUI application for generating CASPOL commands?
2
votes
2answers
163 views
Is making my clickonce app partial-trust worth it?
I'm about to start working on a ClickOnce app targeted at internal customers for use on the organization's intranet. I want to ease the setup process, so I thought that developing the app to be ...
2
votes
2answers
342 views
Assembly Evidence
What is the purpose of the following piece of code?:
object[] hostEvidence = {new Zone(SecurityZone.Internet)};
Evidence internetEvidence = new Evidence(hostEvidence, null);
AppDomain myDomain = ...
1
vote
1answer
37 views
How to ensure that only allowed domains can call C# from Javascript
I noticed some samples flying around using [PermissionSet(SecurityAction.Demand, Name="FullTrust")] on classes used for webBrowser1.ObjectForScripting. Why is this used and not LinkDemand?
Also to ...
1
vote
2answers
97 views
How does one fix the “'System.Security.Permissions.SecurityAction.RequestMinimum' is obsolete” compilation error?
I received the following compilation warning as a error while upgrading some ASP.NET code from .NET 3.5:
'System.Security.Permissions.SecurityAction.RequestMinimum' is obsolete.
The attribute has bee ...
1
vote
1answer
139 views
How to access native dll in lightswitch application
I'm trying to print a barcode using the following code in Lightswitch Application
Imports System.Security
Namespace LightSwitchApplication
Public Class EditableAS_TempStickersGrid
...
1
vote
1answer
44 views
Windows Server AppFabric Caching
I'm currently working on a ASP.NET MVC site where we have to run in partial trust.
Now I'm facing a problem with connecting to AppFabric when in High Trust. No problems when running in full trust. ...
1
vote
1answer
154 views
Where is the .Net Configuration Tool (mscorcfg.msc) in Windows 7?
I am having trouble running a website on my new Windows 7 machine, and I think the issue is solved by setting the runtime security policy to Full Trust, however I can't find that tool anywhere on my ...
1
vote
2answers
79 views
Web App works on localhost but fails on remote connection
We have a new ASP.NET web application we are deploying that uses a separate DLL which we also built which in turn interrogates the Active Directory for simple user and group membership information. ...
1
vote
1answer
46 views
.Net Redirecting requested assemblies to different version
I have an assembly that is version 1.0.0.0 and a new version that is 2.0.0.0. Both are installed in my GAC.
Currently I can use the "Configured Assemblies" section in the ".NET Framework 2.0 ...
1
vote
1answer
59 views
WCF declarative security using CodeAccessSecurity
I'm planning to use custom permission-based declarative authorization mechanism based on CodeAccessSecurity. In order to implement it I've created following subclass derived from ...
1
vote
1answer
54 views
Can can I prevent someone from seeing my JavaScripts? [closed]
Possible Duplicate:
How to prevent your JavaScript code from being stolen, copied, and viewed?
I'm aware its almost impossible to do something like that because JS is client side. However ...