Skip to content

Commit 0e0c12b

Browse files
authored
Merge pull request #6829 from umbraco/cms/release-14.3.2-15.1.2
Docs update for 14.3.2 and 15.1.2
2 parents 99ed788 + 27f8e35 commit 0e0c12b

File tree

2 files changed

+48
-34
lines changed

2 files changed

+48
-34
lines changed

14/umbraco-cms/reference/configuration/securitysettings.md

+23-17
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,28 @@ The authentication cookie which is set in the browser when a backoffice user log
7272

7373
This setting specifies whether the username and email address are separate fields in the backoffice editor. When set to "false", you can specify an email address and username, only the username can be used to log on. When set to "true" (the default value) the username is hidden and always the same as the email address.
7474

75+
### User default lockout time
76+
77+
Use this setting to configure how long time a User is locked out of the Umbraco backoffice when a lockout occurs. The setting accepts an integer which defines the lockout in minutes.
78+
79+
The default lockout time for users is 30 days (43200 minutes).
80+
81+
### Member default lockout time
82+
83+
Use this setting to configure how long time a Member is locked out of the Umbraco website when a lockout occurs. The setting accepts an integer which defines the lockout in minutes.
84+
85+
The default lockout time for users is 30 days (43200 minutes).
86+
87+
### Allow concurrent logins
88+
89+
When set to `false`, any user account is prevented from having multiple simultaneous sessions. In this mode, only one session per user can be active at any given time. This enhances security and prevents concurrent logins with the same user credentials.
90+
91+
### User login duration
92+
93+
Umbraco provides protection from user enumeration attacks looking to identify valid backoffice login accounts. It does this by attempting to equalize the time taken for successful and failed logins.
94+
95+
The `UserDefaultFailedLoginDurationInMilliseconds` can be used to provide a more realistic expected time for a successful login if the default isn't appropriate. This will be used before actual successful logins are detected. `UserMinimumFailedLoginDurationInMilliseconds` provides a minimum duration for a failed login.
96+
7597
## User password settings
7698

7799
This section lets you define the password rules for users.
@@ -109,20 +131,4 @@ Options are:
109131

110132
## Member password settings
111133

112-
This section allows you to define the password rules for members. This section is identical to the one for users.
113-
114-
## User Default Lockout Time In Minutes
115-
116-
Use this setting to configure how long time a User is locked out of the Umbraco backoffice when a lockout occurs. The setting accepts an integer which defines the lockout in minutes.
117-
118-
The default lockout time for users is 30 days (43200 minutes).
119-
120-
## Member Default Lockout Time In Minutes
121-
122-
Use this setting to configure how long time a Member is locked out of the Umbraco website when a lockout occurs. The setting accepts an integer which defines the lockout in minutes.
123-
124-
The default lockout time for users is 30 days (43200 minutes).
125-
126-
## Allow concurrent logins
127-
128-
When set to `false`, any user account is prevented from having multiple simultaneous sessions. In this mode, only one session per user can be active at any given time. This enhances security and prevents concurrent logins with the same user credentials.
134+
This section allows you to define the password rules for members. This section is identical to the one for users.

15/umbraco-cms/reference/configuration/securitysettings.md

+25-17
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ A full configuration with all default values can be seen here:
3838
},
3939
"UserDefaultLockoutTimeInMinutes": 43200,
4040
"MemberDefaultLockoutTimeInMinutes": 43200,
41-
"AllowConcurrentLogins": false
41+
"AllowConcurrentLogins": false,
42+
"UserDefaultFailedLoginDurationInMilliseconds": 1000,
43+
"UserMinimumFailedLoginDurationInMilliseconds": 250,
4244
}
4345
}
4446
}
@@ -72,6 +74,28 @@ The authentication cookie which is set in the browser when a backoffice user log
7274

7375
This setting specifies whether the username and email address are separate fields in the backoffice editor. When set to "false", you can specify an email address and username, only the username can be used to log on. When set to "true" (the default value) the username is hidden and always the same as the email address.
7476

77+
### User default lockout time
78+
79+
Use this setting to configure how long time a User is locked out of the Umbraco backoffice when a lockout occurs. The setting accepts an integer which defines the lockout in minutes.
80+
81+
The default lockout time for users is 30 days (43200 minutes).
82+
83+
### Member default lockout time
84+
85+
Use this setting to configure how long time a Member is locked out of the Umbraco website when a lockout occurs. The setting accepts an integer which defines the lockout in minutes.
86+
87+
The default lockout time for users is 30 days (43200 minutes).
88+
89+
### Allow concurrent logins
90+
91+
When set to `false`, any user account is prevented from having multiple simultaneous sessions. In this mode, only one session per user can be active at any given time. This enhances security and prevents concurrent logins with the same user credentials.
92+
93+
### User login duration
94+
95+
Umbraco provides protection from user enumeration attacks looking to identify valid backoffice login accounts. It does this by attempting to equalize the time taken for successful and failed logins.
96+
97+
The `UserDefaultFailedLoginDurationInMilliseconds` can be used to provide a more realistic expected time for a successful login if the default isn't appropriate. This will be used before actual successful logins are detected. `UserMinimumFailedLoginDurationInMilliseconds` provides a minimum duration for a failed login.
98+
7599
## User password settings
76100

77101
This section lets you define the password rules for users.
@@ -110,19 +134,3 @@ Options are:
110134
## Member password settings
111135

112136
This section allows you to define the password rules for members. This section is identical to the one for users.
113-
114-
## User Default Lockout Time In Minutes
115-
116-
Use this setting to configure how long time a User is locked out of the Umbraco backoffice when a lockout occurs. The setting accepts an integer which defines the lockout in minutes.
117-
118-
The default lockout time for users is 30 days (43200 minutes).
119-
120-
## Member Default Lockout Time In Minutes
121-
122-
Use this setting to configure how long time a Member is locked out of the Umbraco website when a lockout occurs. The setting accepts an integer which defines the lockout in minutes.
123-
124-
The default lockout time for users is 30 days (43200 minutes).
125-
126-
## Allow concurrent logins
127-
128-
When set to `false`, any user account is prevented from having multiple simultaneous sessions. In this mode, only one session per user can be active at any given time. This enhances security and prevents concurrent logins with the same user credentials.

0 commit comments

Comments
 (0)