Allows you to specify sensitive parameters which will be replaced from the request log by looking in the query string of the request and all subhashes of the params hash to filter. If a block is given, each key and value of the params hash and all subhashes is passed to it, the value or key can be replaced using String#replace or similar method.
Examples:
env["action_dispatch.parameter_filter"] = [:password] => replaces the value to all keys matching %rpassword/ with "[FILTERED]" env["action_dispatch.parameter_filter"] = [:foo, "bar"] => replaces the value to all keys matching %rfoo|bar/ with "[FILTERED]" env["action_dispatch.parameter_filter"] = lambda do |k,v| v.reverse! if k =~ %rsecret/ end => reverses the value to all keys matching %rsecret/
Methods
- E
- F
- P
Constants
KV_RE | = | '[^&;=]+' |
PAIR_RE | = | %r{(#{KV_RE})=(#{KV_RE})} |
Instance Public methods
Return a hash of request.env with all sensitive data replaced.
Return a hash of parameters with all sensitive data replaced.
Reconstructed a path with all sensitive GET parameters replaced.
Instance Protected methods