Run java with highest security setting

Posted by Ankiov Spetsnaz on Stack Overflow See other posts from Stack Overflow or by Ankiov Spetsnaz
Published on 2013-11-10T21:49:27Z Indexed on 2013/11/10 21:53 UTC
Read the original article Hit count: 185

Filed under:
|
|

I'm currently writing an in house coding challenge web application and I am wondering if there is any other security precaution I would need to have other than below java option at runtime.

java -Djava.security.manager=default

Basically, challenges would be more of single threaded math and algorithm focused. So I would need to enable basic data structure objects and disable any file, sockets, threading or any thing that might be not so important.

Based on my quick search turning on security manager as above seems to be a solution but since this is a security related I would like to be sure before it goes alive.

Is there anything else I could do more?

© Stack Overflow or respective owner

Related posts about java

Related posts about security