You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my app, I have Rails.application.config.session_store :active_record_store in my config/initializers/session_store.rb, but dawnscanner still reported the Owasp Ror CheatSheet Session management issue.
It looks like this is due to the attack_pattern only looking for Application.config.session_store and not Rails.application.config.session_store
The text was updated successfully, but these errors were encountered:
one question, if we use Rails.application.config.session_store ActionDispatch::Session::CacheStore this will have the same effect and will make the report to pass.. no?
In my app, I have
Rails.application.config.session_store :active_record_store
in myconfig/initializers/session_store.rb
, but dawnscanner still reported the Owasp Ror CheatSheet Session management issue.It looks like this is due to the attack_pattern only looking for
Application.config.session_store
and notRails.application.config.session_store
The text was updated successfully, but these errors were encountered: