sorry if this is a dumb question. I have some web service calls that are implemented in Grails controllers and we use the Shiro plugin for security. I want to be able to create a whitelist of IP addresses for certain operations that should only come from our own servers or trusted partners. I am finding the documentation a little spares on this subject. My first thought was to try and implement the whitelist here. I wouldn't be surprised if there is a simpler way to do this. I am a bit of a Shiro newb. Could sure use a copy of Shiro for Dummies!

class ShiroSecurityFilters {
     def filters = {
        all(uri: "/**") {
            before = {
                // Ignore direct views (e.g. the default main index page).
                if (controllerName in ['foo', 'bar']) {
                  return true
                }
                 // Access control by convention.
                accessControl()
            }
        }
    }
}
link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

You should have access to the request object in the Filter and you can call request.getRemoteAddr() to access the IP address.

link|improve this answer
Well that would be pretty darn easy! Thanks. I tried putting a breakpoint in my Filter so I could inspect what variables were available but in these dynamic programming languages with metaprogramming that doesn't work as well as I had hoped. Would love a way to see all variables in scope at a given breakpoint. – Rich Sadowsky Sep 30 '11 at 10:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.