Linux webm012.cluster126.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
/
home
/
ferronnery
/
www
/
wp-content
/
plugins
/
wordfence
/
modules
/
login-security
/
views
/
settings
/
/home/ferronnery/www/wp-content/plugins/wordfence/modules/login-security/views/settings/options.php
<?php if (!defined('WORDFENCE_LS_VERSION')) { exit; } ?> <div class="wfls-block wfls-always-active wfls-flex-item-full-width"> <div class="wfls-block-header wfls-block-header-border-bottom"> <div class="wfls-block-header-content"> <div class="wfls-block-title"> <strong><?php esc_html_e('Settings', 'wordfence-2fa'); ?></strong> </div> </div> <div class="wfls-block-header-action wfls-block-header-action-text wfls-nowrap wfls-padding-add-right-responsive"> <a href="#" id="wfls-cancel-changes" class="wfls-btn wfls-btn-sm wfls-btn-default wfls-disabled"><?php echo wp_kses(__('Cancel<span class="wfls-visible-sm-inline"> Changes</span>', 'wordfence-2fa'), array('span'=>array('class'=>array()))); ?></a> <a href="#" id="wfls-save-changes" class="wfls-btn wfls-btn-sm wfls-btn-primary wfls-disabled"><?php echo wp_kses(__('Save<span class="wfls-visible-sm-inline"> Changes</span>', 'wordfence-2fa'), array('span'=>array('class'=>array()))); ?></a> </div> </div> <div class="wfls-block-content"> <ul class="wfls-block-list"> <li> <?php $roles = new \WP_Roles(); $options = array(); if (is_multisite()) { $options[] = array( 'role' => 'super-admin', 'name' => 'enabled-roles.super-admin', 'title' => __('Super Administrator', 'wordfence-2fa'), 'editable' => true, 'allow_disabling' => false, 'state' => \WordfenceLS\Controller_Settings::shared()->get_required_2fa_role_activation_time('super-admin') !== false ? 'required' : 'optional' ); } foreach ($roles->role_objects as $name => $r) { /** @var \WP_Role $r */ $options[] = array( 'role' => $name, 'name' => 'enabled-roles.' . $name, 'title' => $roles->role_names[$name], 'editable' => true, 'allow_disabling' => (!is_multisite() && $name == 'administrator' ? false : true), 'state' => \WordfenceLS\Controller_Settings::shared()->get_required_2fa_role_activation_time($name) !== false ? 'required' : ($r->has_cap(\WordfenceLS\Controller_Permissions::CAP_ACTIVATE_2FA_SELF) ? 'optional' : 'disabled') ); } echo \WordfenceLS\Model_View::create('options/option-roles', array('options' => $options, 'hasWoocommerce' => $hasWoocommerce))->render(); ?> </li> <li> <?php echo \WordfenceLS\Model_View::create('options/option-toggled', array( 'optionName' => \WordfenceLS\Controller_Settings::OPTION_REMEMBER_DEVICE_ENABLED, 'enabledValue' => '1', 'disabledValue' => '0', 'value' => \WordfenceLS\Controller_Settings::shared()->get_bool(\WordfenceLS\Controller_Settings::OPTION_REMEMBER_DEVICE_ENABLED) ? '1': '0', 'title' => new \WordfenceLS\Text\Model_HTML('<strong>' . esc_html__('Allow remembering device for 30 days', 'wordfence-2fa') . '</strong>'), 'subtitle' => __('If enabled, users with 2FA enabled may choose to be prompted for a code only once every 30 days per device.', 'wordfence-2fa'), ))->render(); ?> </li> <li> <?php echo \WordfenceLS\Model_View::create('options/option-switch', array( 'optionName' => \WordfenceLS\Controller_Settings::OPTION_XMLRPC_ENABLED, 'value' => \WordfenceLS\Controller_Settings::shared()->get_bool(\WordfenceLS\Controller_Settings::OPTION_XMLRPC_ENABLED) ? '1': '0', 'title' => new \WordfenceLS\Text\Model_HTML('<strong>' . esc_html__('Require 2FA for XML-RPC call authentication', 'wordfence-2fa') . '</strong>'), 'subtitle' => __('If enabled, XML-RPC calls that require authentication will also require a valid 2FA code to be appended to the password. You must choose the "Skipped" option if you use the WordPress app, the Jetpack plugin, or other services that require XML-RPC.', 'wordfence-2fa'), 'states' => array( array('value' => '0', 'label' => __('Skipped', 'wordfence-2fa')), array('value' => '1', 'label' => __('Required', 'wordfence-2fa')), ), 'noSpacer' => true, 'alignment' => 'wfls-right', ))->render(); ?> </li> <li> <?php echo \WordfenceLS\Model_View::create('options/option-toggled', array( 'optionName' => \WordfenceLS\Controller_Settings::OPTION_ALLOW_XML_RPC, 'enabledValue' => '0', 'disabledValue' => '1', 'value' => \WordfenceLS\Controller_Settings::shared()->get_bool(\WordfenceLS\Controller_Settings::OPTION_ALLOW_XML_RPC) ? '1': '0', 'title' => new \WordfenceLS\Text\Model_HTML('<strong>' . esc_html__('Disable XML-RPC authentication', 'wordfence-2fa') . '</strong>'), 'subtitle' => __('If disabled, XML-RPC requests that attempt authentication will be rejected.', 'wordfence-2fa'), ))->render(); ?> </li> <li> <?php echo \WordfenceLS\Model_View::create('options/option-textarea', array( 'textOptionName' => \WordfenceLS\Controller_Settings::OPTION_2FA_WHITELISTED, 'textValue' => implode("\n", \WordfenceLS\Controller_Settings::shared()->whitelisted_ips()), 'title' => new \WordfenceLS\Text\Model_HTML('<strong>' . esc_html__('Allowlisted IP addresses that bypass 2FA and reCAPTCHA', 'wordfence-2fa') . '</strong>'), 'alignTitle' => 'top', 'subtitle' => __('Allowlisted IPs must be placed on separate lines. You can specify ranges using the following formats: 127.0.0.1/24, 127.0.0.[1-100], or 127.0.0.1-127.0.1.100.', 'wordfence-2fa'), 'subtitlePosition' => 'value', 'noSpacer' => true, ))->render(); ?> </li> <li> <?php echo \WordfenceLS\Model_View::create('options/option-captcha', array( ))->render(); ?> </li> <li> <?php echo \WordfenceLS\Model_View::create('options/option-captcha-threshold', array( ))->render(); ?> </li> <li> <?php echo \WordfenceLS\Model_View::create('options/option-toggled', array( 'optionName' => \WordfenceLS\Controller_Settings::OPTION_CAPTCHA_TEST_MODE, 'enabledValue' => '1', 'disabledValue' => '0', 'value' => \WordfenceLS\Controller_Settings::shared()->get_bool(\WordfenceLS\Controller_Settings::OPTION_CAPTCHA_TEST_MODE) ? '1': '0', 'title' => new \WordfenceLS\Text\Model_HTML('<strong>' . esc_html__('Run reCAPTCHA in test mode', 'wordfence-2fa') . '</strong>'), 'subtitle' => __('While in test mode, reCAPTCHA will score login and registration requests but not actually block them. The scores will be recorded and can be used to select a human/bot threshold value.', 'wordfence-2fa'), ))->render(); ?> </li> <?php if (!WORDFENCE_LS_FROM_CORE): ?> <li> <?php echo \WordfenceLS\Model_View::create('options/option-ip-source', array())->render(); ?> </li> <?php endif; ?> <li> <?php echo \WordfenceLS\Model_View::create('options/option-ntp', array( ))->render(); ?> </li> <li> <?php echo \WordfenceLS\Model_View::create('options/option-toggled', array( 'optionName' => \WordfenceLS\Controller_Settings::OPTION_ENABLE_WOOCOMMERCE_INTEGRATION, 'enabledValue' => '1', 'disabledValue' => '0', 'value' => \WordfenceLS\Controller_Settings::shared()->get_bool(\WordfenceLS\Controller_Settings::OPTION_ENABLE_WOOCOMMERCE_INTEGRATION) ? '1': '0', 'title' => new \WordfenceLS\Text\Model_HTML('<strong>' . esc_html__('Enable WooCommerce integration', 'wordfence-2fa') . '</strong>'), 'subtitle' => __('When enabled, reCAPTCHA and 2FA prompt support will be added to WooCommerce login and registration forms in addition to the default WordPress forms. Testing WooCommerce forms after enabling this feature is recommended to ensure plugin compatibility.', 'wordfence-2fa'), ))->render(); ?> </li> <li> <?php echo \WordfenceLS\Model_View::create('options/option-toggled', array( 'optionName' => \WordfenceLS\Controller_Settings::OPTION_ENABLE_LOGIN_HISTORY_COLUMNS, 'enabledValue' => '1', 'disabledValue' => '0', 'value' => \WordfenceLS\Controller_Settings::shared()->are_login_history_columns_enabled() ? '1': '0', 'title' => new \WordfenceLS\Text\Model_HTML('<strong>' . esc_html__('Show last login column on WP Users page', 'wordfence-2fa') . '</strong>'), 'subtitle' => __('When enabled, the last login timestamp will be displayed for each user on the WP Users page. When used in conjunction with reCAPTCHA, the most recent score will also be displayed for each user.', 'wordfence-2fa'), ))->render(); ?> </li> <li> <?php echo \WordfenceLS\Model_View::create('options/option-toggled', array( 'optionName' => \WordfenceLS\Controller_Settings::OPTION_DELETE_ON_DEACTIVATION, 'enabledValue' => '1', 'disabledValue' => '0', 'value' => \WordfenceLS\Controller_Settings::shared()->get_bool(\WordfenceLS\Controller_Settings::OPTION_DELETE_ON_DEACTIVATION) ? '1': '0', 'title' => new \WordfenceLS\Text\Model_HTML('<strong>' . esc_html__('Delete Login Security tables and data on deactivation', 'wordfence-2fa') . '</strong>'), 'subtitle' => __('If enabled, all settings and 2FA records will be deleted on deactivation. If later reactivated, all users that previously had 2FA active will need to set it up again.', 'wordfence-2fa'), ))->render(); ?> </li> </ul> </div> </div>