0
votes
0answers
16 views

Sandboxing in Mono

I am trying to implement Sandboxing in Mono. We have a Sandbox running in C# now with custom AppDomains but it doesn't really work well with Mono (We do use reflections internally to do some crazy ...
1
vote
0answers
88 views

Running an untrusted application on Linux in a sandbox

We have a device running Linux and we need to run untrusted applications on this. We are trying to alleviate the following security concerns - The untrusted application should not be able to ...
0
votes
1answer
24 views

Which database EAN sandbox uses in testing environment?

I want to ask that, when we use EAN (Expedia Affiliated Network) Sandbox for testing environment, which Database is used by Sandbox? I mean is it Localhost database or there is some mirror database ...
2
votes
2answers
429 views

NSAppleScript execution fails in sandboxed app

I have a sandboxed app targeting Mac OS X 10.7, and want to execute this AppleScript: tell application "Safari" to add reading list item "http://www.apple.com" I have tested this script in the ...
0
votes
1answer
1k views

'sandboxd: deny file-write-create' when writing to app's own bundle

I've written a program in the Mac App store which displays some graphics. Occasionally it updates these off the internet. As with most folks, I'm having to Sandbox my app now. Almost everything is ...
4
votes
1answer
509 views

Mac Sandbox: testing whether a file is accessible

Does anybody know whether there's a way of finding out whether a particular file system location is accessible under the sandbox? I want to test whether a particular file is accessible under the ...
3
votes
1answer
184 views

How do I sandbox calling an external unmanaged application from managed code?

We are developing an online test application for XSLT processors in ASP.NET, however, I'm a bit worried about how to limit the vulnerabilities of our system. Is it possible with .NET to sandbox a ...
0
votes
1answer
908 views

Iphone/IOS - Debugging Application Crashes

From what I've read, this topic has come up several times over the last few years and usually with very vague answers, plus there hasn't been a mention of it from what I've found in over a year so I'm ...
0
votes
1answer
265 views

How to disable firefox/mozilla global extensions access

I need to sandbox Mozilla Firefox and it seems that write access is required for "~/Library/Application\ Support/Mozilla/Extensions/" on Mac OS. I want to turn off this feature. Is it possible ...
0
votes
1answer
329 views

Flash videos in WebView not working in sandboxed app

I'm having a problem with playing flash videos in my application. It's been working before, but ever since Apple has required every developer to enable entitlements and sandboxing, flash videos in ...
4
votes
3answers
164 views

How do I block all network access for a script?

Suppose I have a script written in Python or Ruby, or a program written in C. How do I ensure that the script has no access to network capabilities?
0
votes
2answers
376 views

Lua Sandboxing - Eliminating Function Creation

I've read on the Lua wiki / here / etc. on how to sandbox lua code generally. But I haven't been able to find something that disallows function creation. For example, the example here provides a ...
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, ...
0
votes
3answers
677 views

Creating temporary sandbox environment in unix

Just wondering is there any way to create a temporary sandbox environment for running commands? My requirement is that i am hosting a webservice in unix and i need to execute a commanline tool to ...
6
votes
9answers
800 views

What is the safest way to run an executable on Linux?

I am trying to run a program compiled from C code from an unknown source. I want to make sure that the program does not harm my system in anyway. Like for instance, the program might have soemthing ...
0
votes
2answers
293 views

Anyway to create a php sandbox for a user to develop in?

A user on my site and I are going to be developing a new web app. Id like to create a folder that we can work in without the fear that he could read outside that folder potentially reading config ...
1
vote
1answer
329 views

What is a good way to “sandbox” Ruby 1.8.6 and 1.9.1?

Nowadays I hope to have 2 Ruby versions on the same machine, because some gems are good for 1.8.6 only and at the same time, 1.9.1 is fast and it is to try out with Rails 2.3. Is there a good way to ...