authentication-zero 2.16.8 → 2.16.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/authentication_zero/version.rb +1 -1
- data/lib/generators/authentication/templates/controllers/api/application_controller.rb.tt +1 -1
- data/lib/generators/authentication/templates/controllers/html/two_factor_authentication/totps_controller.rb.tt +2 -2
- data/lib/generators/authentication/templates/erb/two_factor_authentication/totps/new.html.erb.tt +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 65348917c3c30813d335ddaa0ded556499189389735612c8c004a44c6fb7ab5c
|
4
|
+
data.tar.gz: dcfff79d0c2ad9098d450923dab94ea849f122c1e31991ce602dec0796d70527
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba5886da3c24e24eff75f138f38846c1a3867075dbbc1199cbe89c73eb26db21b6286bc705129ee9c6925a00b768fe5d9a09e2cc814b2de733caccdfde7ce963
|
7
|
+
data.tar.gz: 5287419cf37c6ee2251414ccf57a544316aea3db54ba06df630f12893c5539154c1a33c5a283a859309050114b39e349dba4e6f367c83b64aa17991ef7a6425c
|
data/Gemfile.lock
CHANGED
@@ -5,7 +5,7 @@ class ApplicationController < ActionController::API
|
|
5
5
|
before_action :authenticate
|
6
6
|
<%- if options.lockable? %>
|
7
7
|
def require_lock(wait: 1.hour, attempts: 10)
|
8
|
-
counter = Kredis.counter("require_lock:#{request.remote_ip}:#{
|
8
|
+
counter = Kredis.counter("require_lock:#{request.remote_ip}:#{controller_path}:#{action_name}", expires_in: wait)
|
9
9
|
counter.increment
|
10
10
|
|
11
11
|
if counter.value > attempts
|
@@ -8,12 +8,12 @@ class TwoFactorAuthentication::TotpsController < ApplicationController
|
|
8
8
|
|
9
9
|
def create
|
10
10
|
if !@user.authenticate(params[:current_password])
|
11
|
-
redirect_to
|
11
|
+
redirect_to new_two_factor_authentication_totp_path, alert: "The password you entered is incorrect"
|
12
12
|
elsif @totp.verify(params[:code], drift_behind: 15)
|
13
13
|
@user.update! otp_secret: params[:secret]
|
14
14
|
redirect_to root_path, notice: "2FA is enabled on your account"
|
15
15
|
else
|
16
|
-
redirect_to
|
16
|
+
redirect_to new_two_factor_authentication_totp_path, alert: "That code didn't work. Please try again"
|
17
17
|
end
|
18
18
|
end
|
19
19
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: authentication-zero
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.16.
|
4
|
+
version: 2.16.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nixon
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-03-
|
11
|
+
date: 2023-03-26 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|