-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
multiOTP Credential Provider 5.3.0.0
FIX: Save flat domain name in the registry. While offline, use this value instead of asking the DC ENH: Enigma Virtual Box updated to version 9.00 (to create the special all-in-one-file) ENH: PHP 7.2.8 used in the one single file ENH: The multiOTP timeout (how long the Credential Provider wait a response from the multiOTP process) is now 60 seconds by default (instead of 10)
- Loading branch information
Showing
29 changed files
with
1,736 additions
and
848 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ multiOTP Credential Provider for multiOTP is a free and open source implementati | |
(c) 2015-2016 ArcadeJust ("RDP only" enhancement) | ||
(c) 2013-2015 Last Squirrel IT | ||
|
||
Current build: 5.1.0.8 (2018-03-05) | ||
Current build: 5.3.0.0 (2018-08-21) | ||
|
||
Binary download: https://download.multiotp.net/credential-provider/ | ||
|
||
|
@@ -44,7 +44,43 @@ PREREQUISITES | |
|
||
INSTALLATION | ||
============ | ||
- Launch the installer (in the installer directory) and configure the various parameters during the setup. You must have administrator access. | ||
- Launch the installer (in the installer directory) and configure the various parameters during the detup. You must have administrator access to successfully install the multiOTP Credential Provider. | ||
|
||
|
||
LOCAL ONLY STRONG AUTHENTICATION INSTALLATION | ||
============================================= | ||
1) Install the multiOTP Credential Provider, which contains also multiOTP inside. | ||
2) During the installation, specify the folder on the client where the | ||
multiotp.exe file and folders must be installed and configured. | ||
3) In the wizard, leave the URL of the multiOTP server(s) empty. | ||
4) You can also choose to require a strong authentication only for RDP. | ||
5) When you are on the test page, open a command prompt in the folder where | ||
multiOTP is now installed and create a new local user. Example: | ||
1) *multiotp -fastcreatenopin my_user* | ||
2) *multiotp -qrcode my_user my_qrcode.png)* | ||
6) If the test is successful, the Credential Provider is installed. | ||
7) To disable the Credential Provider, uninstall it from Windows, | ||
or execute multiOTPCredentialProvider-unregister.reg | ||
|
||
|
||
CENTRALIZED STRONG AUTHENTICATION INSTALLATION (with cache support) | ||
=================================================================== | ||
1) First, install a multiOTP server (commercial or open source edition). | ||
(https://www.multiotp.com or https://www.multiotp.net) | ||
2) On each client, install the multiOTP Credential Provider. | ||
3) During the installation, specify the folder on the client where the | ||
multiotp.exe file and folders must be installed and configured. | ||
4) In the wizard, type the URL of the multiOTP server(s). | ||
5) You can also choose to require a strong authentication only for RDP. | ||
6) On the test page, test your account to be sure that everything works. | ||
7) If the test is successful, the Credential Provider is installed. | ||
8) To disable the Credential Provider, uninstall it from Windows, | ||
or execute multiOTPCredentialProvider-unregister.reg | ||
|
||
|
||
UNATTENDED INSTALLATION | ||
======================= | ||
An MSI file will be available soon to mass deploy the multiOTP Credential Provider. | ||
|
||
|
||
UNINSTALLATION | ||
|
@@ -58,15 +94,14 @@ TECHNICAL DETAILS | |
- the credential provider options are stored in the following registry key (registry entries have priority over multiotp.ini file entries): HKEY_CLASSES_ROOT\CLSID\{FCEFDFAB-B0A1-4C4D-8B2B-4FF4E0A3D978} | ||
- multiOTPCacheEnabled : [1|0], used directly by multiOTP | ||
- multiOTPDisplaySmsLink : [0|1] | ||
- multiOTPLoginTitle : [Login title, default is '', which displays multiOTP Login] | ||
- multiOTPOptions : [additional configuration options used directly by multiOTP, tab separated, default is ''] | ||
- multiOTPLoginTitle : [Login title, default is '', which displays 'multiOTP Login'] | ||
- multiOTPPath : [X:\Path\to\multiotp\folder] | ||
- multiOTPPrefixPass : [0|1] | ||
- multiOTPRDPOnly : [0|1] | ||
- multiOTPServers : [multiOTP server(s) to contact, default is 'https://192.168.1.88'], used directly by multiOTP | ||
- multiOTPServerTimeout : [timeout in seconds before switching to the next server, default is 5], used directly by multiOTP | ||
- multiOTPSharedSecret : [secret to connect this client to the server, default is 'ClientServerSecret'], used directly by multiOTP | ||
- multiOTPTimeout : [timeout in seconds, default is 10] | ||
- multiOTPTimeout : [timeout in seconds, default is 60] | ||
- multiOTPUPNFormat : [0|1] | ||
- if the tile file [multiOTPPath]\multiotp.bmp exists, it will replace the default 128x128 tile image | ||
|
||
|
@@ -83,7 +118,12 @@ Report if you have any problems or questions regarding this app. | |
CHANGE LOG OF RELEASED VERSIONS | ||
=============================== | ||
``` | ||
2018-03-05 5.1.0.8 SysCo/al FIX: Enigma Virtual Box updated to version 8.10 (to create the special all-in-one-file) | ||
2018-08-21 5.3.0.0 SysCo/yj FIX: Save flat domain name in the registry. While offline, use this value instead of asking the DC | ||
SysCo/al ENH: Enigma Virtual Box updated to version 9.00 (to create the special all-in-one-file) | ||
ENH: PHP 7.2.8 used in the one single file | ||
ENH: The multiOTP timeout (how long the Credential Provider wait a response from | ||
the multiOTP process) is now 60 seconds by default (instead of 10) | ||
2018-03-05 5.1.0.8 SysCo/al ENH: Enigma Virtual Box updated to version 8.10 (to create the special all-in-one-file) | ||
2018-02-27 5.1.0.7 SysCo/al FIX: [Receive an OTP by SMS] link is now fixed for Windows 10 | ||
2018-02-26 5.1.0.6 SysCo/al ENH: Credential Provider registry entries are now always used when calling multiOTP.exe | ||
2018-02-21 5.1.0.5 SysCo/al FIX: To avoid virus false positive alert, multiOTP.exe is NO more packaged in one single file | ||
|
@@ -98,9 +138,9 @@ CHANGE LOG OF RELEASED VERSIONS | |
2017-12-11 5.0.6.2 SysCo/al ENH: [Receive an OTP by SMS] link can be displayed or not (option during installation) | ||
ENH: UPN username format can be sent to the multiOTP server (by default, legacy username) | ||
ENH: Better documentation | ||
2017-12-04 5.0.6.1 SysCo/al ENH: Default domain name support | ||
2017-12-04 5.0.6.1 SysCo/al FIX: [Synchronize OTP] link removed (useless, synchronization is done automatically by typing OTP1 + [space] + OTP2) | ||
ENH: Default domain name support | ||
ENH: User can request an SMS code using a command link | ||
FIX: [Synchronize OTP] link removed (useless, synchronization is done automatically by typing OTP1 + [space] + OTP2) | ||
2017-11-10 5.0.6.0 SysCo/al ENH: Specific Credential Provider mode in the CLI version | ||
2017-11-05 5.0.5.9 SysCo/al ENH: Full support for [email protected] UPN notation (AD/LDAP should be synchronized using the userPrincipalName instead of sAMAccountName identifier) | ||
2017-11-04 5.0.5.6 SysCo/al FIX: Removed digit OTP only check for the OTP field | ||
|
Binary file not shown.
Oops, something went wrong.