Sandbox is a security mechanism for containing untrusted programs. Such programs could contain malicious code, which would harm the user's system.
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?
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 ...
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, ...
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, ...
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:
...
31
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 ...
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 ...
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
...
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 ...
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 ...
23
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 ...
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 ...
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).
...
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?
...
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 ...
17
votes
1answer
855 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 ...
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.
16
votes
3answers
618 views
How can I sandbox untrusted user-submitted JavaScript content?
I need to serve user-submitted scripts on my site (sort of like jsfiddle). I want the scripts to run on visitors browsers in a safe manner, isolated from the page they are served on. Since the code is ...
16
votes
2answers
586 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 ...
15
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?
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 ...
15
votes
3answers
17k 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 ...
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:
...
14
votes
4answers
2k views
Good Implementation of Scalable JavaScript Application Architecture (Sandbox by Nicholas Zakas)?
I recently watched a good video with regards to a modular javascript architecture including a sandbox. I was wondering if there is anything that's been implemented in the wild?
Is the framework ...
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).
...
14
votes
1answer
533 views
Rewriting Java native methods using ASM
I'm trying to do this by re-writing the bytecode of the class using ASM 4.0 to replace all the native methods with non-native stubs.
So far I have this:
class ClassAdapter extends ClassVisitor{
...
13
votes
1answer
575 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?
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 ...
12
votes
7answers
584 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 ...
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 ...
12
votes
5answers
306 views
Suitable language for running client code in sandbox
I want to simulate (unsafe) client code on my server, and I am looking for a suitable language to do so. I'd prefer having the clients write in the same language as I will use to simulate.
safety is ...
11
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 ...
11
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 < ...
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 ...
10
votes
2answers
613 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) ...
9
votes
6answers
3k views
What is sandboxing?
I have read the Wikipedia article, but I am not really sure what it means, and how similar it is to version control.
It would be helpful if somebody could explain in very simple terms what ...
8
votes
8answers
5k views
Is there a good browser based sandbox to practice Javascript? [closed]
I am looking for recommendations for a browser based javascript sandbox to practice some proof of concept code.
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 ...
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
...
8
votes
1answer
939 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
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 ...
8
votes
2answers
3k 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 ...
8
votes
1answer
548 views
Code signing helper apps for Apple Sandbox on OSX
I have an app I need to run at startup, and I am converting to Sandboxing.
I have a helper app created, and working fine when I do not code sign my app.
To codesign, it looks like I have to create ...
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 ...
7
votes
4answers
351 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
8answers
5k views
How do I detect the environment in Salesforce?
I am integrating our back end systems with Salesforce using the web services. I have production and stage environments running on different URLs. I need to be able to have the endpoint of the web ...
7
votes
1answer
4k 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 ...
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 ...
7
votes
3answers
1k views
iOS first inapp-purchase must submit binary for sandbox testing
i am working inapp-purchase project and first time for creating inapp-purchase in new app iTunes shows the message in inapp-purchase manage link to shows the message is below
The first In-App ...
7
votes
1answer
162 views
Send keystrokes to frontmost app from sandboxed cocoa app
I need to send keystrokes to front most app from my cooca app.
I already have working code for it by using CGEventCreateKeyboardEvent() and AXUIElementPostKeyboardEvent(), but it only works if app is ...