Tagged Questions
0
votes
1answer
18 views
Sandbox/JRE limitations of CloudBees?
I'm going to start developing a Java web app that I believe I will be deploying to CloudBees, but am concerned about what JRE/sandbox restrictions may apply.
For instance, with Google App Engine, ...
0
votes
1answer
314 views
java.security.AccessControlException: access denied (“java.util.PropertyPermission” “jna.boot.library.path” “read”)
I am having some trouble running my signed web applet,
it runs fine within Eclipse, but as soon as I upload to the webpage, I get this error log:
Exception in thread "AWT-EventQueue-2" ...
0
votes
0answers
33 views
ETRADE Java Sandbox Environment [closed]
I'm trying to write a simple Java application that accesses my ETRADE account. I've been trying to follow their tutorial on this page.... ...
3
votes
1answer
73 views
How to sandbox a class? [closed]
Say I have a web site where people can upload their code in class form. How could I limit what can actually be done within that class?
3
votes
3answers
254 views
Static and Dynamic Linking Sandbox
I was trying to use libsandbox in my project.I am able to run c/c++ program in this sandbox perfectly.
In order to run c/c++ program , firstly I have to compile the code as:
g++ -lm --static ...
12
votes
5answers
303 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 ...
0
votes
2answers
103 views
Java memory usage sandbox
I am trying to write a sandbox for an untrusted java code.
I wrote the sandbox using java. The sandbox is required to :
limit memory usage of the untrusted code. If the untrusted code uses more ...
0
votes
1answer
42 views
Protect jvm from OutOfMemoryException coming from a java plugin
Is there a way (other than to run the plugin from a separate jvm instance) to prevent a java plugin from crashing the jvm by intentionally/unintentionally eating up the heap and causing an ...
1
vote
1answer
118 views
How can I provide a pseudo file system for r.js?
Ok, so r.js can run on Rhino. Which is great.
To do the stuff it needs to do.
On rhino it basically uses java.io.File, java.io.FileOutputStream and java.io.FileInputStream to achieve the filesystem ...
2
votes
1answer
115 views
Java Thread Level Sandbox
Is it possible to sandbox against untrusted code at thread Level ?
The common answer to sanboxing code seem to be implementing a SecurityManager and replacing the default SecurityManager. But this ...
14
votes
1answer
531 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{
...
1
vote
0answers
51 views
Security when compiling custom language to Java
I'm compiling user-inputted code in a custom language to Java. The resulting code, as of now, can only have one class with static methods. Because the user code is insecure, I've set up a security ...
2
votes
1answer
70 views
Porting Desktop App to Applet Sandbox
I've got an old Swing desktop application that I want to convert into an applet, and replace all the file IO with web service calls. I'm struggling to find a comprehensive list of specific things that ...
1
vote
4answers
178 views
JUnit test sandbox without network and file access?
Can I create a junit environment without file system and network access? I want to enforce stricter rules for our test cases.
Ideally, this would be configurable with maven and work for the default ...
1
vote
1answer
222 views
How to make sandbox for untrusted applications running?
I want to create windows service which recieves via some queue tasks to run a lot of console applications simultaneously. Also I want to make my server safe. Just because anybody can upload a virus to ...
2
votes
2answers
289 views
how to run Java programs in a restricted sandbox
I have been trying to build an online java compiler. But running the clients code on server raises many security issues.
There are few I can think of - infinite loops, Restricted access to API, ...
3
votes
1answer
504 views
How to run java code in a restricted sandbox (without network, filesystem access)
Say some programmer gives me an executable jar (from Java code) along with the entry point to use. I want to run this jar (programmatically) from Java code in a restricted sandbox environment with no ...
0
votes
0answers
167 views
After switch to Java 7 security sandbox that run javascript does not work
Part of our java application needs to run javascript that is written by non-developers. These non-developers are using javascript for data formatting.
We use RhinoScriptEngine to run javascript. We ...
-2
votes
3answers
122 views
Java Sandboxed Enviroment In Contrast to C [closed]
Java is designed to run in a “Sandboxed” environment in contrast to C which is not constrained. Discuss the implications of this from a security point of view.
I have done a bit of research in ...
2
votes
1answer
300 views
Create image in browser from Image object
In my Java applet, I have an Image object. Now I want to open a browser window from this program and show the image from this Image object in the browser. The applet is sandboxed, so saving the image ...
0
votes
1answer
312 views
How to execute a Java Applet in the sandbox?
I am using a simple applet tag in a web page to embed a java applet. When I launch the page and the applet, there is a security warning saying that the applet will run in unrestricted mode.
But I ...
1
vote
1answer
540 views
Classloader in Applet: Can't access files
I have an application that uses reflection to instantiate code saved in some directory: I create a URLClassLoader that then loads the classes using the URLs provided; this works fine. I tried to port ...
2
votes
1answer
289 views
Run Java programs from PHP in a sandbox
I have a little question: we have to run Java programs and parts of the code will be uploaded by the users.
So I want to know what's the best way to run them? I know 2 possible ways,
exec("javac ...
2
votes
4answers
97 views
How can I limit the performance of sandboxed Java code?
I'm working on a multi-user Java webapp, where it is possible for clients to use the webapp API to do potentially naughty things, by passing code which will execute on our server in a sandbox.
For ...
3
votes
1answer
375 views
How to run untrusted Java Swing application inside a sandbox?
I found that Java has some security permissions to control the access to AWT's resources. Is there anything for controlling what a Swing application can or cannnot do, to avoid untrusted app to ...
2
votes
0answers
133 views
JRuby - Monkeypatching as poor man's security manager?
Is there any thing wrong with selectively monkey-patching all Ruby core classes (File, Kernel, IO etc) to create a sort of access control?
My JVM will be running untrusted user code, and for some ...
0
votes
0answers
539 views
Java Sandbox java.io.FilePermission error
I'm trying to run a java application (a distributed file system) inside a sandbox, here is the policy file:
keystore "/home/me/.keystore", "jks";
grant signedBy "me1", codeBase "file:file.jar" {
...
0
votes
2answers
230 views
What domain files would an application running in Glassfish have access to?
I'm working on a beta release of an application. This is a Java app that runs on Glassfish. Obviously we are getting bug reports from time to time. I would like to provide my users with a simple ...
1
vote
1answer
767 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
164 views
Suggestions to different ways to “run” third party scripts/applications to convert data into a specific format? Pref. using Java/JavaScript/XML?
I am interested in hearing solution suggestions concerning running third party "logic". To avoid getting this question too bloated I will simplified some things.
The background
I need to convert ...
2
votes
1answer
135 views
Java App (with a broken sandbox) vs Web App
My company and I are in the early planning stages of porting (or rewriting) a Java-based application to the web. It is a self-voicing SVG editor and viewer emphasizing accessibility. It is a mature ...
4
votes
4answers
614 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
1answer
988 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 ...
1
vote
2answers
270 views
Restrict some API in Embedded Groovy
I just embedded Groovy in my application and wondering if it's possible to restrict access to some APIs i.e. java.io.File, java.net.URL, etc
Or instead of completely restricting java.io.File access, ...
8
votes
1answer
934 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 ...
2
votes
1answer
248 views
SAFE levels in JRuby
Are SAFE levels supported in JRuby? If not, is there other ways of safely running user supplied code in server?
2
votes
2answers
128 views
Multiple Sandboxes in the same JavaVM
Is there a framework or api to let multiple isolated sandboxes run in a single java vm?
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?
0
votes
3answers
289 views
Get a data from a web page into a PDF format using Tomahawk in JSF?
i am a newbie to JSf and Tomahawk Technology. In application i am having a datatable, i want store the information from he data table into a PDF format on a click of a button using Tomahawk and ...
7
votes
4answers
350 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 ...
4
votes
3answers
607 views
security problem with Java ScriptEngine
I just started to use the Java ScriptEngine to do little extensions to my Application then i noticed that i can import all the java classes in the script and use them without restrictions. Is there a ...
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 ...
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 ...
4
votes
4answers
853 views
Limitations of Java desktop applications?
I come from a C/C++ background and now do a lot of C# stuff.
Lately I have become interested in doing some projects in Java since playing around with the Android SDK.
I know that Java apps run in a ...
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
...
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).
...
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 ...
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 ...
39
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, ...
5
votes
2answers
3k views
How to grant different permissions to various Java classes?
I have a Java application and I would like to make it extensible. To create an extension, developers within our company will write a Java class that implements a certain interface. They may also ...

