14
votes
2answers
290 views
Using the Google Chrome Sandbox
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
…
11
votes
5answers
492 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 …
9
votes
12answers
1k 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 …
9
votes
3answers
413 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, …
8
votes
9answers
537 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 …
7
votes
4answers
642 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).
…
7
votes
8answers
434 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.
6
votes
1answer
128 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 …
6
votes
4answers
907 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).
…
5
votes
1answer
514 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 …
5
votes
8answers
515 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.
4
votes
3answers
378 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
1answer
180 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
2answers
125 views
Can I set a different data directory for Internet Explorer?
In Google Chrome, I can provide the command-line argument --user-data-dir="..." to have Chrome use a different directory for state like cookies, cache, and so forth. This makes it possible to …
4
votes
8answers
1k 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 …
