Tagged Questions
Sandbox is a security mechanism for containing untrusted programs. Such programs could contain malicious code, which would harm the user's system.
29
votes
1answer
2k views
Capabilities for Lua: what experience is there?
There's been some discussion on the cap-talk mailing list around whether Lua and Javascript support the object-capability model, with the conclusion that because of support for restricting the ...
24
votes
3answers
2k views
Sandbox against malicious code in a Java application
In a simulation server environment where users are allowed to submit their own code to be run by the server, it would clearly be advantageous for any user-submitted code to be run in side a sandbox, ...
22
votes
3answers
964 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:
...
21
votes
8answers
6k views
Is It Possible to Sandbox JavaScript Running In the Browser?
I'm wondering if it's possible to sandbox JavaScript running in the browser to prevent access to features that are normally available to JavaScript code running in an HTML page.
For example, let's ...
20
votes
2answers
2k views
Using the Google Chrome Sandbox [closed]
There are several resources out there that explain how the sandbox in Chrome works and what it does to protect users from malicious code.
Chromium Blog
Chromium Developer Documentation
Sandbox FAQ
...
19
votes
7answers
3k views
How can I create a secure Lua sandbox?
So Lua seems ideal for implementing secure "user scripts" inside my application.
However, most examples of embedding lua seem to include loading all the standard libraries, including "io" and ...
18
votes
6answers
897 views
How can I try a new language or framework without installing it?
With so many languages and frameworks that exist, and with new ones appearing all the time, I don't have the time to download, install, and configure each one to evaluate it. In the past I've run ...
17
votes
12answers
3k views
How to create a lightweight C code sandbox?
I'd like to build a C pre-processor / compiler that allows functions to be collected from local and online sources. ie:
#fetch MP3FileBuilder http://scripts.com/MP3Builder.gz
#fetch IpodDeviceReader ...
15
votes
9answers
2k views
Why does the Flash Player throw a sandbox error in this case?
I get a Flex 3 sandbox error #2048 after connecting to a Socket on a Java (1.5) server. The server code is all mine, i.e. not running under Apache. Flash Player 10.0 r32.
The sequence is as ...
14
votes
8answers
1k views
How can I run an untrusted C program in a sandbox in Linux?
I was wondering if there exists a way to run an untrusted C program under a sandbox in linux. Something that would prevent the program from opening files, or network connections, or forking, exec, ...
14
votes
9answers
1k views
Does Java have a built-in Antivirus? Is it true?
Does Java have a built-in Antivirus?
One of my friends told me there is in the JVM itself - it's called the "sandbox". Is it true?
14
votes
5answers
1k views
Mini-OSGi that can run in a sandbox (like AppEngine or WebStart)?
I really like the concept of modular bundles as implemented by OSGi.
I also like "managed deployment" services like Google AppEngine (for web application) or Java WebStart (for client software).
...
13
votes
5answers
4k views
How can you run Javascript using Rhino for Java in a sandbox?
Part of our java application needs to run javascript that is written by non-developers. These non-developers are using javascript for data formatting. (Simple logic and string concatenation mostly).
...
11
votes
1answer
169 views
Alternatives for CGEventPostToPSN() for activating an other app's menu item in a sandboxed environment?
I have this app where I need to activate an other app's menu item (like Print cmd+p) from within my app. Right now I'm using CGEventPostToPSN() to do the job and it works fine, but when I activate ...
11
votes
1answer
243 views
What is a Sandbox
When anti-viruses run some application in a virtual environment called a "sandbox", how does this sandbox precisely work from the Windows kernel point of view?
Is it hard to write such a sandbox?
11
votes
7answers
506 views
Want to learn about Sandboxing [closed]
I want to learn more about sandboxing. Not just about it. I want to learn such that I will be able to write a simple sandbox.
Surprisingly, there isn't any information available anywhere. Even the ...
11
votes
10answers
2k views
Is there a good browser based sandbox to practice regex?
I am looking for recommendations for a browser based regex sandbox to practice some proof of concept expressions.
10
votes
3answers
2k views
How do i create a java sandbox?
I want to make my application to run other people's code, aka plugins. However, what options do I have to make this secure so they don't write malicous code. How do I control what they can or can not ...
10
votes
1answer
6k views
Reading file contents on the client-side in javascript in various browsers
I'm attempting to provide a script-only solution for reading the contents of a file on a client machine through a browser.
I have a solution that works with Firefox and Internet Explorer. It's not ...
10
votes
3answers
2k views
Is there a way to execute php code in a sandbox from within php
I want to execute a php-script from php that will use different constants and different versions of classes that are already defined.
Is there a sandbox php_module where i could just:
...
9
votes
2answers
1k views
Is there a PHP Sandbox, something like JSFiddle is to JS?
Is there a PHP Sandbox, something like JSFiddle is to JS?
9
votes
1answer
584 views
How do sites like codepad.org sandbox your program?
I haven't quite decided if I'm going to use a linux or windows-based server yet, so I'm looking for solutions for either OS.
I found this Sandboxie which lets you run your windows programs in a ...
8
votes
1answer
126 views
Can you update a sandboxed Mac app using Sparkle or something similar?
For those distributing Mac apps outside the Mac App Store, how are you planning to support updating and sandboxing? I'm guessing most people's answers for the time being is that they're not, but I ...
8
votes
9answers
2k views
Sandboxing in Linux
I want to create a Web app which would allow the user to upload some C code, and see the results of its execution (the code would be compiled on the server). The users are untrusted, which obviously ...
7
votes
2answers
1k views
How to create sandbox in C# for external process?
How to create sandbox in C# for external process?
As sandbox i understand an environment for process i start from C#, that stop that process from interfering with anything else - kernel, system ...
7
votes
2answers
762 views
Which programming languages support hot code swapping and/or sandboxing?
I would like to write a web based MMO game that will allow users to write AI and run it as part of the game. I plan to use Html5 for graphics and want this to be web based so it can be accessed from ...
7
votes
4answers
240 views
Restrict native code functionality from Java
I have a java application which uses JNI in some parts to do some work. It follows the usual loading of DLL and then calling native methods of DLL. Is there any way we can restrict what native methods ...
7
votes
4answers
2k views
Disable Java reflection for the current thread
I need to call some semi-trustworthy Java code and want to disable the ability to use reflection for the duration of that code's execution.
try{
// disable reflection somehow
...
7
votes
9answers
2k views
Is there a good browser based sandbox to practice Javascript?
I am looking for recommendations for a browser based javascript sandbox to practice some proof of concept code.
6
votes
2answers
355 views
Untrusted GPGPU code (OpenCL etc) - is it safe? What risks?
There are many approaches when it goes about running untrusted code on typical CPU : sandboxes, fake-roots, virtualization...
What about untrusted code for GPGPU (OpenCL,cuda or already compiled one) ...
6
votes
1answer
211 views
Secure, sandboxable user exposed programming language / environment?
Beyond offering an API for my website, I'd like to offer users the ability to write simple scripts that would run on my servers . The scripts would have access to objects owned by the user and be able ...
5
votes
3answers
278 views
Ruby: creating a sandboxed eval?
My Rails app has complicated rules about when a bit of content should be displayed on a page or not. I've decided to implement this by writing predicates (simple 'yes/no' functions) in Ruby and ...
5
votes
2answers
121 views
Sandboxed operating system
On most operating systems today, the default is that when we install a program, it is given access to many resources that it may not need, and it's user may not intend to give it access to. For ...
5
votes
8answers
460 views
Python, safe, sandbox
I'd like to make a website where people could upload their Python scripts. Of course I'd like to execute those scripts. Those scripts should do some interesting work. The problem is that people could ...
5
votes
6answers
505 views
Sandboxing Users' PHP Code
I want to limit what PHP functionality my users have access to.
For instance there is an object $data and the user likes to use if for and echo.
Obviously allowing him to write PHP would be a ...
5
votes
4answers
934 views
Javascript Sandbox
I want to have developers write some custom apps for a site in Javascript but I want to sandbox it so they can't do anything naughty like redirect the user, set the body display to none etc etc. I ...
5
votes
1answer
415 views
Create java sandbox based on security policies
I need to create environment to run potentially untrusted code. Program allowed to connect to preconfigured address:port and nothing else (even read the system time). I have compiled the class ...
5
votes
2answers
353 views
Javascript Sandbox unit testing
I am using QUnit, which is excellent.
I have enclosed my JS app in the (function () {})(); sandbox. This hides a lot of code that I don't want public, but I also need to test that code.
Here is an ...
5
votes
4answers
893 views
Sandboxed Javascript Execution in an Internet Explorer Extension (BHO)
Firefox has the Sandbox and evalInSandbox(). Chrome has sandboxed execution in their content scripts (they call it isolated execution). I'm looking for the same thing in an IE browser extension.
I ...
5
votes
4answers
1k views
How does google app engine sandbox work?
How does google app engine's sandbox work? What would I have to do to create my own such sandbox (to safely allow my clients to run their apps on my engine without giving them the ability to format my ...
5
votes
2answers
713 views
Rhino: restrict Java packages that can be accessed from JavaScript
When embedding a JavaScript interpreter (Rhino) into a Java application (to be able to script that application), how would one go about restricting the Java packages that are available to scripts? For ...
4
votes
3answers
100 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?
4
votes
3answers
99 views
what actually is sandboxing in JavaScript?
I understand the term sandbox. But my limited skills in JS is unable to help me understand what is sandboxing in JS. So, what actually is sandboxing? Apart from security, why do we need to sandbox JS?
...
4
votes
1answer
995 views
iOS/iPhone: in-app purchase sandbox broken while app in “rejected” state?
(See MAIN THRUST below to skip to the main thrust of my question.)
My iOS app was rejected in the Apple review process for a minor reason that was easy to fix.
However, I wanted to give the new ...
4
votes
1answer
2k views
Howto “sandbox” my Lion application?
Apple has decreed that all applications submitted to the Mac App Store must be sandboxed, starting in November.
Ok, but how can I "sandbox" my app?
I found the official Apple's guide Code Signing ...
4
votes
1answer
282 views
local Swf bridge to remote Swf to go around flash sandbox
Goal: to make possible to make requests from flash running on local protocol (widget://, file://, chrome-extension://) without any special permissions on ...
4
votes
3answers
537 views
Python eval(compile(…), sandbox), globals go in sandbox unless in def, why?
Consider the following:
def test(s):
globals()['a'] = s
sandbox = {'test': test}
py_str = 'test("Setting A")\nglobals()["b"] = "Setting B"'
eval(compile(py_str, '<string>', 'exec'), ...
4
votes
4answers
265 views
Java sandbox. Using SecurityManager to redirect I/O access
Currently I'm trying to write the Sandbox for running untrusted Java code. The idea is to isolate Java application from accessing file system or network sockets. The solution I have at the moment is ...
4
votes
2answers
220 views
Are there any tools to sandbox a malware application even more than the granted permissions on Android?
Suppose I want to run some program which requests too many permissions. For example, record from the microphone or read IMEI of my phone. However, there are no practical explanation why recording from ...
4
votes
9answers
303 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 ...