Releases: MultifactorLab/MultiFactor.IIS.Adapter
Releases · MultifactorLab/MultiFactor.IIS.Adapter
1.0.107
1.0.99
Release 02.04.2025 | Add pre-Windows 2000 logon name support
New
- The user can use a pre-Windows 2000 logon name for authentication: "netbiosname/username"
- Improved user search in subdomains and with alternative suffixes
1.0.88
Release 13.01.2025 | Prevent Authorization Reset When Requesting Email Attachments
New
- Updated IIS Adapter to .NET Framework 4.8
Bug Fixes
- Fixed an issue where authorization would reset when requesting email attachments
1.0.77
Release 20.08.2024 | Bigfixes
Fixed
- incorrect 2fa identity transformation
1.0.74
Release 23.07.2024 | Multidomain and custom identity attribute
New
- multidomain support: multiple domains can be specified via ';'
<add key="multifactor:active-directory-domain" value="domain1.local;domain2.local" />
- Added the
use-attribute-as-identitysetting, which allows you to specify the attribute that will be used as an identifier when checking the second factor.
SHOULD use the new setting instead ofuse-upn-as-identity.
<!-- Use the specified attribute as the user identity when checking the second factor-->
<add key="multifactor:use-attribute-as-identity" value="mail"/>1.0.65
Release 02.07.2024 | Bypass Fix
Bugfixes
- Fixed: the adapter bypasses 2FA if licenses are exhausted
1.0.61
Release 06.05.2024 | Bypass Fix
Fixed
- The adapter bypasses 2FA if the user is not found and user registration is disabled.
1.0.58
Release 20.11.2023 | Bypass if Multifactor API Unreachable
New
- Improved default adapter behavior: if the Multifactor API is not available when going to the second factor confirmation page, the Adapter will let the user through without entering the second factor. To switch the Adapter to the old behavior, use the following setting:
Please note that the Adapter remembers the bypass session for 15 minutes for one user. To change the bypass session duration, use the following setting:
<add key="multifactor:bypass-second-factor-when-api-unreachable" value="false" />Default value: 15 minutes.<add key="multifactor:api-life-check-interval" value="15" />
Values of 0 or less than zero are considered the default value.
1.0.50
Release 03.07.2023 | New domain resolving logic
New
- Extended logging
Bugfixes
- Fixed: domain resolving
1.0.44
Feature/phone attribute (#7) * new setting was added code was refactored * Tests were added * lazy was added * refactoring * cache setting tests were added