Sha256: 8a994252fec3e2d85fb5bb4b5aaecb425eff9f5a3bb21aa9d89a7c449bc1736e

Contents?: true

Size: 1.53 KB

Versions: 6

Compression:

Stored size: 1.53 KB

Contents

module Codesake
  module Dawn
    module Kb
      module OwaspRorCheatSheet

        class SessionStoredInDatabase
          include PatternMatchCheck

          def initialize
            message = "By default, Ruby on Rails uses a Cookie based session store. What that means is that unless you change something, the session will not expire on the server. That means that some default applications may be vulnerable to replay attacks. It also means that sensitive information should never be put in the session."

            super({
              :name=>"Owasp Ror CheatSheet: Session management",
              :kind=>Codesake::Dawn::KnowledgeBase::PATTERN_MATCH_CHECK,
              :applies=>["rails"],
              :glob=>"session_store.rb",
              :aux_links=>["https://www.owasp.org/index.php/Ruby_on_Rails_Cheatsheet"],
              :message=>message,
              :attack_pattern => ["Application.config.session_store :active_record_store"],
              :negative_search=>true,
              :avoid_comments=>true,
              :evidences=>["In your session_store.rb file you are not using ActiveRercord to store session data. This will let rails to use a cookie based session and it can expose your web application to a session replay attack."],
              :mitigation=>"Use ActiveRecord or the ORM you love most to handle your code session_store. Add \"Application.config.session_store :active_record_store\" to your session_store.rb file."
            })
            # @debug = true
          end 
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
codesake-dawn-1.0.6 lib/codesake/dawn/kb/owasp_ror_cheatsheet/session_stored_in_database.rb
codesake-dawn-1.0.5 lib/codesake/dawn/kb/owasp_ror_cheatsheet/session_stored_in_database.rb
codesake-dawn-1.0.4 lib/codesake/dawn/kb/owasp_ror_cheatsheet/session_stored_in_database.rb
codesake-dawn-1.0.3 lib/codesake/dawn/kb/owasp_ror_cheatsheet/session_stored_in_database.rb
codesake-dawn-1.0.2 lib/codesake/dawn/kb/owasp_ror_cheatsheet/session_stored_in_database.rb
codesake-dawn-1.0.1 lib/codesake/dawn/kb/owasp_ror_cheatsheet/session_stored_in_database.rb