
Security News
Meet Socket at Black Hat Europe and BSides London 2025
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.
vizjerai-devise_security_extension
Advanced tools
= devise_security_extension
an security extension for devise
== Installation add to Gemfile gem 'devise_security_extension'
after bundle execute rails g devise_security_extension:install
== Configuration
Devise.setup do |config| # Should the password expire (e.g 3.months) # config.expire_password_after = 3.months
# Need 1 char of A-Z, a-z and 0-9
# config.password_regex = /(?=.*\d)(?=.*[a-z])(?=.*[A-Z])/
# How often save old passwords in archive
# config.password_archiving_count = 5
# Deny old password (true, false, count)
# config.deny_old_passwords = true
== Model modules
== Schema
=== Password expirable
create_table :the_resources do |t| t.password_expirable end
=== Password archive
create_table :old_passwords do |t| t.password_archivable end add_index :old_passwords, [:password_archivable_type, :password_archivable_id], :name => :index_password_archivable
== Requirements
== Features
== Todo
== History
== Maintainers
== Contributing to devise_security_extension
== Copyright
Copyright (c) 2011 Marco Scholl. See LICENSE.txt for further details.
FAQs
Unknown package
We found that vizjerai-devise_security_extension demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.