.Net Sandbox?

  • Thread starter Thread starter Jim Hubbard
  • Start date Start date
J

Jim Hubbard

Is there a way to run an unmanaged application (NOT .Net) inside a sandbox
created with .Net?

I've seen apps that do this with JAVA, and I was wondering about doing the
same thing in .Net

Jim Hubbard
 
Jim Hubbard said:
Is there a way to run an unmanaged application (NOT .Net) inside a sandbox
created with .Net?

I've seen apps that do this with JAVA, and I was wondering about doing the
same thing in .Net

You can't have full sandbox-security with native code; What comes closest is
a technique called "API hijacking". (http://www.internals.com has samples of
this technique). However, I'm quite sure that neither .NET nor JAVA have any
provisions for this.

Niki
 
Back
Top