The source from Rack::Session::Cookie contains the following warning about not setting a secret to check for cookie integrity:
No secret option provided to Rack::Session::Cookie. This poses a security threat. It is strongly recommended that you provide a secret to prevent exploits that may be possible from crafted cookies.
When using the Rack::Session::Cookie module, you can set a secret in this fashion:
use Rack::Session::Cookie, secret: 'change_me'
However, I'm using Rack::Session::Pool, which "provides simple cookie based session management." I'm assuming that I also need to provide it with a secret, but can't find a relevant example. The source code/documentation is not very helpful either. Does anybody know if this needs to be done, and how it would be accomplished if so?