Metadata


Name
rodauth
Version
2.37.0
Platform
ruby
Authors
Jeremy Evans
Bindir
bin
Date
2024-11-19 00:00:00 UTC
Dependencies
sequel (>= 4)
roda (>= 2.6.0)
tilt (>= 0, development)
rack_csrf (>= 0, development)
bcrypt (>= 0, development)
argon2 (>= 2, development)
mail (>= 0, development)
rotp (>= 0, development)
rqrcode (>= 0, development)
jwt (>= 0, development)
webauthn (>= 2, development)
minitest (>= 5.0.0, development)
minitest-global_expectations (>= 0, development)
minitest-hooks (>= 1.1.0, development)
capybara (>= 2.1.0, development)
Description
Rodauth is Ruby's most advanced authentication framework, designed to work in all rack applications. It's built using Roda and Sequel, but it can be used as middleware in front of web applications that use other web frameworks and database libraries. Rodauth aims to provide strong security for password storage by utilizing separate database accounts if possible on PostgreSQL, MySQL, and Microsoft SQL Server. Configuration is done via a DSL that makes it easy to override any part of the authentication process. Rodauth supports typical authentication features: such as login and logout, changing logins and passwords, and creating, verifying, unlocking, and resetting passwords for accounts. Rodauth also supports many advanced authentication features: * Secure password storage using security definer database functions * Multiple primary multifactor authentication methods (WebAuthn and TOTP), as well as backup multifactor authentication methods (SMS and recovery codes). * Passwordless authentication using email links and WebAuthn authenticators. * Both standard HTML form and JSON API support for all features.
Email
code@jeremyevans.net
Extra rdoc files
MIT-LICENSE
Files
MIT-LICENSE
dict/top-10_000-passwords.txt
javascript/webauthn_auth.js
javascript/webauthn_autofill.js
javascript/webauthn_setup.js
lib/roda/plugins/rodauth.rb
lib/rodauth.rb
lib/rodauth/features/account_expiration.rb
lib/rodauth/features/active_sessions.rb
lib/rodauth/features/argon2.rb
lib/rodauth/features/audit_logging.rb
lib/rodauth/features/base.rb
lib/rodauth/features/change_login.rb
lib/rodauth/features/change_password.rb
lib/rodauth/features/change_password_notify.rb
lib/rodauth/features/close_account.rb
lib/rodauth/features/confirm_password.rb
lib/rodauth/features/create_account.rb
lib/rodauth/features/disallow_common_passwords.rb
lib/rodauth/features/disallow_password_reuse.rb
lib/rodauth/features/email_auth.rb
lib/rodauth/features/email_base.rb
lib/rodauth/features/http_basic_auth.rb
lib/rodauth/features/internal_request.rb
lib/rodauth/features/json.rb
lib/rodauth/features/jwt.rb
lib/rodauth/features/jwt_cors.rb
lib/rodauth/features/jwt_refresh.rb
lib/rodauth/features/lockout.rb
lib/rodauth/features/login.rb
lib/rodauth/features/login_password_requirements_base.rb
lib/rodauth/features/logout.rb
lib/rodauth/features/otp.rb
lib/rodauth/features/otp_lockout_email.rb
lib/rodauth/features/otp_modify_email.rb
lib/rodauth/features/otp_unlock.rb
lib/rodauth/features/password_complexity.rb
lib/rodauth/features/password_expiration.rb
lib/rodauth/features/password_grace_period.rb
lib/rodauth/features/password_pepper.rb
lib/rodauth/features/path_class_methods.rb
lib/rodauth/features/recovery_codes.rb
lib/rodauth/features/remember.rb
lib/rodauth/features/reset_password.rb
lib/rodauth/features/reset_password_notify.rb
lib/rodauth/features/session_expiration.rb
lib/rodauth/features/single_session.rb
lib/rodauth/features/sms_codes.rb
lib/rodauth/features/two_factor_base.rb
lib/rodauth/features/update_password_hash.rb
lib/rodauth/features/verify_account.rb
lib/rodauth/features/verify_account_grace_period.rb
lib/rodauth/features/verify_login_change.rb
lib/rodauth/features/webauthn.rb
lib/rodauth/features/webauthn_autofill.rb
lib/rodauth/features/webauthn_login.rb
lib/rodauth/features/webauthn_modify_email.rb
lib/rodauth/features/webauthn_verify_account.rb
lib/rodauth/migrations.rb
lib/rodauth/version.rb
templates/add-recovery-codes.str
templates/button.str
templates/change-login.str
templates/change-password.str
templates/close-account.str
templates/confirm-password.str
templates/create-account.str
templates/email-auth-email.str
templates/email-auth-request-form.str
templates/email-auth.str
templates/global-logout-field.str
templates/login-confirm-field.str
templates/login-display.str
templates/login-field.str
templates/login-form-footer.str
templates/login-form.str
templates/login.str
templates/logout.str
templates/multi-phase-login.str
templates/otp-auth-code-field.str
templates/otp-auth.str
templates/otp-disable.str
templates/otp-disabled-email.str
templates/otp-locked-out-email.str
templates/otp-setup-email.str
templates/otp-setup.str
templates/otp-unlock-failed-email.str
templates/otp-unlock-not-available.str
templates/otp-unlock.str
templates/otp-unlocked-email.str
templates/password-changed-email.str
templates/password-confirm-field.str
templates/password-field.str
templates/recovery-auth.str
templates/recovery-codes.str
templates/remember.str
templates/reset-password-email.str
templates/reset-password-notify-email.str
templates/reset-password-request.str
templates/reset-password.str
templates/sms-auth.str
templates/sms-code-field.str
templates/sms-confirm.str
templates/sms-disable.str
templates/sms-request.str
templates/sms-setup.str
templates/two-factor-auth.str
templates/two-factor-disable.str
templates/two-factor-manage.str
templates/unlock-account-email.str
templates/unlock-account-request.str
templates/unlock-account.str
templates/verify-account-email.str
templates/verify-account-resend.str
templates/verify-account.str
templates/verify-login-change-email.str
templates/verify-login-change.str
templates/webauthn-auth.str
templates/webauthn-authenticator-added-email.str
templates/webauthn-authenticator-removed-email.str
templates/webauthn-autofill.str
templates/webauthn-remove.str
templates/webauthn-setup.str
Homepage
https://rodauth.jeremyevans.net
Licenses
MIT
Metadata
{"bug_tracker_uri"=>"https://github.com/jeremyevans/rodauth/issues", "changelog_uri"=>"https://rodauth.jeremyevans.net/rdoc/files/CHANGELOG.html", "documentation_uri"=>"https://rodauth.jeremyevans.net/documentation.html", "mailing_list_uri"=>"https://github.com/jeremyevans/rodauth/discussions", "source_code_uri"=>"https://github.com/jeremyevans/rodauth"}
Rdoc options
--quiet
--line-numbers
--inline-source
--title
Rodauth: Ruby's Most Advanced Authentication Framework
--main
README.rdoc
Require paths
lib
Required ruby version
>= 1.9.2
Required rubygems version
>= 0
Rubygems version
3.5.22
Specification version
4
Summary
Authentication and Account Management Framework for Rack Applications
Original platform
ruby
New platform
ruby