Version Description
- Google Authenticator-Two Factor Authentication (2FA) : Two Factor On-premise support form.
Download this release
Release Info
Developer | cyberlord92 |
Plugin | Google Authenticator – WordPress Two Factor Authentication (2FA) |
Version | 5.3.25 |
Comparing to | |
See all releases |
Code changes from version 5.3.24 to 5.3.25
- helper/curl.php +4 -4
- miniorange_2_factor_settings.php +2 -2
- readme.txt +7 -1
helper/curl.php
CHANGED
@@ -39,7 +39,7 @@ class MocURL
|
|
39 |
|
40 |
$is_nc_with_1_user = get_option( 'mo2f_is_NC' ) && get_option( 'mo2f_is_NNC' );
|
41 |
$is_ec_with_1_user = ! get_option( 'mo2f_is_NC' );
|
42 |
-
|
43 |
|
44 |
$customer_feature = "";
|
45 |
|
@@ -49,7 +49,7 @@ class MocURL
|
|
49 |
$customer_feature = "V3";
|
50 |
}
|
51 |
global $moWpnsUtility;
|
52 |
-
$query = '[WordPress 2 Factor Authentication Plugin: '
|
53 |
|
54 |
$fields = array(
|
55 |
'firstName' => $current_user->user_firstname,
|
@@ -192,7 +192,7 @@ class MocURL
|
|
192 |
|
193 |
$is_nc_with_1_user = get_option( 'mo2f_is_NC' ) && get_option( 'mo2f_is_NNC' );
|
194 |
$is_ec_with_1_user = ! get_option( 'mo2f_is_NC' );
|
195 |
-
|
196 |
|
197 |
$customer_feature = "";
|
198 |
|
@@ -203,7 +203,7 @@ class MocURL
|
|
203 |
$customer_feature = "V3";
|
204 |
}
|
205 |
|
206 |
-
$query = '[WordPress 2 Factor Authentication Plugin: '
|
207 |
|
208 |
|
209 |
$content='<div >Hello, <br><br>Ticket ID:'.$moWpnsUtility->getFeatureStatus().'<br><br>First Name :'.$user->user_firstname.'<br><br>Last Name :'.$user->user_lastname.' <br><br>Company :<a href="'.$_SERVER['SERVER_NAME'].'" target="_blank" >'.$_SERVER['SERVER_NAME'].'</a><br><br>Phone Number :'.$phone.'<br><br>Email :<a href="mailto:'.$email.'" target="_blank">'.$email.'</a><br><br>Query :'.$query.'</div>';
|
39 |
|
40 |
$is_nc_with_1_user = get_option( 'mo2f_is_NC' ) && get_option( 'mo2f_is_NNC' );
|
41 |
$is_ec_with_1_user = ! get_option( 'mo2f_is_NC' );
|
42 |
+
$onprem = MO2F_IS_ONPREM ?'O':'C';
|
43 |
|
44 |
$customer_feature = "";
|
45 |
|
49 |
$customer_feature = "V3";
|
50 |
}
|
51 |
global $moWpnsUtility;
|
52 |
+
$query = '[WordPress 2 Factor Authentication Plugin: ' .$onprem.$customer_feature . ' - V '.MO2F_VERSION.'- Ticket Id:'.$moWpnsUtility->getFeatureStatus().']: ' . $query;
|
53 |
|
54 |
$fields = array(
|
55 |
'firstName' => $current_user->user_firstname,
|
192 |
|
193 |
$is_nc_with_1_user = get_option( 'mo2f_is_NC' ) && get_option( 'mo2f_is_NNC' );
|
194 |
$is_ec_with_1_user = ! get_option( 'mo2f_is_NC' );
|
195 |
+
$onprem = MO2F_IS_ONPREM ? 'O':'C';
|
196 |
|
197 |
$customer_feature = "";
|
198 |
|
203 |
$customer_feature = "V3";
|
204 |
}
|
205 |
|
206 |
+
$query = '[WordPress 2 Factor Authentication Plugin: ' .$onprem.$customer_feature . ' - V '.MO2F_VERSION.']: ' . $message;
|
207 |
|
208 |
|
209 |
$content='<div >Hello, <br><br>Ticket ID:'.$moWpnsUtility->getFeatureStatus().'<br><br>First Name :'.$user->user_firstname.'<br><br>Last Name :'.$user->user_lastname.' <br><br>Company :<a href="'.$_SERVER['SERVER_NAME'].'" target="_blank" >'.$_SERVER['SERVER_NAME'].'</a><br><br>Phone Number :'.$phone.'<br><br>Email :<a href="mailto:'.$email.'" target="_blank">'.$email.'</a><br><br>Query :'.$query.'</div>';
|
miniorange_2_factor_settings.php
CHANGED
@@ -3,13 +3,13 @@
|
|
3 |
* Plugin Name: miniOrange 2 Factor Authentication
|
4 |
* Plugin URI: https://miniorange.com
|
5 |
* Description: This plugin provides various two-factor authentication methods as an additional layer of security after the default wordpress login. We Support Google/Authy/LastPass Authenticator, QR Code, Push Notification, Soft Token and Security Questions(KBA) for 1 User in the free version of the plugin.
|
6 |
-
* Version: 5.3.
|
7 |
* Author: miniOrange
|
8 |
* Author URI: https://miniorange.com
|
9 |
* License: GPL2
|
10 |
*/
|
11 |
define( 'MO_HOST_NAME', 'https://login.xecurify.com' );
|
12 |
-
define( 'MO2F_VERSION', '5.3.
|
13 |
define( 'MO2F_TEST_MODE', FALSE );
|
14 |
define( 'MO2F_IS_ONPREM', get_option('is_onprem'));
|
15 |
class Miniorange_twoFactor{
|
3 |
* Plugin Name: miniOrange 2 Factor Authentication
|
4 |
* Plugin URI: https://miniorange.com
|
5 |
* Description: This plugin provides various two-factor authentication methods as an additional layer of security after the default wordpress login. We Support Google/Authy/LastPass Authenticator, QR Code, Push Notification, Soft Token and Security Questions(KBA) for 1 User in the free version of the plugin.
|
6 |
+
* Version: 5.3.25
|
7 |
* Author: miniOrange
|
8 |
* Author URI: https://miniorange.com
|
9 |
* License: GPL2
|
10 |
*/
|
11 |
define( 'MO_HOST_NAME', 'https://login.xecurify.com' );
|
12 |
+
define( 'MO2F_VERSION', '5.3.25' );
|
13 |
define( 'MO2F_TEST_MODE', FALSE );
|
14 |
define( 'MO2F_IS_ONPREM', get_option('is_onprem'));
|
15 |
class Miniorange_twoFactor{
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Donate link: https://miniorange.com/
|
|
6 |
Requires at least: 3.0.1
|
7 |
Tested up to: 5.4
|
8 |
Requires PHP: 5.3.0
|
9 |
-
Stable tag: 5.3.
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
@@ -272,6 +272,9 @@ miniOrange authentication service has 15+ authentication methods.One time passco
|
|
272 |
|
273 |
== Changelog ==
|
274 |
|
|
|
|
|
|
|
275 |
= 5.3.24 =
|
276 |
* Google Authenticator-Two Factor Authentication (2FA) : On-premise two factor released with multiple users support for some authentication methods.
|
277 |
|
@@ -738,6 +741,9 @@ More descriptive setup messages and UI changes.
|
|
738 |
|
739 |
== Upgrade Notice ==
|
740 |
|
|
|
|
|
|
|
741 |
= 5.3.24 =
|
742 |
* Google Authenticator-Two Factor Authentication (2FA) : On-premise two factor released with multiple user support for some authentication methods.
|
743 |
|
6 |
Requires at least: 3.0.1
|
7 |
Tested up to: 5.4
|
8 |
Requires PHP: 5.3.0
|
9 |
+
Stable tag: 5.3.25
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
272 |
|
273 |
== Changelog ==
|
274 |
|
275 |
+
= 5.3.25 =
|
276 |
+
* Google Authenticator-Two Factor Authentication (2FA) : Two Factor On-premise support form.
|
277 |
+
|
278 |
= 5.3.24 =
|
279 |
* Google Authenticator-Two Factor Authentication (2FA) : On-premise two factor released with multiple users support for some authentication methods.
|
280 |
|
741 |
|
742 |
== Upgrade Notice ==
|
743 |
|
744 |
+
= 5.3.25 =
|
745 |
+
* Google Authenticator-Two Factor Authentication (2FA) : Two Factor On-premise support form.
|
746 |
+
|
747 |
= 5.3.24 =
|
748 |
* Google Authenticator-Two Factor Authentication (2FA) : On-premise two factor released with multiple user support for some authentication methods.
|
749 |
|