Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.