in Greach 2.0, Burt Beckwith talked about Pessimistic Lockdown.
I'm trying to setup Pessimistic Lockdown in my grails application but it doesn't work.
I've written in my Config.groovy:
grails.plugins.springsecurity.rejectIfNoRule = true
and my controller is:
class LibreController {
def index = {
render 'Forbidden access because there isn\'t rule'
}
}
and typing in my navigator "http: // local /PruebaSeguridad /libre" I can read the message "Forbidden access because there isn't rule" without any authentication.
I'm not sure if I understood how Pessimistic Lockdown works or i'm doing anything wrong.