Sandbox is a security mechanism for containing untrusted programs. Such programs could contain malicious code, which would harm the user's system.

learn more… | top users | synonyms

40
votes
3answers
5k 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, ...
29
votes
7answers
7k 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 ...
45
votes
8answers
11k 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 ...
36
votes
9answers
8k 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, ...
46
votes
8answers
10k views

Is there a PHP Sandbox, something like JSFiddle is to JS? [closed]

Is there a PHP Sandbox, something like JSFiddle is to JS?
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: ...
12
votes
10answers
2k 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 ...
15
votes
3answers
16k 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 ...
18
votes
5answers
6k 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). ...
10
votes
11answers
3k 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 ...
22
votes
5answers
3k views

Please login to use the PayPal sandbox feature

With the recent revamp of the PayPal developer site, I have encountered many problems trying to test my site with PayPal integration. Issue 1: I am not able to check out from out site which it should ...
4
votes
2answers
13k views

UIImage Saving image with file name on the iPhone

How can I save an image (like using UIImageWriteToSavedPhotosAlbum() method) with a filename of my choice to the private/var folder?
25
votes
12answers
5k 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 ...
19
votes
3answers
5k 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 ...
14
votes
6answers
3k 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: ...
6
votes
9answers
802 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 ...
4
votes
6answers
2k views

Language in a Sandbox in Rails

I've found that there WAS a sandbox gem (created by the guys that made try ruby in your browser but it was compatible only with Ruby 1.8. Another problem is that I cannot find it anymore (it seems ...
8
votes
1answer
935 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 ...
8
votes
4answers
3k 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 ...
4
votes
3answers
1k 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'), ...
1
vote
6answers
7k views

iPhone storekit sandbox stopped working

Bug reported as fixed by Apple, see accepted answer below ... UPDATE MON AUG 23rd 10:00 GMT Although the bug report with apple hasn't been closed yet, it now seems to be working (at least for a ...
10
votes
1answer
2k views

Cocoa: Sandbox entitlement to launch another application

I'm calling [[NSWorkspace sharedWorkspace] launchApplication:path]; From my sandboxed app, and I'm getting this error in the console: 9/5/11 12:23:12.462 PM lsboxd: refusing to spawn < ...
26
votes
2answers
4k 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 ...
10
votes
4answers
2k 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 ...
8
votes
9answers
3k views

Secure way to run other people code (sandbox) on my server?

I want to make a web service that run other people code locally... Naturally, I want to limit their code access to certain "sandbox" directory, and that they wont be able to connect to other parts of ...
5
votes
3answers
972 views

Is there an alternative to rexec for Python sandboxing?

Implementing a 'sandbox' environment in Python used to be done with the rexec module (http://docs.python.org/library/rexec.html). Unfortunately, it has been deprecated/removed due to some security ...
1
vote
1answer
2k views

get push notification while the app is not runing iPhone

I am working on one iPhone app which involves a push notification. As I have seen in many documents and tutorials it suggests to register for push notification with in application:(UIApplication ...
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 ...
3
votes
1answer
962 views

App Sandbox/iCloud and Snow Leopard backwards compatibility

By now all Mac App Store developers know that all apps must have the new OSX Lion Sandboxing enabled going forward. For existing apps, we must enable it in XCode 4.2 and set in place the data ...
2
votes
9answers
2k views

PHP sandbox/sanitize code passed to create_function

I am using create_function to run some user-code at server end. I am looking for any of these two: Is there a way to sanitize the code passed to it to prevent something harmful from executing? ...
1
vote
2answers
150 views

Prevent application from introducing harmful changes on the server side

This is just my small little hobby project in PHP. I use 0sites.org Server (Linux OS). I am basically try to imitate functionalities of http://www.codepad.org, http://www.ideone.com. I am trying to ...
3
votes
1answer
2k views

NSSavePanel and the Sandbox

I have some problems understanding the new Lion's Sandbox. I know that Lion includes a trusted daemon process called Powerbox whose job is to present and control open/save dialog boxes on behalf of ...
1
vote
1answer
768 views

Java Applet sandbox security, local vs external access

I had a bug in our (code signed) java applet "access denied (java.net.SocketPermission x.x.x.x:443 connect_resolve." We had an html "save" button that was calling (via javascript) an applet method to ...
0
votes
1answer
582 views

can't POST item price in paypal sandbox

<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_s-xclick"> <input type="hidden" name="hosted_button_id" ...
19
votes
2answers
2k views

How to generate development MDM/APNS certificate?

We have taken iOS developer Enterprise account and we have received the MDM certificate which is in .pem format.We have download this mdm certificate from the portal ...
23
votes
6answers
1k 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 ...
16
votes
11answers
4k views

Is there a good browser based sandbox to practice regex? [closed]

I am looking for recommendations for a browser based regex sandbox to practice some proof of concept expressions.
17
votes
3answers
1k views

How do sites like codepad.org and ideone.com sandbox your program?

I need to run compile and run user-submitted scripts on my site, similar to what codepad and ideone do. How can I sandbox these programs so that malicious users don't take down my server? ...
14
votes
5answers
2k 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). ...
10
votes
2answers
612 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) ...
8
votes
4answers
1k views

How to add a sandboxed app to the login items

I want my app to auto start if the user select the option. The methods I have been using is not allowed anymore in sandboxed apps. I know I have to create a helper to achieve that? Is there a simple ...
12
votes
1answer
3k views

iOS In App Purchase: Will Apple reviewers test live or sandbox environment?

I use In App Payment to sell ingame consumables. After successfull payment I forward the payment receipt to my backend, which validates the receipt with the iTunes payment backend. This works ...
7
votes
2answers
1k 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 ...
6
votes
1answer
3k 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 ...
3
votes
2answers
734 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 ...
3
votes
3answers
1k views

Sandboxing Java / Groovy / Freemarker Code - Preventing execution of specific methods

I'm developing a system that allows developers to upload custom groovy scripts and freemarker templates. I can provide a certain level of security at a very high level with the default Java security ...
17
votes
9answers
4k 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 ...
4
votes
1answer
990 views

Sandbox JVM to secure server from untrusted sources

How can protecting my server from malicious activity when accepting and executing uploaded, untrusted code? The users should be able to implement my interface and given data, perform some ...
15
votes
3answers
2k 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 ...
7
votes
2answers
1k 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 ...

1 2 3