diff --git a/pandora_console/general/register.php b/pandora_console/general/register.php
index 8c10adc32b..6d15c7ab2f 100644
--- a/pandora_console/general/register.php
+++ b/pandora_console/general/register.php
@@ -186,6 +186,88 @@ try {
$welcome = false;
}
+$double_auth_enabled = (bool) db_get_value('id', 'tuser_double_auth', 'id_user', $config['id_user']);
+
+if (!$double_auth_enabled && $config['2FA_all_users'] != ''
+ && $config['2Fa_auth'] != '1'
+ && $config['double_auth_enabled']
+) {
+ echo '
';
+ ?>
+
+ ';
+}
+
$newsletter = null;
?>
diff --git a/pandora_console/godmode/setup/setup_auth.php b/pandora_console/godmode/setup/setup_auth.php
index eba3b44e0d..282d391bc4 100644
--- a/pandora_console/godmode/setup/setup_auth.php
+++ b/pandora_console/godmode/setup/setup_auth.php
@@ -221,10 +221,33 @@ if (is_ajax()) {
'double_auth_enabled',
1,
$config['double_auth_enabled'],
- true
+ true,
+ false,
+ 'showAndHide()'
);
$table->data['double_auth_enabled'] = $row;
+ // Enable 2FA for all users.
+ // Set default value.
+ set_unless_defined($config['2FA_all_users'], false);
+ $row = [];
+ $row['name'] = __('Force 2FA for all users is enabled');
+ $row['control'] .= html_print_checkbox_switch(
+ '2FA_all_users',
+ 1,
+ $config['2FA_all_users'],
+ true
+ );
+
+ if (!$config['double_auth_enabled']) {
+ $table->rowclass['2FA_all_users'] = 'invisible';
+ } else {
+ $table->rowclass['2FA_all_users'] = '';
+ }
+
+ $table->data['2FA_all_users'] = $row;
+
+
// Session timeout.
// Default session timeout.
set_when_empty($config['session_timeout'], 90);
@@ -317,6 +340,22 @@ echo '';
?>
diff --git a/pandora_console/include/ajax/double_auth.ajax.php b/pandora_console/include/ajax/double_auth.ajax.php
index 7633a28979..2f2970ee23 100644
--- a/pandora_console/include/ajax/double_auth.ajax.php
+++ b/pandora_console/include/ajax/double_auth.ajax.php
@@ -17,7 +17,9 @@ check_login();
// Security check
$id_user = (string) get_parameter('id_user');
-if ($id_user !== $config['id_user']) {
+$FA_forced = (int) get_parameter('FA_forced');
+
+if ($id_user !== $config['id_user'] && $FA_forced != 1) {
db_pandora_audit(
'ACL Violation',
'Trying to access Double Authentication'
diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php
index eda0e37770..3edda7e357 100644
--- a/pandora_console/include/functions_config.php
+++ b/pandora_console/include/functions_config.php
@@ -721,6 +721,10 @@ function config_update_config()
$error_update[] = __('Double authentication');
}
+ if (!config_update_value('2FA_all_users', get_parameter('2FA_all_users'))) {
+ $error_update[] = __('2FA all users');
+ }
+
if (!config_update_value('session_timeout', get_parameter('session_timeout'))) {
$error_update[] = __('Session timeout');
}
@@ -2008,6 +2012,10 @@ function config_process_config()
config_update_value('welcome_state', WELCOME_STARTED);
}
+ if (!isset($config['2Fa_auth'])) {
+ config_update_value('2Fa_auth', '');
+ }
+
/*
* Parse the ACL IP list for access API
*/
diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css
index 24ea783b34..d8b4777fbb 100644
--- a/pandora_console/include/styles/pandora.css
+++ b/pandora_console/include/styles/pandora.css
@@ -691,6 +691,10 @@ select:-internal-list-box {
display: none !important;
}
+.visible {
+ display: block;
+}
+
div#page {
background: #fbfbfb;
background-image: none;
diff --git a/pandora_console/index.php b/pandora_console/index.php
index 1d72a5a5af..233f554749 100755
--- a/pandora_console/index.php
+++ b/pandora_console/index.php
@@ -390,6 +390,7 @@ if (! isset($config['id_user'])) {
}
$login_button_saml = get_parameter('login_button_saml', false);
+ config_update_value('2Fa_auth', '');
if (isset($double_auth_success) && $double_auth_success) {
// This values are true cause there are checked before complete
// the 2nd auth step.
@@ -719,6 +720,8 @@ if (! isset($config['id_user'])) {
$redirect_url .= '&'.safe_url_extraclean($key).'='.safe_url_extraclean($value);
}
+ $double_auth_enabled = (bool) db_get_value('id', 'tuser_double_auth', 'id_user', $config['id_user']);
+
header('Location: '.ui_get_full_url('index.php'.$redirect_url));
exit;
// Always exit after sending location headers.
diff --git a/pandora_console/operation/users/user_edit.php b/pandora_console/operation/users/user_edit.php
index 23b797a8f2..b55a0952e4 100644
--- a/pandora_console/operation/users/user_edit.php
+++ b/pandora_console/operation/users/user_edit.php
@@ -393,14 +393,21 @@ $timezone .= html_print_timezone_select('timezone', $user_info['timezone']).'
'.__('Double authentication').'
';
- $double_authentication .= html_print_checkbox_switch('double_auth', 1, $double_auth_enabled, true);
+ if (($config['2FA_all_users'] == '' && !$double_auth_enabled)
+ || ($config['2FA_all_users'] != '' && !$double_auth_enabled)
+ || ($config['double_auth_enabled'] == '' && $double_auth_enabled)
+ || check_acl($config['id_user'], 0, 'PM')
+ ) {
+ $double_authentication .= html_print_checkbox_switch('double_auth', 1, $double_auth_enabled, true);
+ }
+
// Dialog.
$double_authentication .= '
';
}
-if ($double_auth_enabled) {
+if ($double_auth_enabled && $config['double_auth_enabled'] && $config['2FA_all_users'] != '') {
$double_authentication .= html_print_button(__('Show information'), 'show_info', false, 'javascript:show_double_auth_info();', '', true);
}
@@ -881,14 +888,13 @@ $(document).ready (function () {
$("input#checkbox-double_auth").change(function (e) {
e.preventDefault();
+ if (this.checked) {
+ show_double_auth_activation();
+ } else {
+ show_double_auth_deactivation();
+ }
+ });
- if (this.checked) {
- show_double_auth_activation();
- }
- else {
- show_double_auth_deactivation();
- }
- });
show_data_section();
});