I have the following problem: I have a web application and there are several classes that receive and/or meddle with user input (uploading/downloading files etc.).
Well, while building some class that has a white list of what's allowed is OK (in most cases but for example if there's an XML upload or schema one can try and point to some forbidden path(inside the XML structure) and the simplest white list wouldn't do the trick) it would be great to some how manage access on the JVM level. I'm familliar with SecurityManager and I've used it before but I can't seem to find a way to either:
- Define a policy that will deny access to specific folders by specific classes or packages( or even better allow access to as few classes as possible).
or
- Somehow create and apply policy/permission objects on the fly(maybe write a nice annotation that will do that.
Thanks!