Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
4answers
2k views

How to sanely configure security policy in Tomcat 6

I'm using Tomcat 6.0.24, as packaged for Ubuntu Karmic. The default security policy of Ubuntu's Tomcat package is pretty stringent, but appears straightforward. In /var/lib/tomcat6/conf/policy.d, ...
11
votes
2answers
734 views

Why can't I shutdown my own ExecutorService under a SecurityManager?

Under the default security manager, if I create an ExecutorService (ThreadPoolExecutor in this case), I cannot shut it down, shutdown() just calls checkPermission("modifyThread") and thus immediately ...
10
votes
2answers
142 views

prohibit the call to System.exit

I'm trying to prohibit the call to System.exit(int); in some jars. These jars will be developed by external teams and loaded by our "container" application . My first reflex is to use the java ...
9
votes
1answer
191 views

Limiting file access in Java

Problem: In my Java application (not an applet) I wish to limit certain file operations to all classes except a list/group/package of classes that should not be restricted. Specifically, I would like ...
9
votes
3answers
720 views

Java security: Sandboxing plugins loaded via URLClassLoader

Question summary: How do I modify the code below so that untrusted, dynamically-loaded code runs in a security sandbox while the rest of the application remains unrestricted? Why doesn't ...
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 ...
6
votes
2answers
70 views

What's the performance penalty, if any, of using a SecurityManager

Is there a performance penalty when using a SecurityManager? I need the following: public class ExitHelper { public ExitHelper() { System.setSecurityManager(new ...
4
votes
1answer
167 views

Java Reflection permission error

I'm trying to load a class via an URLClassLoader (well, it neither works with an normal class loader) and want them to not have any permission. Therefore, i created my own security manager, which ...
4
votes
2answers
2k views

Java: no security manager: RMI class loader disabled

Hi I have RMI application and now I try to invoke some methods at server from my client. I have following code: public static void main(final String[] args) { try { ...
4
votes
4answers
266 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
3answers
856 views

Should I use Security Manager in Java web applications?

Is it sufficient to secure a Java web application with the rights of the user that is running the application server process or is it reasonable also to use SecurityManager with a suitable policy ...
4
votes
3answers
715 views

Use Tomcat with Java SecurityManager?

I'm writing a web application that is supposed to run on Tomcat on Ubuntu. On Ubuntu, Tomcat is per default configured to run with the Java SecurityManager. Besides my own web application, there will ...
4
votes
5answers
1k views

How do I simulate a modal dialog from within an Applet?

On setVisible(true), I call the following code to start a modal dialog: private synchronized void startModal () { try { if (SwingUtilities.isEventDispatchThread()) { EventQueue theQueue = ...
3
votes
2answers
107 views

How to detect time of ClassLoading

I have a TrirdParty API that contains a CLass [let's say A]. It has a bizarre static block similar to the following: class A { static { try { ...
3
votes
3answers
456 views

Preventing System.exit() from API

I am using a third party library that does a System.exit() if it encounters exceptions. I am using the APIs from a jar. Is there anyway that I can prevent the System.exit() call because it causes my ...
3
votes
2answers
149 views

Other SecurityManager implementations available?

Is there any other implementation (e.g. in an OSS project) of a Java SecurityManager available which has more features than the one in the JDK? I'm looking for features like configurable at runtime ...
2
votes
1answer
252 views

SecurityManager problem with SWT embedded Mozilla browser running over Java WebStart (jnlp)

I am developing non-standard application. Basically it's SWT application using embedded Mozilla browser (mozilla-interfaces-1.9.2.12.jar, mozilla-glue-1.9.2.12.jar) that should display html pages ...
2
votes
1answer
453 views

Java SocketPermission policy question

I have a client and server program that attempt to communicate with each other. In my policy file for the server, I have specified the following: grant signedBy "vivin" { permission ...
2
votes
1answer
395 views

Tomcat configuration for Spring app

I have built web application for use in Tomcat. It depends on Spring. I have the following exception when trying to access it: java.security.AccessControlException: access denied ...
2
votes
2answers
198 views

Is there a way for a SecurityManager in java to selectively grant ReflectPermission(“suppressAccessChecks”)?

Is there any way for a SecurityManager in Java to selectively grant ReflectPermission("suppressAccessChecks") depending on the details of what setAccessible() is being called on? I don't see any way ...
2
votes
2answers
516 views

How to unit test Java code that is expected to run within an applet Security Manager

I have some Java library code which sometimes runs as an unsigned applet. Because of this it is not always allowed to do some operations (for instance checking for system properties). I would like ...
2
votes
3answers
671 views

SecurityManager.IsGranted() behaviour

can anybody please explain the following c# behaviour? I have written a small console application just to learn about CAS, but I can not seem to understand why the following lines of code work like ...
1
vote
1answer
31 views

access denied (“java.io.FilePermission” “<filename>” “read”)

I am making a game in Java using the framework pulpcore, I keep getting this error: java.security.AccessControlExecption: access denied ("java.io.FilePermission" "scores.dat" "read") Anyone have ...
1
vote
1answer
37 views

Java security manager find out who asks for access

i wrote a own Security Manager and my problem is, that i run code from other users in my program, and i have to ensure that there is no abuse. So my Question is: How i am able to find out in the ...
1
vote
0answers
92 views

java.security.AllPermission fails for Grails 1.3.2 app on JBoss 5.1 Community Edition

From what I understand, a SecurityManager policy file with only grant { permission java.security.AllPermission; }; should grant all permissions globally. However, running a Grails 1.3.2 app on ...
1
vote
0answers
28 views

Are there any JBoss 5.1 Community Edition SecurityManager .policy file examples available?

Googling "jboss security manager" brings up http://docs.jboss.org/jbossweb/2.1.x/security-manager-howto.html, but this is way out of date.
1
vote
1answer
81 views

SecurityManager surprises

I wanted to create a very restrictive security manager, so I extended SecurityManager and overridden all the custom checkXXX methods. But then I found out that my security manager is useless, because ...
1
vote
0answers
314 views

Java SecurityManager with SpringSecurity

I try join Java Security Manager to project with SpringSecurity (SS). I have the goal: my project works with SS and has dataSource (db2 database) as authentication-manager. I added ...
1
vote
2answers
145 views

Swing app with security manager causing strange GUI-refresh issues

I have a Swing app (residing in an executable, signed jar) that is a client. The app also connects to a server. When certain conditions are met, I perform a refresh of the GUI (more specifically, ...
1
vote
2answers
213 views

Java Security Manager for JRuby

When using Java Security Manager for Jruby scripts, Is it possible give a particular script alone full permissions?
1
vote
3answers
237 views

Small and fast .NET programs? - 65% runtime in ResolvePolicy

I tried to build a very very small .NET app in F#. It just has to convert a small string into another string and print the result to the console like: convert.exe myString ==> prints something like ...
1
vote
1answer
807 views

AccessControlException when connecting to HTTP server from Tomcat servlet

I'm trying to make my tomcat servlet download a number of files, but I have apache and tomcat running on the same server, so I assume that is why it doesn't work. I've tested on servers not running ...
1
vote
2answers
810 views

How to set a SecurityManager for this thread and not for System?

I have a program that is running a basic RMISecurityManager in all its threads. But I would like to do more control to several threads and set another SecurityManager specially for these threads. How ...
1
vote
2answers
614 views

How to automatically copy data to new RMI threads?

I am adapting a little rmi client-server application. I have written several things : HelloInterface -> A Hello World interface for RMI Server -> The server app' Client -> The client app' ...
0
votes
0answers
67 views

How to enforce Spring Security as main Security Manager?

is there any way to enable java SecurityManager while using spring security ? I have a Swing standalone application and using spring jdbcDaoImpl to authenticate and authorize using MySql Database ...
0
votes
0answers
25 views

SecurityManager frameworks that offer finer control over resources

I always thought that SecurityManagers included a check method which was called when Method/Field.setAccessible() was attempted that included a Permission that included the name of the method/field ...
0
votes
1answer
20 views

ClassCircularityError inside custom SecurityManager

I am writing a SecurityManager and getting ClassCircularityError exceptions while running a unit test. Examining the stacktrace shows it is complaining about some class that is referenced inside my ...
0
votes
0answers
48 views

Java Security manager configuration - deny all

i want to ask, how i have to configure the java security manager to deny everything for the program? i run the security manager now with java -Djava.security.manager ...
0
votes
1answer
94 views

Java Security manager per thread

I want to run a specific thread-class in a restricted sandbox, while the rest of the application can run unrestricted. Is it possible to attach a security manager for a specific thread-class only? ...
0
votes
0answers
25 views

Security manager that prevents reading files but allowes reading classes

I want to create a custom SecurityManager that will prevent threads from reading files on the server. However, I do want them to be able to load classes. When I override the checkRead function: ...
0
votes
0answers
54 views

Security Manager in Tomcat

I have a Tomcat Java application, and I want it to be secure, so I created a custom SecurityManager where I blocked all actions I thought was dangerous (I probably missed some, but that's for another ...
0
votes
3answers
174 views

Java SecurityManager multiple threads

I have been trying to use a custom SecurityManager to sandbox some externally loaded code. The SecurityManager I have works fine. I have taken the same approach as numerous posts here suggested: set ...
0
votes
2answers
81 views

Using Security manager to prevent public method access

I had once come across a post that said that we can use the SecurityManager to restrict certain classes from calling a public method of another class. How do we do that?
0
votes
0answers
239 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
3answers
236 views

Java Security Manager - What does it check?

This article about Java security says: Code in the Java library consults the Security Manager whenever a dangerous operation is about to be attempted. So, what does this exactly mean? Say, ...
0
votes
2answers
54 views

RMI: Using a foreign remote object

Just when I thought I know how RMI works, it comes back and tell me I do not. The following situation: I have given: an interface: http://pastebin.com/KxXH1jQ9 an adress where the rmiregistry is ...
0
votes
2answers
368 views

Java Policy file - Deny permissions to a codebase

In the Java policy file, the grant codeBase syntax specifies which codebase should be granted which permissions. for example, grant codeBase "file:/C:/abc.jar" { permission ...
0
votes
1answer
145 views

Java SecurityManager: Good introduction to policy files

Can you recommend a good introduction to non-trivial policy files for the standard Java SecurityManager? Are there examples that go beyond what the Java website offers? Or maybe someone describes how ...
0
votes
1answer
71 views

Is there a way to use multiple SecurityManager(s) in Java?

I'd like to know if there is a way to use multiple security managers in java, and if so, how to specify them a particular .policy file? I've been looking at the java se 6 doc about Security, but ...
0
votes
1answer
109 views

NoClassDefFoundError when creating objects under SecurityManager

I'm trying to secure my application by running the bits of code that deal with user-provided content under a very restrictive SecurityManager. It's AccessController.doPrivileged() turned on its head ...

1 2