✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ webm004.cluster127.gra.hosting.ovh.net ​🇻​♯➤ 6.18.42-ovh-vps-grsec-zfs+ #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 54.36.91.62 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.42
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ _dyuweyrj4,_dyuweyrj4r,dl

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/docteuh/www//user-edit.php
<?php
/**
 * Edit user administration panel.
 *
 * @package WordPress
 * @subpackage Administration
 */

/** WordPress Administration Bootstrap */
require_once __DIR__ . '/admin.php';

/** WordPress Translation Installation API */
require_once ABSPATH . 'wp-admin/includes/translation-install.php';

$action          = ! empty( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : '';
$user_id         = ! empty( $_REQUEST['user_id'] ) ? absint( $_REQUEST['user_id'] ) : 0;
$wp_http_referer = ! empty( $_REQUEST['wp_http_referer'] ) ? sanitize_url( $_REQUEST['wp_http_referer'] ) : '';

$current_user = wp_get_current_user();

if ( ! defined( 'IS_PROFILE_PAGE' ) ) {
	define( 'IS_PROFILE_PAGE', ( $user_id === $current_user->ID ) );
}

if ( ! $user_id && IS_PROFILE_PAGE ) {
	$user_id = $current_user->ID;
} elseif ( ! $user_id && ! IS_PROFILE_PAGE ) {
	wp_die( __( 'Invalid user ID.' ) );
} elseif ( ! get_userdata( $user_id ) ) {
	wp_die( __( 'Invalid user ID.' ) );
}

wp_enqueue_script( 'user-profile' );

if ( wp_is_application_passwords_available_for_user( $user_id ) ) {
	wp_enqueue_script( 'application-passwords' );
}

if ( IS_PROFILE_PAGE ) {
	// Used in the HTML title tag.
	$title = __( 'Profile' );
} else {
	// Used in the HTML title tag.
	/* translators: %s: User's display name. */
	$title = __( 'Edit User %s' );
}

if ( current_user_can( 'edit_users' ) && ! IS_PROFILE_PAGE ) {
	$submenu_file = 'users.php';
} else {
	$submenu_file = 'profile.php';
}

if ( current_user_can( 'edit_users' ) && ! is_user_admin() ) {
	$parent_file = 'users.php';
} else {
	$parent_file = 'profile.php';
}

$profile_help = '<p>' . __( 'Your profile contains information about you (your &#8220;account&#8221;) as well as some personal options related to using WordPress.' ) . '</p>' .
	'<p>' . __( 'You can change your password, turn on keyboard shortcuts, change the color scheme of your WordPress administration screens, and turn off the WYSIWYG (Visual) editor, among other things. You can hide the Toolbar (formerly called the Admin Bar) from the front end of your site, however it cannot be disabled on the admin screens.' ) . '</p>' .
	'<p>' . __( 'You can select the language you wish to use while using the WordPress administration screen without affecting the language site visitors see.' ) . '</p>' .
	'<p>' . __( 'Your username cannot be changed, but you can use other fields to enter your real name or a nickname, and change which name to display on your posts.' ) . '</p>' .
	'<p>' . __( 'You can log out of other devices, such as your phone or a public computer, by clicking the Log Out Everywhere Else button.' ) . '</p>' .
	'<p>' . __( 'Required fields are indicated; the rest are optional. Profile information will only be displayed if your theme is set up to do so.' ) . '</p>' .
	'<p>' . __( 'Remember to click the Update Profile button when you are finished.' ) . '</p>';

get_current_screen()->add_help_tab(
	array(
		'id'      => 'overview',
		'title'   => __( 'Overview' ),
		'content' => $profile_help,
	)
);

get_current_screen()->set_help_sidebar(
	'<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
	'<p>' . __( '<a href="https://wordpress.org/documentation/article/users-your-profile-screen/">Documentation on User Profiles</a>' ) . '</p>' .
	'<p>' . __( '<a href="https://wordpress.org/support/forums/">Support forums</a>' ) . '</p>'
);

$wp_http_referer = remove_query_arg( array( 'update', 'delete_count', 'user_id' ), $wp_http_referer );

$user_can_edit = current_user_can( 'edit_posts' ) || current_user_can( 'edit_pages' );

/**
 * Filters whether to allow administrators on Multisite to edit every user.
 *
 * Enabling the user editing form via this filter also hinges on the user holding
 * the 'manage_network_users' cap, and the logged-in user not matching the user
 * profile open for editing.
 *
 * The filter was introduced to replace the EDIT_ANY_USER constant.
 *
 * @since 3.0.0
 *
 * @param bool $allow Whether to allow editing of any user. Default true.
 */
if ( is_multisite()
	&& ! current_user_can( 'manage_network_users' )
	&& $user_id !== $current_user->ID
	&& ! apply_filters( 'enable_edit_any_user_configuration', true )
) {
	wp_die( __( 'Sorry, you are not allowed to edit this user.' ) );
}

// Execute confirmed email change. See send_confirmation_on_profile_email().
if ( IS_PROFILE_PAGE && isset( $_GET['newuseremail'] ) && $current_user->ID ) {
	$new_email = get_user_meta( $current_user->ID, '_new_email', true );
	if ( $new_email && hash_equals( $new_email['hash'], $_GET['newuseremail'] ) ) {
		$user             = new stdClass();
		$user->ID         = $current_user->ID;
		$user->user_email = esc_html( trim( $new_email['newemail'] ) );
		if ( is_multisite() && $wpdb->get_var( $wpdb->prepare( "SELECT user_login FROM {$wpdb->signups} WHERE user_login = %s", $current_user->user_login ) ) ) {
			$wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->signups} SET user_email = %s WHERE user_login = %s", $user->user_email, $current_user->user_login ) );
		}
		wp_update_user( $user );
		delete_user_meta( $current_user->ID, '_new_email' );
		wp_redirect( add_query_arg( array( 'updated' => 'true' ), self_admin_url( 'profile.php' ) ) );
		die();
	} else {
		wp_redirect( add_query_arg( array( 'error' => 'new-email' ), self_admin_url( 'profile.php' ) ) );
	}
} elseif ( IS_PROFILE_PAGE && ! empty( $_GET['dismiss'] ) && $current_user->ID . '_new_email' === $_GET['dismiss'] ) {
	check_admin_referer( 'dismiss-' . $current_user->ID . '_new_email' );
	delete_user_meta( $current_user->ID, '_new_email' );
	wp_redirect( add_query_arg( array( 'updated' => 'true' ), self_admin_url( 'profile.php' ) ) );
	die();
}

switch ( $action ) {
	case 'update':
		check_admin_referer( 'update-user_' . $user_id );

		if ( ! current_user_can( 'edit_user', $user_id ) ) {
			wp_die( __( 'Sorry, you are not allowed to edit this user.' ) );
		}

		if ( IS_PROFILE_PAGE ) {
			/**
			 * Fires before the page loads on the 'Profile' editing screen.
			 *
			 * The action only fires if the current user is editing their own profile.
			 *
			 * @since 2.0.0
			 *
			 * @param int $user_id The user ID.
			 */
			do_action( 'personal_options_update', $user_id );
		} else {
			/**
			 * Fires before the page loads on the 'Edit User' screen.
			 *
			 * @since 2.7.0
			 *
			 * @param int $user_id The user ID.
			 */
			do_action( 'edit_user_profile_update', $user_id );
		}

		// Update the email address in signups, if present.
		if ( is_multisite() ) {
			$user = get_userdata( $user_id );

			if ( $user->user_login && isset( $_POST['email'] ) && is_email( $_POST['email'] ) && $wpdb->get_var( $wpdb->prepare( "SELECT user_login FROM {$wpdb->signups} WHERE user_login = %s", $user->user_login ) ) ) {
				$wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->signups} SET user_email = %s WHERE user_login = %s", $_POST['email'], $user_login ) );
			}
		}

		// Update the user.
		$errors = edit_user( $user_id );

		// Grant or revoke super admin status if requested.
		if ( is_multisite() && is_network_admin()
			&& ! IS_PROFILE_PAGE && current_user_can( 'manage_network_options' )
			&& ! isset( $super_admins ) && empty( $_POST['super_admin'] ) === is_super_admin( $user_id )
		) {
			empty( $_POST['super_admin'] ) ? revoke_super_admin( $user_id ) : grant_super_admin( $user_id );
		}

		if ( ! is_wp_error( $errors ) ) {
			$redirect = add_query_arg( 'updated', true, get_edit_user_link( $user_id ) );
			if ( $wp_http_referer ) {
				$redirect = add_query_arg( 'wp_http_referer', urlencode( $wp_http_referer ), $redirect );
			}
			wp_redirect( $redirect );
			exit;
		}

		// Intentional fall-through to display $errors.
	default:
		$profile_user = get_user_to_edit( $user_id );

		if ( ! current_user_can( 'edit_user', $user_id ) ) {
			wp_die( __( 'Sorry, you are not allowed to edit this user.' ) );
		}

		$title    = sprintf( $title, $profile_user->display_name );
		$sessions = WP_Session_Tokens::get_instance( $profile_user->ID );

		require_once ABSPATH . 'wp-admin/admin-header.php';
		?>

		<?php
		if ( ! IS_PROFILE_PAGE && is_super_admin( $profile_user->ID ) && current_user_can( 'manage_network_options' ) ) :
			$message = '<strong>' . __( 'Important:' ) . '</strong> ' . __( 'This user has super admin privileges.' );
			wp_admin_notice(
				$message,
				array(
					'type' => 'info',
				)
			);
		endif;

		if ( isset( $_GET['updated'] ) ) :
			if ( IS_PROFILE_PAGE ) :
				$message = '<p><strong>' . __( 'Profile updated.' ) . '</strong></p>';
			else :
				$message = '<p><strong>' . __( 'User updated.' ) . '</strong></p>';
			endif;
			if ( $wp_http_referer && ! str_contains( $wp_http_referer, 'user-new.php' ) && ! IS_PROFILE_PAGE ) :
				$message .= sprintf(
					'<p><a href="%1$s">%2$s</a></p>',
					esc_url( wp_validate_redirect( sanitize_url( $wp_http_referer ), self_admin_url( 'users.php' ) ) ),
					__( '&larr; Go to Users' )
				);
			endif;
			wp_admin_notice(
				$message,
				array(
					'id'                 => 'message',
					'dismissible'        => true,
					'additional_classes' => array( 'updated' ),
					'paragraph_wrap'     => false,
				)
			);
		endif;

		if ( isset( $_GET['error'] ) ) :
			$message = '';
			if ( 'new-email' === $_GET['error'] ) :
				$message = __( 'Error while saving the new email address. Please try again.' );
			endif;
			wp_admin_notice(
				$message,
				array(
					'type' => 'error',
				)
			);
		endif;

		if ( isset( $errors ) && is_wp_error( $errors ) ) {
			wp_admin_notice(
				implode( "</p>\n<p>", $errors->get_error_messages() ),
				array(
					'additional_classes' => array( 'error' ),
				)
			);
		}
		?>

		<div class="wrap" id="profile-page">
			<h1 class="wp-heading-inline">
					<?php echo esc_html( $title ); ?>
			</h1>

			<?php if ( ! IS_PROFILE_PAGE ) : ?>
				<?php if ( current_user_can( 'create_users' ) ) : ?>
					<a href="user-new.php" class="page-title-action"><?php echo esc_html__( 'Add User' ); ?></a>
				<?php elseif ( is_multisite() && current_user_can( 'promote_users' ) ) : ?>
					<a href="user-new.php" class="page-title-action"><?php echo esc_html__( 'Add Existing User' ); ?></a>
				<?php endif; ?>
			<?php endif; ?>

			<hr class="wp-header-end">

			<form id="your-profile" action="<?php echo esc_url( self_admin_url( IS_PROFILE_PAGE ? 'profile.php' : 'user-edit.php' ) ); ?>" method="post" novalidate="novalidate"
				<?php
				/**
				 * Fires inside the your-profile form tag on the user editing screen.
				 *
				 * @since 3.0.0
				 */
				do_action( 'user_edit_form_tag' );
				?>
				>
				<?php wp_nonce_field( 'update-user_' . $user_id ); ?>
				<?php if ( $wp_http_referer ) : ?>
					<input type="hidden" name="wp_http_referer" value="<?php echo esc_url( $wp_http_referer ); ?>" />
				<?php endif; ?>
				<p>
					<input type="hidden" name="from" value="profile" />
					<input type="hidden" name="checkuser_id" value="<?php echo get_current_user_id(); ?>" />
				</p>

				<h2><?php _e( 'Personal Options' ); ?></h2>

				<table class="form-table" role="presentation">
					<?php if ( ! ( IS_PROFILE_PAGE && ! $user_can_edit ) && 'false' === $profile_user->rich_editing ) : ?>
						<tr class="user-rich-editing-wrap">
							<th scope="row"><?php _e( 'Visual Editor' ); ?></th>
							<td>
								<label for="rich_editing"><input name="rich_editing" type="checkbox" id="rich_editing" value="false" <?php checked( 'false', $profile_user->rich_editing ); ?> />
									<?php _e( 'Disable the visual editor when writing' ); ?>
								</label>
							</td>
						</tr>
					<?php endif; ?>

					<?php
					$show_syntax_highlighting_preference = (
					// For Custom HTML widget and Additional CSS in Customizer.
					user_can( $profile_user, 'edit_theme_options' )
					||
					// Edit plugins.
					user_can( $profile_user, 'edit_plugins' )
					||
					// Edit themes.
					user_can( $profile_user, 'edit_themes' )
					);
					?>

					<?php if ( $show_syntax_highlighting_preference ) : ?>
					<tr class="user-syntax-highlighting-wrap">
						<th scope="row"><?php _e( 'Syntax Highlighting' ); ?></th>
						<td>
							<label for="syntax_highlighting"><input name="syntax_highlighting" type="checkbox" id="syntax_highlighting" value="false" <?php checked( 'false', $profile_user->syntax_highlighting ); ?> />
								<?php _e( 'Disable syntax highlighting when editing code' ); ?>
							</label>
						</td>
					</tr>
					<?php endif; ?>

					<?php if ( count( $_wp_admin_css_colors ) > 1 && has_action( 'admin_color_scheme_picker' ) ) : ?>
					<tr class="user-admin-color-wrap">
						<th scope="row"><?php _e( 'Administration Color Scheme' ); ?></th>
						<td>
							<?php
							/**
							 * Fires in the 'Administration Color Scheme' section of the user editing screen.
							 *
							 * The section is only enabled if a callback is hooked to the action,
							 * and if there is more than one defined color scheme for the admin.
							 *
							 * @since 3.0.0
							 * @since 3.8.1 Added `$user_id` parameter.
							 *
							 * @param int $user_id The user ID.
							 */
							do_action( 'admin_color_scheme_picker', $user_id );
							?>
						</td>
					</tr>
					<?php endif; // End if count ( $_wp_admin_css_colors ) > 1 ?>

					<?php if ( ! ( IS_PROFILE_PAGE && ! $user_can_edit ) ) : ?>
					<tr class="user-comment-shortcuts-wrap">
						<th scope="row"><?php _e( 'Keyboard Shortcuts' ); ?></th>
						<td>
							<label for="comment_shortcuts">
								<input type="checkbox" name="comment_shortcuts" id="comment_shortcuts" value="true" <?php checked( 'true', $profile_user->comment_shortcuts ); ?> />
								<?php _e( 'Enable keyboard shortcuts for comment moderation.' ); ?>
							</label>
							<?php _e( '<a href="https://wordpress.org/documentation/article/keyboard-shortcuts-classic-editor/#keyboard-shortcuts-for-comments">Documentation on Keyboard Shortcuts</a>' ); ?>
						</td>
					</tr>
					<?php endif; ?>

					<tr class="show-admin-bar user-admin-bar-front-wrap">
						<th scope="row"><?php _e( 'Toolbar' ); ?></th>
						<td>
							<label for="admin_bar_front">
								<input name="admin_bar_front" type="checkbox" id="admin_bar_front" value="1"<?php checked( _get_admin_bar_pref( 'front', $profile_user->ID ) ); ?> />
								<?php _e( 'Show Toolbar when viewing site' ); ?>
							</label><br />
						</td>
					</tr>

					<?php
					$languages                = get_available_languages();
					$can_install_translations = current_user_can( 'install_languages' ) && wp_can_install_language_pack();
					?>
					<?php if ( $languages || $can_install_translations ) : ?>
					<tr class="user-language-wrap">
						<th scope="row">
							<?php /* translators: The user language selection field label. */ ?>
							<label for="locale"><?php _e( 'Language' ); ?><span class="dashicons dashicons-translation" aria-hidden="true"></span></label>
						</th>
						<td>
							<?php
								$user_locale = $profile_user->locale;

							if ( 'en_US' === $user_locale ) {
								$user_locale = '';
							} elseif ( '' === $user_locale || ! in_array( $user_locale, $languages, true ) ) {
								$user_locale = 'site-default';
							}

							wp_dropdown_languages(
								array(
									'name'      => 'locale',
									'id'        => 'locale',
									'selected'  => $user_locale,
									'languages' => $languages,
									'show_available_translations' => $can_install_translations,
									'show_option_site_default' => true,
								)
							);
							?>
						</td>
					</tr>
					<?php endif; ?>

					<?php
					/**
					 * Fires at the end of the 'Personal Options' settings table on the user editing screen.
					 *
					 * @since 2.7.0
					 *
					 * @param WP_User $profile_user The current WP_User object.
					 */
					do_action( 'personal_options', $profile_user );
					?>

				</table>
				<?php
				if ( IS_PROFILE_PAGE ) {
					/**
					 * Fires after the 'Personal Options' settings table on the 'Profile' editing screen.
					 *
					 * The action only fires if the current user is editing their own profile.
					 *
					 * @since 2.0.0
					 *
					 * @param WP_User $profile_user The current WP_User object.
					 */
					do_action( 'profile_personal_options', $profile_user );
				}
				?>

				<h2><?php _e( 'Name' ); ?></h2>

				<table class="form-table" role="presentation">
					<tr class="user-user-login-wrap">
						<th><label for="user_login"><?php _e( 'Username' ); ?></label></th>
						<td><input type="text" name="user_login" id="user_login" value="<?php echo esc_attr( $profile_user->user_login ); ?>" readonly="readonly" class="regular-text ltr" /> <span class="description"><?php _e( 'Usernames cannot be changed.' ); ?></span></td>
					</tr>

					<?php if ( ! IS_PROFILE_PAGE && ! is_network_admin() && current_user_can( 'promote_user', $profile_user->ID ) ) : ?>
						<tr class="user-role-wrap">
							<th><label for="role"><?php _e( 'Role' ); ?></label></th>
							<td>
								<select name="role" id="role">
									<?php
									// Compare user role against currently editable roles.
									$user_roles = array_intersect( array_values( $profile_user->roles ), array_keys( get_editable_roles() ) );
									$user_role  = reset( $user_roles );

									// Print the full list of roles with the primary one selected.
									wp_dropdown_roles( $user_role );

									// Print the 'no role' option. Make it selected if the user has no role yet.
									if ( $user_role ) {
										echo '<option value="">' . __( '&mdash; No role for this site &mdash;' ) . '</option>';
									} else {
										echo '<option value="" selected="selected">' . __( '&mdash; No role for this site &mdash;' ) . '</option>';
									}
									?>
							</select>
							</td>
						</tr>
					<?php endif; // End if ! IS_PROFILE_PAGE. ?>

					<?php if ( is_multisite() && is_network_admin() && ! IS_PROFILE_PAGE && ! isset( $super_admins ) ) : ?>
						<tr class="user-super-admin-wrap">
							<th><?php _e( 'Super Admin' ); ?></th>
							<td>
								<p><label><input type="checkbox" id="super_admin" name="super_admin"<?php checked( is_super_admin( $profile_user->ID ) ); ?> /> <?php _e( 'Grant this user super admin privileges for the Network.' ); ?></label></p>
							</td>
						</tr>
					<?php endif; ?>

					<tr class="user-first-name-wrap">
						<th><label for="first_name"><?php _e( 'First Name' ); ?></label></th>
						<td>
						<?php if ( IS_PROFILE_PAGE ) : ?>
							<input type="text" name="first_name" id="first_name" value="<?php echo esc_attr( $profile_user->first_name ); ?>" autocomplete="given-name" class="regular-text" />
						<?php else : ?>
							<input type="text" name="first_name" id="first_name" value="<?php echo esc_attr( $profile_user->first_name ); ?>" class="regular-text" />
						<?php endif; ?>
						</td>
					</tr>

					<tr class="user-last-name-wrap">
						<th><label for="last_name"><?php _e( 'Last Name' ); ?></label></th>
						<td>
						<?php if ( IS_PROFILE_PAGE ) : ?>
							<input type="text" name="last_name" id="last_name" value="<?php echo esc_attr( $profile_user->last_name ); ?>" autocomplete="family-name" class="regular-text" />
						<?php else : ?>
							<input type="text" name="last_name" id="last_name" value="<?php echo esc_attr( $profile_user->last_name ); ?>" class="regular-text" />
						<?php endif; ?>
						</td>
					</tr>

					<tr class="user-nickname-wrap">
						<th><label for="nickname"><?php _e( 'Nickname' ); ?> <span class="description"><?php _e( '(required)' ); ?></span></label></th>
						<td>
						<?php if ( IS_PROFILE_PAGE ) : ?>
							<input type="text" name="nickname" id="nickname" value="<?php echo esc_attr( $profile_user->nickname ); ?>" autocomplete="nickname" class="regular-text" />
						<?php else : ?>
							<input type="text" name="nickname" id="nickname" value="<?php echo esc_attr( $profile_user->nickname ); ?>" class="regular-text" />
						<?php endif; ?>
						</td>
					</tr>

					<tr class="user-display-name-wrap">
						<th>
							<label for="display_name"><?php _e( 'Display name publicly as' ); ?></label>
						</th>
						<td>
							<select name="display_name" id="display_name">
								<?php
									$public_display                     = array();
									$public_display['display_nickname'] = $profile_user->nickname;
									$public_display['display_username'] = $profile_user->user_login;

								if ( ! empty( $profile_user->first_name ) ) {
									$public_display['display_firstname'] = $profile_user->first_name;
								}

								if ( ! empty( $profile_user->last_name ) ) {
									$public_display['display_lastname'] = $profile_user->last_name;
								}

								if ( ! empty( $profile_user->first_name ) && ! empty( $profile_user->last_name ) ) {
									$public_display['display_firstlast'] = $profile_user->first_name . ' ' . $profile_user->last_name;
									$public_display['display_lastfirst'] = $profile_user->last_name . ' ' . $profile_user->first_name;
								}

								if ( ! in_array( $profile_user->display_name, $public_display, true ) ) { // Only add this if it isn't duplicated elsewhere.
									$public_display = array( 'display_displayname' => $profile_user->display_name ) + $public_display;
								}

								$public_display = array_map( 'trim', $public_display );
								$public_display = array_unique( $public_display );

								?>
								<?php foreach ( $public_display as $id => $item ) : ?>
									<option <?php selected( $profile_user->display_name, $item ); ?>><?php echo $item; ?></option>
								<?php endforeach; ?>
							</select>
						</td>
					</tr>
				</table>

				<h2><?php _e( 'Contact Info' ); ?></h2>

				<table class="form-table" role="presentation">
					<tr class="user-email-wrap">
						<th><label for="email"><?php _e( 'Email' ); ?> <span class="description"><?php _e( '(required)' ); ?></span></label></th>
						<td>
							<?php if ( $profile_user->ID === $current_user->ID ) : ?>
								<input type="email" name="email" id="email" aria-describedby="email-description" value="<?php echo esc_attr( $profile_user->user_email ); ?>" autocomplete="email" class="regular-text ltr" />
								<p class="description" id="email-description">
									<?php _e( 'If you change this, an email will be sent at your new address to confirm it. <strong>The new address will not become active until confirmed.</strong>' ); ?>
								</p>
							<?php else : ?>
								<input type="email" name="email" id="email" value="<?php echo esc_attr( $profile_user->user_email ); ?>" class="regular-text ltr" />
							<?php endif; ?>

							<?php
							$new_email = get_user_meta( $current_user->ID, '_new_email', true );
							if ( $new_email && $new_email['newemail'] !== $current_user->user_email && $profile_user->ID === $current_user->ID ) :

								$pending_change_message = sprintf(
									/* translators: %s: New email. */
									__( 'There is a pending change of your email to %s.' ),
									'<code>' . esc_html( $new_email['newemail'] ) . '</code>'
								);
								$pending_change_message .= sprintf(
									' <a href="%1$s">%2$s</a>',
									esc_url( wp_nonce_url( self_admin_url( 'profile.php?dismiss=' . $current_user->ID . '_new_email' ), 'dismiss-' . $current_user->ID . '_new_email' ) ),
									__( 'Cancel' )
								);
								wp_admin_notice(
									$pending_change_message,
									array(
										'additional_classes' => array( 'updated', 'inline' ),
									)
								);
							endif;
							?>
						</td>
					</tr>

					<tr class="user-url-wrap">
						<th><label for="url"><?php _e( 'Website' ); ?></label></th>
						<td><input type="url" name="url" id="url" value="<?php echo esc_attr( $profile_user->user_url ); ?>" class="regular-text code" /></td>
					</tr>

					<?php foreach ( wp_get_user_contact_methods( $profile_user ) as $name => $desc ) : ?>
					<tr class="user-<?php echo $name; ?>-wrap">
						<th>
							<label for="<?php echo $name; ?>">
							<?php
							/**
							 * Filters a user contactmethod label.
							 *
							 * The dynamic portion of the hook name, `$name`, refers to
							 * each of the keys in the contact methods array.
							 *
							 * @since 2.9.0
							 *
							 * @param string $desc The translatable label for the contact method.
							 */
							echo apply_filters( "user_{$name}_label", $desc );
							?>
							</label>
						</th>
						<td>
							<input type="text" name="<?php echo $name; ?>" id="<?php echo $name; ?>" value="<?php echo esc_attr( $profile_user->$name ); ?>" class="regular-text" />
						</td>
					</tr>
					<?php endforeach; ?>
				</table>

				<h2><?php IS_PROFILE_PAGE ? _e( 'About Yourself' ) : _e( 'About the user' ); ?></h2>

				<table class="form-table" role="presentation">
					<tr class="user-description-wrap">
						<th><label for="description"><?php _e( 'Biographical Info' ); ?></label></th>
						<td><textarea name="description" id="description" rows="5" cols="30"><?php echo $profile_user->description; // textarea_escaped ?></textarea>
						<p class="description"><?php _e( 'Share a little biographical information to fill out your profile. This may be shown publicly.' ); ?></p></td>
					</tr>

					<?php if ( get_option( 'show_avatars' ) ) : ?>
						<tr class="user-profile-picture">
							<th><?php _e( 'Profile Picture' ); ?></th>
							<td>
								<?php echo get_avatar( $user_id ); ?>
								<p class="description">
									<?php
									if ( IS_PROFILE_PAGE ) {
										$description = sprintf(
											/* translators: %s: Gravatar URL. */
											__( '<a href="%s">You can change your profile picture on Gravatar</a>.' ),
											/* translators: The localized Gravatar URL. */
											__( 'https://gravatar.com/' )
										);
									} else {
										$description = '';
									}

									/**
									 * Filters the user profile picture description displayed under the Gravatar.
									 *
									 * @since 4.4.0
									 * @since 4.7.0 Added the `$profile_user` parameter.
									 *
									 * @param string  $description  The description that will be printed.
									 * @param WP_User $profile_user The current WP_User object.
									 */
									echo apply_filters( 'user_profile_picture_description', $description, $profile_user );
									?>
								</p>
							</td>
						</tr>
					<?php endif; ?>
					<?php
					/**
					 * Filters the display of the password fields.
					 *
					 * @since 1.5.1
					 * @since 2.8.0 Added the `$profile_user` parameter.
					 * @since 4.4.0 Now evaluated only in user-edit.php.
					 *
					 * @param bool    $show         Whether to show the password fields. Default true.
					 * @param WP_User $profile_user User object for the current user to edit.
					 */
					$show_password_fields = apply_filters( 'show_password_fields', true, $profile_user );
					?>
					<?php if ( $show_password_fields ) : ?>
						</table>

						<h2><?php _e( 'Account Management' ); ?></h2>

						<table class="form-table" role="presentation">
							<tr id="password" class="user-pass1-wrap">
								<th><label for="pass1"><?php _e( 'New Password' ); ?></label></th>
								<td>
									<input type="hidden" value=" " /><!-- #24364 workaround -->
									<button type="button" class="button wp-generate-pw hide-if-no-js" aria-expanded="false"><?php _e( 'Set New Password' ); ?></button>
									<div class="wp-pwd hide-if-js">
										<div class="password-input-wrapper">
											<input type="password" name="pass1" id="pass1" class="regular-text ltr" value="" autocomplete="new-password" spellcheck="false" data-pw="<?php echo esc_attr( wp_generate_password( 24 ) ); ?>" aria-describedby="pass-strength-result" />
											<div style="display:none" id="pass-strength-result" aria-live="polite"></div>
										</div>
										<button type="button" class="button wp-hide-pw user-new-password-toggle hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Hide password' ); ?>">
											<span class="dashicons dashicons-hidden" aria-hidden="true"></span>
											<span class="text"><?php _e( 'Hide' ); ?></span>
										</button>
										<button type="button" class="button wp-cancel-pw hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Cancel password change' ); ?>">
											<span class="dashicons dashicons-no" aria-hidden="true"></span>
											<span class="text"><?php _e( 'Cancel' ); ?></span>
										</button>
									</div>
								</td>
							</tr>
							<tr class="user-pass2-wrap hide-if-js">
								<th scope="row"><label for="pass2"><?php _e( 'Repeat New Password' ); ?></label></th>
								<td>
								<input type="password" name="pass2" id="pass2" class="regular-text" value="" autocomplete="new-password" spellcheck="false" aria-describedby="pass2-desc" />
									<?php if ( IS_PROFILE_PAGE ) : ?>
										<p class="description" id="pass2-desc"><?php _e( 'Type your new password again.' ); ?></p>
									<?php else : ?>
										<p class="description" id="pass2-desc"><?php _e( 'Type the new password again.' ); ?></p>
									<?php endif; ?>
								</td>
							</tr>
							<tr class="pw-weak">
								<th><?php _e( 'Confirm Password' ); ?></th>
								<td>
									<label>
										<input type="checkbox" name="pw_weak" class="pw-checkbox" />
										<span id="pw-weak-text-label"><?php _e( 'Confirm use of weak password' ); ?></span>
									</label>
								</td>
							</tr>
							<?php endif; // End Show Password Fields. ?>

							<?php // Allow admins to send reset password link. ?>
							<?php if ( ! IS_PROFILE_PAGE && true === wp_is_password_reset_allowed_for_user( $profile_user ) ) : ?>
								<tr class="user-generate-reset-link-wrap hide-if-no-js">
									<th><?php _e( 'Password Reset' ); ?></th>
									<td>
										<div class="generate-reset-link">
											<button type="button" class="button button-secondary" id="generate-reset-link">
												<?php _e( 'Send Reset Link' ); ?>
											</button>
										</div>
										<p class="description">
											<?php
											printf(
												/* translators: %s: User's display name. */
												__( 'Send %s a link to reset their password. This will not change their password, nor will it force a change.' ),
												esc_html( $profile_user->display_name )
											);
											?>
										</p>
									</td>
								</tr>
							<?php endif; ?>

							<?php if ( IS_PROFILE_PAGE && count( $sessions->get_all() ) === 1 ) : ?>
								<tr class="user-sessions-wrap hide-if-no-js">
									<th><?php _e( 'Sessions' ); ?></th>
									<td aria-live="assertive">
										<div class="destroy-sessions"><button type="button" disabled class="button"><?php _e( 'Log Out Everywhere Else' ); ?></button></div>
										<p class="description">
											<?php _e( 'You are only logged in at this location.' ); ?>
										</p>
									</td>
								</tr>
							<?php elseif ( IS_PROFILE_PAGE && count( $sessions->get_all() ) > 1 ) : ?>
								<tr class="user-sessions-wrap hide-if-no-js">
									<th><?php _e( 'Sessions' ); ?></th>
									<td aria-live="assertive">
										<div class="destroy-sessions"><button type="button" class="button" id="destroy-sessions"><?php _e( 'Log Out Everywhere Else' ); ?></button></div>
										<p class="description">
											<?php _e( 'Did you lose your phone or leave your account logged in at a public computer? You can log out everywhere else, and stay logged in here.' ); ?>
										</p>
									</td>
								</tr>
							<?php elseif ( ! IS_PROFILE_PAGE && $sessions->get_all() ) : ?>
								<tr class="user-sessions-wrap hide-if-no-js">
									<th><?php _e( 'Sessions' ); ?></th>
									<td>
										<p><button type="button" class="button" id="destroy-sessions"><?php _e( 'Log Out Everywhere' ); ?></button></p>
										<p class="description">
											<?php
											/* translators: %s: User's display name. */
											printf( __( 'Log %s out of all locations.' ), $profile_user->display_name );
											?>
										</p>
									</td>
								</tr>
							<?php endif; ?>
						</table>

					<?php if ( wp_is_application_passwords_available_for_user( $user_id ) || ! wp_is_application_passwords_supported() ) : ?>
						<div class="application-passwords hide-if-no-js" id="application-passwords-section">
							<h2><?php _e( 'Application Passwords' ); ?></h2>
							<p><?php _e( 'Application passwords allow authentication via non-interactive systems, such as XML-RPC or the REST API, without providing your actual password. Application passwords can be easily revoked. They cannot be used for traditional logins to your website.' ); ?></p>
							<?php if ( wp_is_application_passwords_available_for_user( $user_id ) ) : ?>
								<?php
								if ( is_multisite() ) :
									$blogs       = get_blogs_of_user( $user_id, true );
									$blogs_count = count( $blogs );

									if ( $blogs_count > 1 ) :
										?>
										<p>
											<?php
											/* translators: 1: URL to my-sites.php, 2: Number of sites the user has. */
											$message = _n(
												'Application passwords grant access to <a href="%1$s">the %2$s site in this installation that you have permissions on</a>.',
												'Application passwords grant access to <a href="%1$s">all %2$s sites in this installation that you have permissions on</a>.',
												$blogs_count
											);

											if ( is_super_admin( $user_id ) ) {
												/* translators: 1: URL to my-sites.php, 2: Number of sites the user has. */
												$message = _n(
													'Application passwords grant access to <a href="%1$s">the %2$s site on the network as you have Super Admin rights</a>.',
													'Application passwords grant access to <a href="%1$s">all %2$s sites on the network as you have Super Admin rights</a>.',
													$blogs_count
												);
											}

											printf(
												$message,
												admin_url( 'my-sites.php' ),
												number_format_i18n( $blogs_count )
											);
											?>
										</p>
										<?php
									endif;
								endif;
								?>

								<?php if ( ! wp_is_site_protected_by_basic_auth( 'front' ) ) : ?>
									<div class="create-application-password form-wrap">
										<div class="form-field">
											<label for="new_application_password_name"><?php _e( 'New Application Password Name' ); ?></label>
											<input type="text" size="30" id="new_application_password_name" name="new_application_password_name" class="input ltr" aria-required="true" aria-describedby="new_application_password_name_desc" spellcheck="false" />
											<p class="description" id="new_application_password_name_desc"><?php _e( 'Required to create an Application Password, but not to update the user.' ); ?></p>
										</div>

										<?php
										/**
										 * Fires in the create Application Passwords form.
										 *
										 * @since 5.6.0
										 *
										 * @param WP_User $profile_user The current WP_User object.
										 */
										do_action( 'wp_create_application_password_form', $profile_user );
										?>

										<button type="button" name="do_new_application_password" id="do_new_application_password" class="button button-secondary"><?php _e( 'Add Application Password' ); ?></button>
									</div>
									<?php
								else :
									wp_admin_notice(
										__( 'Your website appears to use Basic Authentication, which is not currently compatible with Application Passwords.' ),
										array(
											'type' => 'error',
											'additional_classes' => array( 'inline' ),
										)
									);
								endif;
								?>

								<div class="application-passwords-list-table-wrapper">
									<?php
									$application_passwords_list_table = _get_list_table( 'WP_Application_Passwords_List_Table', array( 'screen' => 'application-passwords-user' ) );
									$application_passwords_list_table->prepare_items();
									$application_passwords_list_table->display();
									?>
								</div>
							<?php elseif ( ! wp_is_application_passwords_supported() ) : ?>
								<p><?php _e( 'The application password feature requires HTTPS, which is not enabled on this site.' ); ?></p>
								<p>
									<?php
									printf(
										/* translators: %s: Documentation URL. */
										__( 'If this is a development website, you can <a href="%s">set the environment type accordingly</a> to enable application passwords.' ),
										__( 'https://developer.wordpress.org/apis/wp-config-php/#wp-environment-type' )
									);
									?>
								</p>
							<?php endif; ?>
						</div>
					<?php endif; // End Application Passwords. ?>

					<?php
					if ( IS_PROFILE_PAGE ) {
						/**
						 * Fires after the 'Application Passwords' section is loaded on the 'Profile' editing screen.
						 *
						 * The action only fires if the current user is editing their own profile.
						 *
						 * @since 2.0.0
						 *
						 * @param WP_User $profile_user The current WP_User object.
						 */
						do_action( 'show_user_profile', $profile_user );
					} else {
						/**
						 * Fires after the 'Application Passwords' section is loaded on 'Edit User' screen.
						 *
						 * The action only fires if the current user is editing another user's profile.
						 *
						 * @since 2.0.0
						 *
						 * @param WP_User $profile_user The current WP_User object.
						 */
						do_action( 'edit_user_profile', $profile_user );
					}
					?>

					<?php
					/**
					 * Filters whether to display additional capabilities for the user.
					 *
					 * The 'Additional Capabilities' section will only be enabled if
					 * the number of the user's capabilities exceeds their number of
					 * roles.
					 *
					 * @since 2.8.0
					 *
					 * @param bool    $enable      Whether to display the capabilities. Default true.
					 * @param WP_User $profile_user The current WP_User object.
					 */
					$display_additional_caps = apply_filters( 'additional_capabilities_display', true, $profile_user );
					?>

				<?php if ( count( $profile_user->caps ) > count( $profile_user->roles ) && ( true === $display_additional_caps ) ) : ?>
					<h2><?php _e( 'Additional Capabilities' ); ?></h2>

					<table class="form-table" role="presentation">
						<tr class="user-capabilities-wrap">
							<th scope="row"><?php _e( 'Capabilities' ); ?></th>
							<td>
								<?php
								$output = '';
								foreach ( $profile_user->caps as $cap => $value ) {
									if ( ! $wp_roles->is_role( $cap ) ) {
										if ( '' !== $output ) {
											$output .= ', ';
										}

										if ( $value ) {
											$output .= $cap;
										} else {
											/* translators: %s: Capability name. */
											$output .= sprintf( __( 'Denied: %s' ), $cap );
										}
									}
								}
								echo $output;
								?>
							</td>
						</tr>
					</table>
				<?php endif; // End Display Additional Capabilities. ?>

				<input type="hidden" name="action" value="update" />
				<input type="hidden" name="user_id" id="user_id" value="<?php echo esc_attr( $user_id ); ?>" />

				<?php submit_button( IS_PROFILE_PAGE ? __( 'Update Profile' ) : __( 'Update User' ) ); ?>

			</form>
		</div>
		<?php
		break;
}
?>
<script>
	if (window.location.hash == '#password') {
		document.getElementById('pass1').focus();
	}
</script>

<script>
	jQuery( function( $ ) {
		var languageSelect = $( '#locale' );
		$( 'form' ).on( 'submit', function() {
			/*
			 * Don't show a spinner for English and installed languages,
			 * as there is nothing to download.
			 */
			if ( ! languageSelect.find( 'option:selected' ).data( 'installed' ) ) {
				$( '#submit', this ).after( '<span class="spinner language-install-spinner is-active" />' );
			}
		});
	} );
</script>

<?php if ( isset( $application_passwords_list_table ) ) : ?>
	<script type="text/html" id="tmpl-new-application-password">
		<div class="notice notice-success is-dismissible new-application-password-notice" role="alert">
			<p class="application-password-display">
				<label for="new-application-password-value">
					<?php
					printf(
						/* translators: %s: Application name. */
						__( 'Your new password for %s is:' ),
						'<strong>{{ data.name }}</strong>'
					);
					?>
				</label>
				<input id="new-application-password-value" type="text" class="code" readonly="readonly" value="{{ data.password }}" />
				<button type="button" class="button copy-button" data-clipboard-text="{{ data.password }}"><?php _e( 'Copy' ); ?></button>
				<span class="success hidden" aria-hidden="true"><?php _e( 'Copied!' ); ?></span>
			</p>
			<p><?php _e( 'Be sure to save this in a safe location. You will not be able to retrieve it.' ); ?></p>
			<button type="button" class="notice-dismiss">
				<span class="screen-reader-text">
					<?php
					/* translators: Hidden accessibility text. */
					_e( 'Dismiss this notice.' );
					?>
				</span>
			</button>
		</div>
	</script>

	<script type="text/html" id="tmpl-application-password-row">
		<?php $application_passwords_list_table->print_js_template_row(); ?>
	</script>
<?php endif; ?>
<?php
require_once ABSPATH . 'wp-admin/admin-footer.php';


Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
6 Jul 2026 12.50 AM
docteuh / users
0705
01
--
11 Sep 2026 12.02 PM
docteuh / users
0755
02
--
11 Sep 2026 5.43 PM
docteuh / users
0755
03
--
11 Sep 2026 12.25 PM
docteuh / users
0755
04
--
11 Sep 2026 1.15 PM
docteuh / users
0755
05
--
11 Sep 2026 1.15 PM
docteuh / users
0755
06
--
10 Sep 2026 10.25 PM
docteuh / users
0755
07
--
11 Sep 2026 1.15 PM
docteuh / users
0755
12
--
11 Sep 2026 5.43 PM
docteuh / users
0755
2021
--
11 Sep 2026 5.43 PM
docteuh / users
0755
2021-20260911084835
--
11 Sep 2026 10.48 AM
docteuh / users
0755
2023-20260911045434
--
11 Sep 2026 8.29 AM
docteuh / users
0755
2025
--
11 Sep 2026 5.42 PM
docteuh / users
0755
2026
--
11 Sep 2026 7.42 AM
docteuh / users
0755
Argument
--
11 Sep 2026 2.12 AM
docteuh / users
0755
Argument-20260911032559
--
11 Sep 2026 5.26 AM
docteuh / users
0755
Authentication
--
11 Sep 2026 4.12 PM
docteuh / users
0755
Authentication-20260907071123
--
11 Sep 2026 1.27 AM
docteuh / users
0755
Authentication-20260907071123-20260908031747
--
11 Sep 2026 3.18 PM
docteuh / users
0755
Avada
--
11 Sep 2026 1.14 PM
docteuh / users
0755
Cache-20260907200220
--
11 Sep 2026 4.11 AM
docteuh / users
0755
Clients
--
11 Sep 2026 6.49 AM
docteuh / users
0755
Clients-20260907115403
--
10 Sep 2026 1.17 PM
docteuh / users
0755
Dashboard_Sharing
--
11 Sep 2026 6.34 AM
docteuh / users
0755
Exception
--
11 Sep 2026 1.01 PM
docteuh / users
0755
Handler
--
11 Sep 2026 4.13 PM
docteuh / users
0755
Host
--
11 Sep 2026 5.45 PM
docteuh / users
0755
Interfaces
--
11 Sep 2026 11.25 AM
docteuh / users
0755
LE_ACME2Tests
--
11 Sep 2026 1.03 PM
docteuh / users
0755
Modules
--
11 Sep 2026 6.49 AM
docteuh / users
0755
Modules-20260911072123
--
11 Sep 2026 1.42 PM
docteuh / users
0755
Notifications
--
11 Sep 2026 6.44 AM
docteuh / users
0755
PeopleService
--
11 Sep 2026 1.01 PM
docteuh / users
0755
ReCaptcha
--
11 Sep 2026 10.06 AM
docteuh / users
0755
Resources
--
11 Sep 2026 1.01 PM
docteuh / users
0755
Service
--
11 Sep 2026 2.05 PM
docteuh / users
0755
User_Surveys
--
11 Sep 2026 1.03 PM
docteuh / users
0755
Utils
--
11 Sep 2026 7.07 AM
docteuh / users
0755
abilities-20260907120540
--
11 Sep 2026 3.19 PM
docteuh / users
0755
adbario
--
11 Sep 2026 2.05 PM
docteuh / users
0755
add-to-cart
--
11 Sep 2026 11.24 AM
docteuh / users
0755
addon-installation
--
11 Sep 2026 5.26 PM
docteuh / users
0755
admin
--
11 Sep 2026 12.30 PM
docteuh / users
0755
admin-20260907140528
--
11 Sep 2026 5.18 PM
docteuh / users
0755
ai
--
11 Sep 2026 5.18 PM
docteuh / users
0755
alerts
--
11 Sep 2026 4.23 PM
docteuh / users
0755
alerts-20260907050319
--
10 Sep 2026 2.04 PM
docteuh / users
0755
analysis-features
--
11 Sep 2026 5.22 PM
docteuh / users
0755
analytics-20260907190919
--
11 Sep 2026 3.19 PM
docteuh / users
0755
apiclient
--
11 Sep 2026 10.20 AM
docteuh / users
0755
apiclient-services
--
11 Sep 2026 11.59 AM
docteuh / users
0755
application
--
11 Sep 2026 3.33 PM
docteuh / users
0755
application-20260907094900
--
11 Sep 2026 5.23 PM
docteuh / users
0755
assets
--
11 Sep 2026 5.40 AM
docteuh / users
0755
assets-20260907091831
--
11 Sep 2026 3.00 PM
docteuh / users
0755
auth
--
11 Sep 2026 3.19 PM
docteuh / users
0755
bbpress
--
11 Sep 2026 11.17 AM
docteuh / users
0755
blocks
--
11 Sep 2026 4.12 PM
docteuh / users
0755
blocks-20260910233336
--
11 Sep 2026 7.54 AM
docteuh / users
0755
blue-20260907233028
--
11 Sep 2026 6.40 AM
docteuh / users
0755
builders
--
11 Sep 2026 12.25 AM
docteuh / users
0755
bundled-cache-store
--
11 Sep 2026 2.10 PM
docteuh / users
0755
cache
--
11 Sep 2026 5.42 AM
docteuh / users
0755
cache-runtime-store-20260907134315
--
10 Sep 2026 5.39 AM
docteuh / users
0755
cache-state
--
11 Sep 2026 6.49 AM
docteuh / users
0755
cache-store-log
--
11 Sep 2026 10.38 AM
docteuh / users
0755
cache-store-log-20260907191720
--
11 Sep 2026 10.59 AM
docteuh / users
0755
cache-store-unix
--
11 Sep 2026 2.51 PM
docteuh / users
0755
catalog-framework-20260907034611
--
11 Sep 2026 5.44 PM
docteuh / users
0755
cb311
--
22 Jul 2026 12.15 PM
docteuh / users
0555
cgi-bin
--
11 Sep 2026 4.23 PM
docteuh / users
0755
cgi-bin-20260907220744
--
10 Sep 2026 7.43 AM
docteuh / users
0755
cgi_bin
--
11 Sep 2026 5.18 PM
docteuh / users
0755
cli
--
11 Sep 2026 1.04 PM
docteuh / users
0755
cloudflare
--
11 Sep 2026 11.25 AM
docteuh / users
0755
cloudflare-20260907214319
--
11 Sep 2026 5.46 PM
docteuh / users
0755
cloudflare-20260909041339
--
11 Sep 2026 3.29 PM
docteuh / users
0755
collections
--
11 Sep 2026 5.00 PM
docteuh / users
0755
comment-editor
--
11 Sep 2026 4.20 PM
docteuh / users
0755
common-php-session
--
11 Sep 2026 3.33 PM
docteuh / users
0755
components
--
10 Sep 2026 12.20 PM
docteuh / users
0755
compressed-wp-lib
--
11 Sep 2026 11.25 AM
docteuh / users
0755
config-wp-temp
--
11 Sep 2026 5.19 PM
docteuh / users
0755
config-wp-temp-20260830132235
--
11 Sep 2026 2.48 PM
docteuh / users
0755
container
--
11 Sep 2026 8.43 AM
docteuh / users
0755
contracts
--
11 Sep 2026 8.43 AM
docteuh / users
0755
css
--
10 Sep 2026 6.12 PM
docteuh / users
0755
dark-skin
--
11 Sep 2026 5.25 AM
docteuh / users
0755
data-store-wp-storage
--
11 Sep 2026 6.08 AM
docteuh / users
0755
default
--
11 Sep 2026 6.56 AM
docteuh / users
0755
demo-files-20260907024411
--
11 Sep 2026 1.25 AM
docteuh / users
0755
deprecated
--
10 Sep 2026 8.24 AM
docteuh / users
0755
deprecation-contracts
--
11 Sep 2026 6.52 AM
docteuh / users
0755
dimensions
--
11 Sep 2026 5.15 AM
docteuh / users
0755
dist-yarn-cache-20260907182427
--
11 Sep 2026 4.02 PM
docteuh / users
0755
domain
--
10 Sep 2026 5.27 PM
docteuh / users
0755
domain-20260907230447
--
11 Sep 2026 3.00 PM
docteuh / users
0755
dynamic
--
11 Sep 2026 6.49 AM
docteuh / users
0755
dynamic-blocks
--
11 Sep 2026 2.07 AM
docteuh / users
0755
e8d8c08f5b462f766c1a78547086b563
--
11 Sep 2026 1.54 PM
docteuh / users
0755
editors
--
11 Sep 2026 6.49 AM
docteuh / users
0755
encoding-20260907051607
--
11 Sep 2026 3.29 PM
docteuh / users
0755
endpoints
--
11 Sep 2026 10.20 AM
docteuh / users
0755
enhancement
--
11 Sep 2026 10.53 AM
docteuh / users
0755
enhancement-20260907033547
--
11 Sep 2026 5.23 PM
docteuh / users
0755
envhttps
--
11 Sep 2026 4.58 PM
docteuh / users
0755
exceptions-20260907052159
--
11 Sep 2026 3.19 PM
docteuh / users
0755
expiring-store
--
11 Sep 2026 8.40 AM
docteuh / users
0755
ext-opcache
--
11 Sep 2026 8.31 AM
docteuh / users
0755
externals
--
11 Sep 2026 8.43 AM
docteuh / users
0755
f25677
--
11 Sep 2026 5.44 PM
docteuh / users
0755
file-20260907122027
--
11 Sep 2026 1.25 AM
docteuh / users
0755
filtering-20260908005036
--
11 Sep 2026 9.59 AM
docteuh / users
0755
fonts
--
10 Sep 2026 10.47 PM
docteuh / users
0755
front-end
--
11 Sep 2026 9.03 AM
docteuh / users
0755
fusion-app
--
11 Sep 2026 12.11 PM
docteuh / users
0755
fusion-forms
--
10 Sep 2026 3.25 PM
docteuh / users
0755
general
--
11 Sep 2026 11.17 AM
docteuh / users
0755
generator
--
10 Sep 2026 4.54 PM
docteuh / users
0755
generator-20260907183755
--
11 Sep 2026 3.25 PM
docteuh / users
0755
google
--
11 Sep 2026 3.10 PM
docteuh / users
0755
google-20260911100617
--
11 Sep 2026 12.09 PM
docteuh / users
0755
google-site-kit-20260829021215
--
11 Sep 2026 3.23 PM
docteuh / users
0755
google_search_console
--
11 Sep 2026 2.01 PM
docteuh / users
0755
headers
--
11 Sep 2026 12.25 PM
docteuh / users
0755
hg-repository
--
10 Sep 2026 1.17 AM
docteuh / users
0755
i18ns
--
11 Sep 2026 4.46 PM
docteuh / users
0755
iconpicker
--
11 Sep 2026 11.24 AM
docteuh / users
0755
iconpicker-20260907103251
--
11 Sep 2026 3.29 PM
docteuh / users
0755
im010ab2
--
11 Sep 2026 11.37 AM
docteuh / users
0755
images
--
11 Sep 2026 8.16 AM
docteuh / users
0755
img
--
11 Sep 2026 5.44 PM
docteuh / users
0755
includes
--
10 Sep 2026 12.08 PM
docteuh / users
0755
indexable
--
11 Sep 2026 11.35 AM
docteuh / users
0755
indexing
--
11 Sep 2026 4.30 PM
docteuh / users
0755
infrastructure
--
11 Sep 2026 8.25 AM
docteuh / users
0755
inlite
--
11 Sep 2026 4.23 PM
docteuh / users
0755
introductions-20260907222527
--
11 Sep 2026 4.55 AM
docteuh / users
0755
jost
--
11 Sep 2026 4.27 PM
docteuh / users
0755
jost-20260907154615
--
11 Sep 2026 5.13 PM
docteuh / users
0755
jost-20260911111542
--
11 Sep 2026 1.15 PM
docteuh / users
0755
js
--
11 Sep 2026 6.51 AM
docteuh / users
0755
js1ee1b0
--
11 Sep 2026 7.32 AM
docteuh / users
0755
languages
--
11 Sep 2026 6.45 AM
docteuh / users
0755
library
--
11 Sep 2026 11.17 AM
docteuh / users
0755
licensing
--
11 Sep 2026 3.49 PM
docteuh / users
0755
light
--
11 Sep 2026 5.15 PM
docteuh / users
0755
light-20260907063152
--
11 Sep 2026 5.24 PM
docteuh / users
0755
lists
--
10 Sep 2026 11.40 AM
docteuh / users
0755
litespeed-cache-index
--
11 Sep 2026 2.07 AM
docteuh / users
0755
locking
--
11 Sep 2026 11.17 AM
docteuh / users
0755
log
--
11 Sep 2026 5.44 PM
docteuh / users
0755
log-20260907154439
--
11 Sep 2026 4.17 PM
docteuh / users
0755
loggers
--
11 Sep 2026 11.17 AM
docteuh / users
0755
main-diag-20260907032755
--
11 Sep 2026 12.25 AM
docteuh / users
0755
maint-20260907122447
--
11 Sep 2026 3.22 PM
docteuh / users
0755
media-20260907191919
--
11 Sep 2026 5.43 PM
docteuh / users
0755
mediaelement
--
11 Sep 2026 3.15 PM
docteuh / users
0755
memoizers
--
11 Sep 2026 7.13 AM
docteuh / users
0755
memoizers-20260907173128
--
10 Sep 2026 2.18 PM
docteuh / users
0755
meta
--
11 Sep 2026 5.44 PM
docteuh / users
0755
meta-dist
--
11 Sep 2026 1.59 PM
docteuh / users
0755
min
--
11 Sep 2026 5.44 PM
docteuh / users
0755
min-20260907084215
--
11 Sep 2026 4.38 PM
docteuh / users
0755
mod
--
11 Sep 2026 5.44 PM
docteuh / users
0755
models
--
11 Sep 2026 3.10 PM
docteuh / users
0755
modules
--
11 Sep 2026 11.17 AM
docteuh / users
0755
modules-20260911001234
--
11 Sep 2026 1.42 PM
docteuh / users
0755
modules-packed
--
11 Sep 2026 3.13 PM
docteuh / users
0755
myyoast-client
--
10 Sep 2026 1.35 PM
docteuh / users
0755
no-builder
--
11 Sep 2026 4.15 PM
docteuh / users
0755
oauth
--
11 Sep 2026 11.19 AM
docteuh / users
0755
oauth-20260907052927
--
11 Sep 2026 8.44 AM
docteuh / users
0755
open-graph
--
11 Sep 2026 2.08 PM
docteuh / users
0755
optimized-monitor
--
11 Sep 2026 4.29 AM
docteuh / users
0755
options
--
11 Sep 2026 11.14 AM
docteuh / users
0755
package-cache-session
--
11 Sep 2026 5.21 PM
docteuh / users
0755
packages
--
11 Sep 2026 11.00 AM
docteuh / users
0755
parts
--
11 Sep 2026 1.36 PM
docteuh / users
0755
parts-20260907202047
--
11 Sep 2026 5.43 PM
docteuh / users
0755
patterns
--
11 Sep 2026 8.43 AM
docteuh / users
0755
pipe-package-cache
--
11 Sep 2026 5.22 PM
docteuh / users
0755
plugins
--
11 Sep 2026 11.17 AM
docteuh / users
0755
plugins-20260911070316
--
11 Sep 2026 1.42 PM
docteuh / users
0755
plupload
--
11 Sep 2026 5.34 AM
docteuh / users
0755
polyfill-php70
--
11 Sep 2026 5.42 PM
docteuh / users
0755
polyfill-php72
--
11 Sep 2026 11.20 AM
docteuh / users
0755
pro
--
11 Sep 2026 1.04 PM
docteuh / users
0755
profile-git-objects
--
11 Sep 2026 4.04 AM
docteuh / users
0755
progress
--
11 Sep 2026 1.34 PM
docteuh / users
0755
promotions
--
11 Sep 2026 1.22 PM
docteuh / users
0755
providers
--
11 Sep 2026 4.22 PM
docteuh / users
0755
psr
--
11 Sep 2026 1.04 PM
docteuh / users
0755
psr7
--
11 Sep 2026 4.46 PM
docteuh / users
0755
public
--
11 Sep 2026 4.01 PM
docteuh / users
0755
query
--
11 Sep 2026 9.57 AM
docteuh / users
0755
really-simple-ssl
--
11 Sep 2026 5.29 PM
docteuh / users
0755
really-simple-ssl-20260907062815
--
11 Sep 2026 5.08 PM
docteuh / users
0755
recaptcha
--
10 Sep 2026 11.03 AM
docteuh / users
0755
redux
--
11 Sep 2026 5.38 AM
docteuh / users
0755
repositories
--
11 Sep 2026 1.43 PM
docteuh / users
0755
repository-cache-php-tmp
--
11 Sep 2026 10.11 AM
docteuh / users
0755
roboto-slab
--
9 Sep 2026 5.58 PM
docteuh / users
0755
runtime-data-vendor-ext
--
11 Sep 2026 5.09 PM
docteuh / users
0755
runtime-data-wp-resources
--
11 Sep 2026 4.09 AM
docteuh / users
0755
schema-aggregator
--
10 Sep 2026 12.02 PM
docteuh / users
0755
schema-node-filter
--
10 Sep 2026 7.04 PM
docteuh / users
0755
schema_map
--
11 Sep 2026 11.58 AM
docteuh / users
0755
search-api
--
11 Sep 2026 5.44 PM
docteuh / users
0755
security
--
10 Sep 2026 5.34 AM
docteuh / users
0755
seo-pro-20260907200239
--
10 Sep 2026 5.54 PM
docteuh / users
0755
serverhttpxforwardedssl1
--
11 Sep 2026 6.45 AM
docteuh / users
0755
serverhttpxproto
--
11 Sep 2026 11.57 AM
docteuh / users
0755
serverport443
--
11 Sep 2026 1.47 PM
docteuh / users
0755
session-compressed
--
11 Sep 2026 8.29 AM
docteuh / users
0755
settings-modules
--
11 Sep 2026 5.37 AM
docteuh / users
0755
shared-ext-storage
--
11 Sep 2026 2.50 PM
docteuh / users
0755
src
--
11 Sep 2026 1.04 PM
docteuh / users
0755
stubs
--
11 Sep 2026 9.57 AM
docteuh / users
0755
support
--
11 Sep 2026 5.13 PM
docteuh / users
0755
tabs
--
11 Sep 2026 4.27 PM
docteuh / users
0755
templates
--
11 Sep 2026 11.47 AM
docteuh / users
0755
templates-20260907160639
--
10 Sep 2026 10.40 PM
docteuh / users
0755
tests
--
11 Sep 2026 5.15 PM
docteuh / users
0755
testssl
--
11 Sep 2026 11.17 AM
docteuh / users
0755
testssl-20260911051537
--
11 Sep 2026 10.43 AM
docteuh / users
0755
themes
--
10 Sep 2026 12.39 PM
docteuh / users
0755
third-party
--
11 Sep 2026 6.39 AM
docteuh / users
0755
tinymce
--
11 Sep 2026 12.20 PM
docteuh / users
0755
tinymce-20260907173607
--
11 Sep 2026 12.25 PM
docteuh / users
0755
tool
--
11 Sep 2026 5.44 PM
docteuh / users
0755
tribe
--
11 Sep 2026 9.57 AM
docteuh / users
0755
true
--
11 Sep 2026 10.30 AM
docteuh / users
0755
true-20260907234109
--
11 Sep 2026 5.14 PM
docteuh / users
0755
twitter
--
11 Sep 2026 1.18 PM
docteuh / users
0755
unidata
--
11 Sep 2026 2.05 PM
docteuh / users
0755
upgrade
--
11 Sep 2026 12.25 PM
docteuh / users
0755
upgrade-temp-backup
--
11 Sep 2026 2.11 PM
docteuh / users
0755
user
--
11 Sep 2026 10.42 AM
docteuh / users
0755
user-interface
--
11 Sep 2026 10.34 AM
docteuh / users
0755
user-interface-20260907211851
--
11 Sep 2026 12.41 PM
docteuh / users
0755
user-meta
--
11 Sep 2026 8.44 AM
docteuh / users
0755
utils
--
11 Sep 2026 9.57 AM
docteuh / users
0755
values
--
11 Sep 2026 4.12 PM
docteuh / users
0755
values-20260911045235
--
11 Sep 2026 4.37 PM
docteuh / users
0755
vendor-ext-litespeed-cache
--
11 Sep 2026 10.29 AM
docteuh / users
0755
views
--
11 Sep 2026 9.57 AM
docteuh / users
0755
vulnerabilities
--
11 Sep 2026 9.56 AM
docteuh / users
0755
watchers
--
11 Sep 2026 5.16 PM
docteuh / users
0755
widgets
--
11 Sep 2026 2.05 PM
docteuh / users
0755
woocommerce
--
11 Sep 2026 11.25 AM
docteuh / users
0755
wordpress
--
10 Sep 2026 10.54 PM
docteuh / users
0755
wordpress-20260911034155
--
11 Sep 2026 1.39 PM
docteuh / users
0755
wordpress-seo
--
11 Sep 2026 8.37 AM
docteuh / users
0755
wp-admin1-20260826063237
--
11 Sep 2026 6.08 AM
docteuh / users
0755
wp-content
--
11 Sep 2026 5.35 PM
docteuh / users
0755
wp-content-20260826022654
--
11 Sep 2026 5.21 AM
docteuh / users
0755
wp-includes
--
11 Sep 2026 5.08 PM
docteuh / users
0755
wp-includes-20260826063326
--
11 Sep 2026 10.56 AM
docteuh / users
0755
wp-includes-20260907151755
--
11 Sep 2026 4.25 AM
docteuh / users
0755
wp-lib-repository
--
10 Sep 2026 3.10 PM
docteuh / users
0755
wp-lib-repository-20260911113810
--
11 Sep 2026 4.13 PM
docteuh / users
0755
wp-tmp-bundled
--
11 Sep 2026 8.25 AM
docteuh / users
0755
wrappers
--
11 Sep 2026 12.58 PM
docteuh / users
0755
.htaccess_260818004710
0.237 KB
18 Aug 2026 2.47 AM
docteuh / users
0644
56fbfbe13122d-avant-jpg-460x295-20260826204501-20260826204826-20260826204908-20260826205028.jpg
16.597 KB
1 Aug 2023 10.35 PM
docteuh / users
0644
ControllerInterface.php
0.526 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
CurlFactory-20260905021222-20260906071221.php
27.876 KB
23 Jun 2026 6.20 PM
docteuh / users
0644
GuzzleException.php
0.209 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
HeaderProcessor.php
1.085 KB
23 Jun 2026 6.20 PM
docteuh / users
0644
MessageFormatter-20260908011712-20260908193258.php
7.117 KB
23 Jun 2026 6.20 PM
docteuh / users
0644
RetryMiddleware.php
3.659 KB
23 Jun 2026 6.20 PM
docteuh / users
0644
about-release-badge.svg
4.144 KB
21 May 2026 2.34 PM
docteuh / users
0644
admin-20260907131156.php
3.543 KB
5 Jun 2023 6.18 PM
docteuh / users
0644
analysis-worker.js
0.603 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
animations.css
1.422 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
arrow-prev-hover-icon-ie.png
0.647 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
breadcrumbs-generator.php
12.619 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
brightkite_16.png
0.651 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
brightkite_32.png
1.127 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
class-bulk-theme-upgrader-skin.php
2.598 KB
17 Jul 2024 6.30 AM
docteuh / users
0644
class-certificate-20260907232712.php
7.388 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
class-plugin-upgrader-20260830195235.php
22.704 KB
21 May 2026 2.34 PM
docteuh / users
0644
class-wp-community-events.php
18.21 KB
21 May 2026 2.34 PM
docteuh / users
0644
classes-surface.php
0.795 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
comment-grey-bubble-2x.png
0.252 KB
13 Feb 2014 9.03 AM
docteuh / users
0644
contact-20260907130003.php
0.945 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
customize-models.min.js
3.595 KB
5 Jun 2023 6.18 PM
docteuh / users
0644
effect-bounce.js
2.598 KB
17 Jul 2024 6.30 AM
docteuh / users
0644
externals-redux.js
56.636 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
font-library.php
1.012 KB
21 May 2026 2.34 PM
docteuh / users
0644
fr_FR-1780a2033cf98d69ce13c2e5c8510004.json
1.358 KB
17 Jun 2026 6.20 PM
docteuh / users
0644
freedoms-20260907093832.php
4.801 KB
21 May 2026 2.34 PM
docteuh / users
0644
friendfeed_16.png
0.716 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
friendfeed_32.png
1.371 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
fullscreen-icon-64.png
0.237 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
gettest-20260907134539.php
1.412 KB
18 Aug 2026 9.30 AM
docteuh / users
0644
goods-20260907074427.php
1.52 KB
8 Dec 2024 3.34 AM
docteuh / users
0644
google14607b7e05ca11f7.html
0.052 KB
18 Aug 2026 9.11 AM
docteuh / users
0644
googletalk_16.png
0.847 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
googletalk_32.png
1.68 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103006-20260829114738-20260905193350.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103006.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103038-20260829114745-20260901130639.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103038-20260829114745-20260902231459.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103038-20260829114745.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103052.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103054-20260829114739-20260901130749.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103054-20260829114739.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103054-20260829202547.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103054.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103103-20260829114744.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103103.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260829114741-20260905193342.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260829230601-20260901130506.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260829230601-20260901151404.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260829230601-20260901204524-20260902231034.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260831094615-20260901130504.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260831094615-20260902231456.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260831094615.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260831094627-20260905193339.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260831094627.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260831111900-20260901114837-20260902013226.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260831111900-20260901114837-20260902015953.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260831111900-20260901114837.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260831111900-20260901204506-20260902231029.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260831111900-20260901204506-20260902231038.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260831111900-20260901204506-20260902231039.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260831111900-20260901204506.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260831111900-20260902111100.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260831111900-20260902211048-20260902235848-20260903134951.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260831111900-20260902211048.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260831111900-20260902231431.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260831111900-20260902231438.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260831111900-20260902231448.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260831111900-20260905193340.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260831111900.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260901034230.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260901061523-20260902000354.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260901061523-20260902211044.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260901061523-20260902231442.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260901061523-20260902231456.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260901061523-20260905193344.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260901061523.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260901073835-20260901113623.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260901091205-20260901155800-20260902235841.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260901091205-20260901155800.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260901091205-20260901161153-20260902235847.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260901091205-20260901172549.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260901091205-20260904174118.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260901091205-20260905193341.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260901091205.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260902171452-20260905193346.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103532-20260829105142-20260901130505.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103532-20260829105142.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829104019-20260831094613-20260905102554.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829104019-20260831094613-20260905193351.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829104019-20260831094613.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829104019-20260831111345-20260831121008-20260831121049.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829104019.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260831150027.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260828164545.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260828173553-20260830221852.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829050506-20260830003632-20260830003701-20260830003856-20260830005246.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829050506-20260830003632-20260830003701-20260830003856-20260830051400.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829050506-20260830003632-20260830003701-20260830003856-20260830084043-20260830174608.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829050506-20260830003632-20260830003701-20260830003856-20260830084043-20260902205836.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829050506-20260830003632-20260830003701-20260830003856-20260830084043-20260902205838.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829050506-20260830003632-20260830003701-20260830003856-20260830145124.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829050506-20260830003632-20260830003701-20260830003856-20260831152358.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829050506-20260830003632-20260830003701-20260830003856-20260831163243.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829050506-20260830004210-20260830004247-20260830005244-20260830025245-20260902205835.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829050506-20260830004210-20260830004247-20260830005244-20260830025245.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829050506-20260830004210-20260830004247-20260830005244-20260830051414.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829050506-20260830004210-20260830004247-20260830005244-20260830145126-20260830160443.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829050506-20260830004210-20260830004247-20260830005244-20260830145126-20260902205827.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829050506-20260830004210-20260830004247-20260830005244-20260830145126.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829050506-20260830004210-20260830004247-20260830005244-20260831153003.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829050506-20260830004210-20260830004247-20260830005923-20260830013342.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829050506-20260830004210-20260830004247-20260830005923-20260830051301-20260902205804.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829050506-20260830004210-20260830004247-20260830005923-20260830084100-20260902205826.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829050506-20260830004210-20260830004247-20260830005923-20260830084100-20260902205830.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829050506-20260830004210-20260830004247-20260830005923-20260830084100-20260902205841.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829050506-20260830004210-20260830004247-20260830005923-20260830084100.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829050506-20260830004210-20260830004247-20260830005923-20260830145126.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829050506-20260830004210-20260830004247-20260830005923-20260830162815.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830003633-20260830003700-20260830003856-20260830084050-20260902205840.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830003633-20260830003700-20260830003856-20260830144522-20260830144810.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830003633-20260830003700-20260830003856-20260830144522.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830003633-20260830003700-20260830003856-20260830145419.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830003633-20260830003700-20260830003856-20260830162334-20260830174552.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830003633-20260830003700-20260830003856-20260830174347.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830003633-20260830003700-20260830003856-20260831134556.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830004210-20260830004246-20260830005248-20260830013345-20260902205825.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830004210-20260830004246-20260830005248-20260830084048-20260902205819.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830004210-20260830004246-20260830005248-20260830084048-20260902205837.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830004210-20260830004246-20260830005248-20260830084048-20260902205838.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830004210-20260830004246-20260830005248-20260830084048.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830004210-20260830004246-20260830005248-20260830084049-20260902205844.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830004210-20260830004246-20260830005248-20260830145127-20260902205840.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830004210-20260830004246-20260830005248-20260830145127.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830004210-20260830004246-20260830005248-20260830162520-20260902205832.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830004210-20260830004246-20260830005248-20260831152328.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830004210-20260830004246-20260830005922-20260830010808-20260830174357.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830004210-20260830004246-20260830005922-20260830051300-20260830164809.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830004210-20260830004246-20260830005922-20260830051300-20260902205822.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830004210-20260830004246-20260830005922-20260830051300-20260902205833.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830004210-20260830004246-20260830005922-20260830051300-20260903023811-20260903034543.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830004210-20260830004246-20260830005922-20260830084025-20260830171146.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830004210-20260830004246-20260830005922-20260830084025-20260902205831.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830004210-20260830004246-20260830005922-20260830145124-20260902205828.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830004210-20260830004246-20260830005922-20260830145124-20260902205842.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830004210-20260830004246-20260830005922-20260830145124-20260902214223.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830004210-20260830004246-20260830005922-20260830145124.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830004210-20260830004246-20260830005922-20260831152357.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
indexing-complete-action-20260907020739.php
0.647 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
indexing-complete-action.php
0.647 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
it_IT-1780a2033cf98d69ce13c2e5c8510004.json
1.213 KB
5 Jul 2026 11.44 PM
docteuh / users
0644
it_IT-7289286ed59e90a8f36ae797df62220b.json
0.492 KB
5 Jul 2026 11.44 PM
docteuh / users
0644
item.php
1.292 KB
9 May 2024 3.34 AM
docteuh / users
0444
ms-delete-site.php
4.505 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
ms-edit.php
0.211 KB
6 Feb 2020 7.33 AM
docteuh / users
0644
ms-options.php
0.224 KB
17 Jul 2024 6.30 AM
docteuh / users
0644
ms-sites.php
0.21 KB
6 Feb 2020 7.33 AM
docteuh / users
0644
ms-upgrade-network-20260907045159.php
0.214 KB
6 Feb 2020 7.33 AM
docteuh / users
0644
nav-menus-rtl.min.css
13.991 KB
21 May 2026 2.34 PM
docteuh / users
0644
nav-menus.php
49.073 KB
21 May 2026 2.34 PM
docteuh / users
0644
options-connectors.php
1.07 KB
21 May 2026 2.34 PM
docteuh / users
0644
options-discussion.php
15.915 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
options-head.php
0.606 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
options.php
1.865 KB
18 Jun 2024 3.06 AM
docteuh / users
0444
plugin-editor.php
13.752 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
plugins.php
1.934 KB
19 Sep 2024 3.34 AM
docteuh / users
0444
privacy-20260910090701.php
2.787 KB
21 May 2026 2.34 PM
docteuh / users
0644
privacy-policy-guide.php
3.668 KB
3 Apr 2024 10.45 AM
docteuh / users
0644
privacy.php
2.787 KB
21 May 2026 2.34 PM
docteuh / users
0644
product-20260826063205.php
1.717 KB
3 Aug 2024 3.34 AM
docteuh / users
0644
product-20260907220007.php
1.717 KB
3 Aug 2024 3.34 AM
docteuh / users
0644
readernaut_16.png
0.772 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
readernaut_32.png
1.864 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
revision.php
5.699 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
setup-config.php
17.524 KB
21 May 2026 2.34 PM
docteuh / users
0644
single-20260907214539.php
4.714 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
site-editor.php
12.072 KB
21 May 2026 2.34 PM
docteuh / users
0644
site-health.php
10.177 KB
21 May 2026 2.34 PM
docteuh / users
0644
style-20260826063220.php
62.488 KB
18 Aug 2026 8.35 AM
docteuh / users
0644
technorati_16.png
0.802 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
technorati_32.png
1.581 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
term.php
2.196 KB
5 Jun 2023 6.18 PM
docteuh / users
0644
theme-install.php
23.552 KB
21 May 2026 2.34 PM
docteuh / users
0644
tools.php
3.432 KB
5 Jun 2023 6.18 PM
docteuh / users
0644
upgrade.php
6.24 KB
21 May 2026 2.34 PM
docteuh / users
0644
upload-20260828165448.php
14.899 KB
21 May 2026 2.34 PM
docteuh / users
0644
user-edit-20260907090310.php
40.351 KB
21 May 2026 2.34 PM
docteuh / users
0644
user-edit.php
40.351 KB
21 May 2026 2.34 PM
docteuh / users
0644
user-profile.min.js
7.81 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
user..php
0.626 KB
18 Aug 2026 8.35 AM
docteuh / users
0644
users-20260908011931.php
23.439 KB
21 May 2026 2.34 PM
docteuh / users
0644
widgets.css
18.516 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
widgets.php
1.086 KB
5 Jun 2023 6.18 PM
docteuh / users
0644
wp-activate-20260826063230.php
7.198 KB
21 May 2026 2.34 PM
docteuh / users
0644
wp-activate.php
7.198 KB
21 May 2026 2.34 PM
docteuh / users
0644
wp-blog-header-20260826222418-20260830112713-20260831102852.php
0.361 KB
14 Jul 2026 6.04 AM
docteuh / users
0644
wp-comments-post-20260826022634.php
2.269 KB
9 Aug 2023 2.32 AM
docteuh / users
0644
wp-comments-post-20260907171908.php
2.269 KB
9 Aug 2023 2.32 AM
docteuh / users
0644
wp-comments-post.php
2.269 KB
9 Aug 2023 2.32 AM
docteuh / users
0644
wp-config-20260826022647.php
3.507 KB
14 Jul 2026 4.26 AM
docteuh / users
0644
wp-config.php
3.507 KB
14 Jul 2026 4.26 AM
docteuh / users
0644
wp-cron-20260826063319.php
5.485 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
wp-emoji-release.min.js
22.229 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
wp-links-opml.php
2.435 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
wp-settings.php
31.885 KB
6 Jul 2026 5.03 AM
docteuh / users
0644
xmlrpc-20260826022835.php
3.13 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
xmlrpc-20260828165449.php
3.13 KB
16 Apr 2025 11.58 AM
docteuh / users
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF