Latest Version: 0.9.6.2

Index of the secure module

  • m pylons.decorators.secure ... - Security related decorators
    • f authenticate_form ... - Decorator for authenticating a form according to an authorization token stored in the client's session. For prevention of certain Cross-site request forgery (CSRF) attacks (See http://en.wikipedia.org/wiki/Cross-site_request_forgery for more information).
    • f https ... - Decorator to redirect to the SSL version of a page if not currently using HTTPS. Takes as arguments the parameters to pass to redirect_to. (Specify no arguments necessary to redirect the current page). Apply this decorator to controller methods (actions).

Top