0
votes
1answer
26 views

.NET Sandbox and Application Base

In the Microsoft guidance for how to run partially trusted code in a sandbox, it mentions For security reasons, the application base specified in the info parameter should not be the application ...
1
vote
1answer
95 views

Running a .Net application in a sandbox

Over the months, I've developed a personal tool that I'm using to compile C# 3.5 Xaml projects online. Basically, I'm compiling with the CodeDom compiler. I'm thinking about making it public, but the ...
2
votes
1answer
216 views

Should ApplicationBase be different for the sandbox AppDomain?

What are the exact security implications of setting ApplicationBase of a slave sandbox domain to the same path as the hosting domain? I found MSDN guidelines that state that ApplicationBase should be ...
1
vote
1answer
222 views

How to make sandbox for untrusted applications running?

I want to create windows service which recieves via some queue tasks to run a lot of console applications simultaneously. Also I want to make my server safe. Just because anybody can upload a virus to ...
0
votes
2answers
701 views

.NET Chart Controls in Sharepoint 2010 Sandbox

I'm trying to use the .NET Chart Controls in my Sharepoint 2010 Sandbox solution. I have downloaded and installed the MSChart for .NET 3.5 from here. Does anyone know if the .NET Chart Controls are ...
1
vote
0answers
264 views

Isolating / sandboxing untrusted code in .NET appdomain

I am trying to isolate code in an Appdomain with a low permission set. However, i would like to expose some specific functionality to be provided through an interface (which is implemented in an ...
3
votes
3answers
318 views

Reflection not restricted even if it's not in grant set

I'm currently trying to create a very very simple sandbox. Some class A has a method Execute which is invoked in another AppDomain than the caller. Problem is I've execution permission only and ...
4
votes
2answers
147 views

Is it possible to limit or restrict the scope of C# code that can be executed from a DLL?

I am working on a project where I will allow users to write some code, which will be compiled, loaded and ran, this code will allow the users to control certain parts of the application. However, with ...
3
votes
2answers
732 views

C# Load Sandboxed Assembly

Okay so, I have an application which I want to add support for other people to write modules that the application will load. The modules would be a class extending my Module class, written in .Net. I ...
1
vote
1answer
163 views

Querying a different sql server from a sandboxed plugin in Dynamics CRM 2011

I am writing a plugin (my first) for CRM2011 which needs to pull some information from a different sql server when an account is opened in the CRM. I'd like to run the plugin in the sandbox and am ...
0
votes
3answers
752 views

C#: Sandboxing and performance (MarshalByRefObject)

I've written a very basic web server in C# that loads custom modules that handle requests to a specific domain name, as specified in a config file. The custom modules are loaded into a new AppDomain ...
2
votes
1answer
536 views

.net new process sandbox for untrusted code

So I need to run dynamically compiled untrusted code in a new process. I found how to do that in a new AppDomain (http://msdn.microsoft.com/en-us/library/bb763046.aspx) but not new process. Is it ...
3
votes
1answer
3k views

How to create a editable property on a SharePoint 2010 Sandboxed Visual WebPart

I am developing a sandboxed visual webpart using SharePoint 2010 in Visual Studio 2010 with the SharePoint powertools installed. The webpart deploys and works as expected, except that the properties ...
3
votes
1answer
191 views

Looking for a locked down script interpreter

I'm looking for a .NET library that does a specific task. Say my app has been sent a program (in some script language) and I want my app to run that script. That script could come from an openly ...
1
vote
1answer
583 views

Permission set inversion: running a .NET 4.0 application with 'full trust - (minus) write access'

I have a WCF service to communicate with a Mathematica Kernel to evaluate arbitrary expressions and get results. (My sole intention is to utilize Mathematica as a sophisticated graph layout engine for ...
2
votes
1answer
471 views

Is the Appdomain the only way to sandbox IronPython?

I'm referring to "Sandbox Ironpython". I have somewhat different requirements from the original poster: Specifically, we need different functionalities to be limited - file system access is okay, ...
1
vote
0answers
193 views

Problem activating MAF add-in with custom AppDomain

I am trying to use the overload of MAF's AddInToken.Activate() method that accepts an AppDomain, so that I can pass an application domain created by my client application. When the passed AppDomain ...
35
votes
5answers
3k 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: ...
0
votes
1answer
658 views

Building a simple security sandbox on Windows 2008 by automatically creating & restricting user accounts?

I want to build a fairly simple security sandbox for an application hosting service - the main goals are thus: Applications running "in" the sandbox cannot install anything onto the system outside ...
2
votes
1answer
838 views

How to create a Plugin Model in .NET with Sandbox?

Is there a way to load a .NET Assembly into a Sandbox environment that is also restricted in custom ways? I know you can run an Assembly in a different AppDomain, but can you limit it from being able ...
1
vote
3answers
2k views

Can a Thread be executed as another user? (.NET 2.0/3.5)

I have a C# application the performs some runtime compilation of source files containing calculations into dynamic assemblies. Obviously this presents a serious security issue. From the following ...
1
vote
3answers
2k views

Loading Assemblies from a .Net Application in a 'Sandbox Environment'

I am currently developing an application in where a user will dynamically choose dlls and the application will execute some of the methods in that dll. (if you follow the first link, you will see ...
0
votes
1answer
573 views

Can a ClickOnce deployed application read files from disk?

Can an application delivered via ClickOnce in .Net, read Excel and Access files from the users disk? I know the app is susposed to run in a sandbox, I am curious how partitioned this sandbox is ...