Scripting Language in a Sandbox for a C#/.NET Application

亡梦爱人 提交于 2019-12-18 16:53:11

问题


[This question is similar to this one, but I am also interested in the possibility of a sandbox.]

I am considering embedding a scripting language in my C#/.NET application and then exposing some of my application's API to the scripts. There seem to be multiple good options for this (Lua, Boo, IronPython, etc.), but are there easy options for restricting the scripting language's built-in functions from being used? For example, I do not want the scripts to be able to perform I/O except through the API that I explicitly expose, so no printing to the console, opening files, etc. Do any of these scripting languages provide an easy way to do this?


回答1:


You can load te script into a different AppDomain and control the permissions of the second AppDomain.

This link should get you started:
http://blogs.msdn.com/shawnfa/archive/2005/08/08/449050.aspx




回答2:


I have used Powershell as a scripting language on windows myself and found it to be very useful, and if you are familiar with .NET then its all the more easier.

Download a two page reference document here, this is all you will need to get started.

But yes you can use .NET System.IO namespace to perform IO operations via Powershell

same posted # this link



来源:https://stackoverflow.com/questions/564357/scripting-language-in-a-sandbox-for-a-c-net-application

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!