PHP 8.0.30
Preview: class-wp-application-passwords.php Size: 16.70 KB
/home/certprox/zang.certproxywizard.com/wp/wp-includes/class-wp-application-passwords.php

<?php
/**
 * WP_Application_Passwords class
 *
 * @package WordPress
 * @since   5.6.0
 */

/**
 * Class for displaying, modifying, and sanitizing application passwords.
 *
 * @package WordPress
 */
#[AllowDynamicProperties]
class WP_Application_Passwords {

	/**
	 * The application passwords user meta key.
	 *
	 * @since 5.6.0
	 *
	 * @var string
	 */
	const USERMETA_KEY_APPLICATION_PASSWORDS = '_application_passwords';

	/**
	 * The option name used to store whether application passwords are in use.
	 *
	 * @since 5.6.0
	 *
	 * @var string
	 */
	const OPTION_KEY_IN_USE = 'using_application_passwords';

	/**
	 * The generated application password length.
	 *
	 * @since 5.6.0
	 *
	 * @var int
	 */
	const PW_LENGTH = 24;

	/**
	 * Checks if application passwords are being used by the site.
	 *
	 * This returns true if at least one application password has ever been created.
	 *
	 * @since 5.6.0
	 *
	 * @return bool
	 */
	public static function is_in_use() {
		$network_id = get_main_network_id();
		return (bool) get_network_option( $network_id, self::OPTION_KEY_IN_USE );
	}

	/**
	 * Creates a new application password.
	 *
	 * @since 5.6.0
	 * @since 5.7.0 Returns WP_Error if application name already exists.
	 * @since 6.8.0 The hashed password value now uses wp_fast_hash() instead of phpass.
	 *
	 * @param int   $user_id  User ID.
	 * @param array $args     {
	 *     Arguments used to create the application password.
	 *
	 *     @type string $name   The name of the application password.
	 *     @type string $app_id A UUID provided by the application to uniquely identify it.
	 * }
	 * @return array|WP_Error {
	 *     Application password details, or a WP_Error instance if an error occurs.
	 *
	 *     @type string $0 The generated application password in plain text.
	 *     @type array  $1 {
	 *         The details about the created password.
	 *
	 *         @type string $uuid      The unique identifier for the application password.
	 *         @type string $app_id    A UUID provided by the application to uniquely identify it.
	 *         @type string $name      The name of the application password.
	 *         @type string $password  A one-way hash of the password.
	 *         @type int    $created   Unix timestamp of when the password was created.
	 *         @type null   $last_used Null.
	 *         @type null   $last_ip   Null.
	 *     }
	 * }
	 */
	public static function create_new_application_password( $user_id, $args = array() ) {
		if ( ! empty( $args['name'] ) ) {
			$args['name'] = sanitize_text_field( $args['name'] );
		}

		if ( empty( $args['name'] ) ) {
			return new WP_Error( 'application_password_empty_name', __( 'An application name is required to create an application password.' ), array( 'status' => 400 ) );
		}

		$new_password    = wp_generate_password( static::PW_LENGTH, false );
		$hashed_password = self::hash_password( $new_password );

		$new_item = array(
			'uuid'      => wp_generate_uuid4(),
			'app_id'    => empty( $args['app_id'] ) ? '' : $args['app_id'],
			'name'      => $args['name'],
			'password'  => $hashed_password,
			'created'   => time(),
			'last_used' => null,
			'last_ip'   => null,
		);

		$passwords   = static::get_user_application_passwords( $user_id );
		$passwords[] = $new_item;
		$saved       = static::set_user_application_passwords( $user_id, $passwords );

		if ( ! $saved ) {
			return new WP_Error( 'db_error', __( 'Could not save application password.' ) );
		}

		$network_id = get_main_network_id();
		if ( ! get_network_option( $network_id, self::OPTION_KEY_IN_USE ) ) {
			update_network_option( $network_id, self::OPTION_KEY_IN_USE, true );
		}

		/**
		 * Fires when an application password is created.
		 *
		 * @since 5.6.0
		 * @since 6.8.0 The hashed password value now uses wp_fast_hash() instead of phpass.
		 *
		 * @param int    $user_id      The user ID.
		 * @param array  $new_item     {
		 *     The details about the created password.
		 *
		 *     @type string $uuid      The unique identifier for the application password.
		 *     @type string $app_id    A UUID provided by the application to uniquely identify it.
		 *     @type string $name      The name of the application password.
		 *     @type string $password  A one-way hash of the password.
		 *     @type int    $created   Unix timestamp of when the password was created.
		 *     @type null   $last_used Null.
		 *     @type null   $last_ip   Null.
		 * }
		 * @param string $new_password The generated application password in plain text.
		 * @param array  $args         {
		 *     Arguments used to create the application password.
		 *
		 *     @type string $name   The name of the application password.
		 *     @type string $app_id A UUID provided by the application to uniquely identify it.
		 * }
		 */
		do_action( 'wp_create_application_password', $user_id, $new_item, $new_password, $args );

		return array( $new_password, $new_item );
	}

	/**
	 * Gets a user's application passwords.
	 *
	 * @since 5.6.0
	 *
	 * @param int $user_id User ID.
	 * @return array {
	 *     The list of application passwords.
	 *
	 *     @type array ...$0 {
	 *         @type string      $uuid      The unique identifier for the application password.
	 *         @type string      $app_id    A UUID provided by the application to uniquely identify it.
	 *         @type string      $name      The name of the application password.
	 *         @type string      $password  A one-way hash of the password.
	 *         @type int         $created   Unix timestamp of when the password was created.
	 *         @type int|null    $last_used The Unix timestamp of the GMT date the application password was last used.
	 *         @type string|null $last_ip   The IP address the application password was last used by.
	 *     }
	 * }
	 */
	public static function get_user_application_passwords( $user_id ) {
		$passwords = get_user_meta( $user_id, static::USERMETA_KEY_APPLICATION_PASSWORDS, true );

		if ( ! is_array( $passwords ) ) {
			return array();
		}

		$save = false;

		foreach ( $passwords as $i => $password ) {
			if ( ! isset( $password['uuid'] ) ) {
				$passwords[ $i ]['uuid'] = wp_generate_uuid4();
				$save                    = true;
			}
		}

		if ( $save ) {
			static::set_user_application_passwords( $user_id, $passwords );
		}

		return $passwords;
	}

	/**
	 * Gets a user's application password with the given UUID.
	 *
	 * @since 5.6.0
	 *
	 * @param int    $user_id User ID.
	 * @param string $uuid    The password's UUID.
	 * @return array|null {
	 *     The application password if found, null otherwise.
	 *
	 *     @type string      $uuid      The unique identifier for the application password.
	 *     @type string      $app_id    A UUID provided by the application to uniquely identify it.
	 *     @type string      $name      The name of the application password.
	 *     @type string      $password  A one-way hash of the password.
	 *     @type int         $created   Unix timestamp of when the password was created.
	 *     @type int|null    $last_used The Unix timestamp of the GMT date the application password was last used.
	 *     @type string|null $last_ip   The IP address the application password was last used by.
	 * }
	 */
	public static function get_user_application_password( $user_id, $uuid ) {
		$passwords = static::get_user_application_passwords( $user_id );

		foreach ( $passwords as $password ) {
			if ( $password['uuid'] === $uuid ) {
				return $password;
			}
		}

		return null;
	}

	/**
	 * Checks if an application password with the given name exists for this user.
	 *
	 * @since 5.7.0
	 *
	 * @param int    $user_id User ID.
	 * @param string $name    Application name.
	 * @return bool Whether the provided application name exists.
	 */
	public static function application_name_exists_for_user( $user_id, $name ) {
		$passwords = static::get_user_application_passwords( $user_id );

		foreach ( $passwords as $password ) {
			if ( strtolower( $password['name'] ) === strtolower( $name ) ) {
				return true;
			}
		}

		return false;
	}

	/**
	 * Updates an application password.
	 *
	 * @since 5.6.0
	 * @since 6.8.0 The actual password should now be hashed using wp_fast_hash().
	 *
	 * @param int    $user_id User ID.
	 * @param string $uuid    The password's UUID.
	 * @param array  $update  {
	 *     Information about the application password to update.
	 *
	 *     @type string      $uuid      The unique identifier for the application password.
	 *     @type string      $app_id    A UUID provided by the application to uniquely identify it.
	 *     @type string      $name      The name of the application password.
	 *     @type string      $password  A one-way hash of the password.
	 *     @type int         $created   Unix timestamp of when the password was created.
	 *     @type int|null    $last_used The Unix timestamp of the GMT date the application password was last used.
	 *     @type string|null $last_ip   The IP address the application password was last used by.
	 * }
	 * @return true|WP_Error True if successful, otherwise a WP_Error instance is returned on error.
	 */
	public static function update_application_password( $user_id, $uuid, $update = array() ) {
		$passwords = static::get_user_application_passwords( $user_id );

		foreach ( $passwords as &$item ) {
			if ( $item['uuid'] !== $uuid ) {
				continue;
			}

			if ( ! empty( $update['name'] ) ) {
				$update['name'] = sanitize_text_field( $update['name'] );
			}

			$save = false;

			if ( ! empty( $update['name'] ) && $item['name'] !== $update['name'] ) {
				$item['name'] = $update['name'];
				$save         = true;
			}

			if ( $save ) {
				$saved = static::set_user_application_passwords( $user_id, $passwords );

				if ( ! $saved ) {
					return new WP_Error( 'db_error', __( 'Could not save application password.' ) );
				}
			}

			/**
			 * Fires when an application password is updated.
			 *
			 * @since 5.6.0
			 * @since 6.8.0 The password is now hashed using wp_fast_hash() instead of phpass.
			 *              Existing passwords may still be hashed using phpass.
			 *
			 * @param int   $user_id The user ID.
			 * @param array $item    {
			 *     The updated application password details.
			 *
			 *     @type string      $uuid      The unique identifier for the application password.
			 *     @type string      $app_id    A UUID provided by the application to uniquely identify it.
			 *     @type string      $name      The name of the application password.
			 *     @type string      $password  A one-way hash of the password.
			 *     @type int         $created   Unix timestamp of when the password was created.
			 *     @type int|null    $last_used The Unix timestamp of the GMT date the application password was last used.
			 *     @type string|null $last_ip   The IP address the application password was last used by.
			 * }
			 * @param array $update  The information to update.
			 */
			do_action( 'wp_update_application_password', $user_id, $item, $update );

			return true;
		}

		return new WP_Error( 'application_password_not_found', __( 'Could not find an application password with that id.' ) );
	}

	/**
	 * Records that an application password has been used.
	 *
	 * @since 5.6.0
	 *
	 * @param int    $user_id User ID.
	 * @param string $uuid    The password's UUID.
	 * @return true|WP_Error True if the usage was recorded, a WP_Error if an error occurs.
	 */
	public static function record_application_password_usage( $user_id, $uuid ) {
		$passwords = static::get_user_application_passwords( $user_id );

		foreach ( $passwords as &$password ) {
			if ( $password['uuid'] !== $uuid ) {
				continue;
			}

			// Only record activity once a day.
			if ( $password['last_used'] + DAY_IN_SECONDS > time() ) {
				return true;
			}

			$password['last_used'] = time();
			$password['last_ip']   = $_SERVER['REMOTE_ADDR'];

			$saved = static::set_user_application_passwords( $user_id, $passwords );

			if ( ! $saved ) {
				return new WP_Error( 'db_error', __( 'Could not save application password.' ) );
			}

			return true;
		}

		// Specified application password not found!
		return new WP_Error( 'application_password_not_found', __( 'Could not find an application password with that id.' ) );
	}

	/**
	 * Deletes an application password.
	 *
	 * @since 5.6.0
	 *
	 * @param int    $user_id User ID.
	 * @param string $uuid    The password's UUID.
	 * @return true|WP_Error Whether the password was successfully found and deleted, a WP_Error otherwise.
	 */
	public static function delete_application_password( $user_id, $uuid ) {
		$passwords = static::get_user_application_passwords( $user_id );

		foreach ( $passwords as $key => $item ) {
			if ( $item['uuid'] === $uuid ) {
				unset( $passwords[ $key ] );
				$saved = static::set_user_application_passwords( $user_id, $passwords );

				if ( ! $saved ) {
					return new WP_Error( 'db_error', __( 'Could not delete application password.' ) );
				}

				/**
				 * Fires when an application password is deleted.
				 *
				 * @since 5.6.0
				 *
				 * @param int   $user_id The user ID.
				 * @param array $item    The data about the application password.
				 */
				do_action( 'wp_delete_application_password', $user_id, $item );

				return true;
			}
		}

		return new WP_Error( 'application_password_not_found', __( 'Could not find an application password with that id.' ) );
	}

	/**
	 * Deletes all application passwords for the given user.
	 *
	 * @since 5.6.0
	 *
	 * @param int $user_id User ID.
	 * @return int|WP_Error The number of passwords that were deleted or a WP_Error on failure.
	 */
	public static function delete_all_application_passwords( $user_id ) {
		$passwords = static::get_user_application_passwords( $user_id );

		if ( $passwords ) {
			$saved = static::set_user_application_passwords( $user_id, array() );

			if ( ! $saved ) {
				return new WP_Error( 'db_error', __( 'Could not delete application passwords.' ) );
			}

			foreach ( $passwords as $item ) {
				/** This action is documented in wp-includes/class-wp-application-passwords.php */
				do_action( 'wp_delete_application_password', $user_id, $item );
			}

			return count( $passwords );
		}

		return 0;
	}

	/**
	 * Sets a user's application passwords.
	 *
	 * @since 5.6.0
	 *
	 * @param int   $user_id   User ID.
	 * @param array $passwords {
	 *     The list of application passwords.
	 *
	 *     @type array ...$0 {
	 *         @type string      $uuid      The unique identifier for the application password.
	 *         @type string      $app_id    A UUID provided by the application to uniquely identify it.
	 *         @type string      $name      The name of the application password.
	 *         @type string      $password  A one-way hash of the password.
	 *         @type int         $created   Unix timestamp of when the password was created.
	 *         @type int|null    $last_used The Unix timestamp of the GMT date the application password was last used.
	 *         @type string|null $last_ip   The IP address the application password was last used by.
	 *     }
	 * }
	 * @return int|bool User meta ID if the key didn't exist (ie. this is the first time that an application password
	 *                  has been saved for the user), true on successful update, false on failure or if the value passed
	 *                  is the same as the one that is already in the database.
	 */
	protected static function set_user_application_passwords( $user_id, $passwords ) {
		return update_user_meta( $user_id, static::USERMETA_KEY_APPLICATION_PASSWORDS, $passwords );
	}

	/**
	 * Sanitizes and then splits a password into smaller chunks.
	 *
	 * @since 5.6.0
	 *
	 * @param string $raw_password The raw application password.
	 * @return string The chunked password.
	 */
	public static function chunk_password(
		#[\SensitiveParameter]
		$raw_password
	) {
		$raw_password = preg_replace( '/[^a-z\d]/i', '', $raw_password );

		return trim( chunk_split( $raw_password, 4, ' ' ) );
	}

	/**
	 * Hashes a plaintext application password.
	 *
	 * @since 6.8.0
	 *
	 * @param string $password Plaintext password.
	 * @return string Hashed password.
	 */
	public static function hash_password(
		#[\SensitiveParameter]
		string $password
	): string {
		return wp_fast_hash( $password );
	}

	/**
	 * Checks a plaintext application password against a hashed password.
	 *
	 * @since 6.8.0
	 *
	 * @param string $password Plaintext password.
	 * @param string $hash     Hash of the password to check against.
	 * @return bool Whether the password matches the hashed password.
	 */
	public static function check_password(
		#[\SensitiveParameter]
		string $password,
		string $hash
	): bool {
		if ( ! str_starts_with( $hash, '$generic$' ) ) {
			/*
			 * If the hash doesn't start with `$generic$`, it is a hash created with `wp_hash_password()`.
			 * This is the case for application passwords created before 6.8.0.
			 */
			return wp_check_password( $password, $hash );
		}

		return wp_verify_fast_hash( $password, $hash );
	}
}

Directory Contents

Dirs: 32 × Files: 254

Name Size Perms Modified Actions
- drwxr-xr-x 2026-03-30 10:07:43
Edit Download
ai-client DIR
- drwxr-xr-x 2026-05-21 18:01:50
Edit Download
assets DIR
- drwxr-xr-x 2026-05-21 18:02:34
Edit Download
- drwxr-xr-x 2026-03-30 10:07:43
Edit Download
- drwxr-xr-x 2026-05-21 18:01:57
Edit Download
- drwxr-xr-x 2026-05-21 18:02:30
Edit Download
blocks DIR
- drwxr-xr-x 2026-05-21 18:02:33
Edit Download
build DIR
- drwxr-xr-x 2026-05-21 18:01:51
Edit Download
- drwxr-xr-x 2026-03-30 10:07:43
Edit Download
css DIR
- drwxr-xr-x 2026-05-21 18:01:53
Edit Download
customize DIR
- drwxr-xr-x 2026-03-30 10:07:43
Edit Download
fonts DIR
- drwxr-xr-x 2026-03-30 10:07:43
Edit Download
html-api DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
ID3 DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
images DIR
- drwxr-xr-x 2026-05-21 18:01:46
Edit Download
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
IXR DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
js DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
l10n DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
- drwxr-xr-x 2026-05-21 18:01:46
Edit Download
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
PHPMailer DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
pomo DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
Requests DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
rest-api DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
SimplePie DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
sitemaps DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
Text DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
widgets DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
23.80 KB lrw-r--r-- 2025-11-04 14:34:38
Edit Download
7.82 KB lrw-r--r-- 2026-05-21 18:01:51
Edit Download
38.39 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
2.49 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
11.90 KB lrw-r--r-- 2025-09-03 09:18:32
Edit Download
19.38 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
7.35 KB lrw-r--r-- 2025-10-20 05:52:24
Edit Download
28.05 KB lrw-r--r-- 2026-05-21 18:01:51
Edit Download
316 B lrw-r--r-- 2021-08-11 06:08:02
Edit Download
15.24 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
61.33 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
17.83 KB lrw-r--r-- 2026-05-21 18:02:29
Edit Download
116.64 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
12.47 KB lrw-r--r-- 2025-03-19 21:15:36
Edit Download
15.07 KB lrw-r--r-- 2024-03-23 12:20:12
Edit Download
10.76 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
13.17 KB lrw-r--r-- 2025-04-29 19:44:38
Edit Download
33.83 KB lrw-r--r-- 2025-11-04 16:31:30
Edit Download
42.61 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
55.65 KB lrw-r--r-- 2026-05-21 18:02:29
Edit Download
12.53 KB lrw-r--r-- 2026-05-21 18:01:51
Edit Download
29.30 KB lrw-r--r-- 2026-05-21 18:01:58
Edit Download
539 B lrw-r--r-- 2024-09-30 19:50:20
Edit Download
367 B lrw-r--r-- 2022-06-17 08:20:14
Edit Download
2.55 KB lrw-r--r-- 2025-01-22 17:48:26
Edit Download
42.65 KB lrw-r--r-- 2025-08-25 10:10:30
Edit Download
401 B lrw-r--r-- 2022-06-17 08:20:14
Edit Download
6.61 KB lrw-r--r-- 2024-09-17 18:08:16
Edit Download
664 B lrw-r--r-- 2020-07-21 09:58:02
Edit Download
20.63 KB lrw-r--r-- 2024-10-25 17:26:20
Edit Download
2.18 KB lrw-r--r-- 2023-04-05 10:12:26
Edit Download
453 B lrw-r--r-- 2024-09-30 19:50:20
Edit Download
457 B lrw-r--r-- 2021-01-26 11:45:58
Edit Download
36.83 KB lrw-r--r-- 2023-02-03 11:35:20
Edit Download
2.41 KB lrw-r--r-- 2023-09-14 09:46:20
Edit Download
8.28 KB lrw-r--r-- 2023-09-08 06:32:24
Edit Download
13.89 KB lrw-r--r-- 2024-03-18 13:46:14
Edit Download
11.76 KB lrw-r--r-- 2025-01-21 19:26:24
Edit Download
2.65 KB lrw-r--r-- 2023-09-14 09:46:20
Edit Download
7.43 KB lrw-r--r-- 2023-09-14 09:46:20
Edit Download
17.58 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
5.14 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
16.70 KB lrw-r--r-- 2025-04-03 10:53:28
Edit Download
8.07 KB lrw-r--r-- 2026-05-21 18:01:50
Edit Download
2.92 KB lrw-r--r-- 2025-09-28 18:56:28
Edit Download
1.32 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
4.60 KB lrw-r--r-- 2025-08-07 11:47:34
Edit Download
11.57 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
2.50 KB lrw-r--r-- 2025-10-21 04:14:02
Edit Download
1.95 KB lrw-r--r-- 2026-05-21 18:01:50
Edit Download
11.25 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
4.28 KB lrw-r--r-- 2026-05-21 18:01:58
Edit Download
10.07 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
68.32 KB lrw-r--r-- 2026-01-26 14:30:32
Edit Download
6.27 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
6.40 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
1.99 KB lrw-r--r-- 2024-09-19 23:07:12
Edit Download
6.91 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
4.91 KB lrw-r--r-- 2025-09-29 13:29:36
Edit Download
16.83 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
24.14 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
3.93 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
47.49 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
9.15 KB lrw-r--r-- 2026-05-21 18:01:51
Edit Download
14.07 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
25.51 KB lrw-r--r-- 2025-09-06 23:47:36
Edit Download
198.13 KB lrw-r--r-- 2026-05-21 18:02:29
Edit Download
56.61 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
10.46 KB lrw-r--r-- 2025-01-22 17:48:26
Edit Download
10.95 KB lrw-r--r-- 2024-10-13 16:09:12
Edit Download
29.26 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
70.89 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
35.13 KB lrw-r--r-- 2026-05-21 18:01:58
Edit Download
16.69 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
2.59 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
39.95 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
70.54 KB lrw-r--r-- 2026-05-21 18:02:29
Edit Download
15.54 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
7.33 KB lrw-r--r-- 2023-02-21 14:39:20
Edit Download
253 B lrw-r--r-- 2024-09-27 16:28:14
Edit Download
7.96 KB lrw-r--r-- 2024-10-22 07:16:16
Edit Download
3.23 KB lrw-r--r-- 2025-07-30 20:03:30
Edit Download
969 B lrw-r--r-- 2024-09-30 19:50:20
Edit Download
16.25 KB lrw-r--r-- 2026-05-21 18:01:46
Edit Download
7.10 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
12.95 KB lrw-r--r-- 2025-09-03 09:18:32
Edit Download
6.53 KB lrw-r--r-- 2023-06-22 11:57:24
Edit Download
3.43 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
5.84 KB lrw-r--r-- 2023-06-22 11:36:26
Edit Download
1.97 KB lrw-r--r-- 2022-12-15 19:32:18
Edit Download
4.14 KB lrw-r--r-- 2026-05-21 18:02:00
Edit Download
2.91 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
16.37 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
40.67 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
7.67 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
20.22 KB lrw-r--r-- 2025-09-03 09:18:32
Edit Download
36.11 KB lrw-r--r-- 2025-08-26 18:05:30
Edit Download
17.01 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
7.27 KB lrw-r--r-- 2024-02-27 20:38:16
Edit Download
6.62 KB lrw-r--r-- 2025-05-11 14:16:30
Edit Download
16.45 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
1.79 KB lrw-r--r-- 2024-02-05 23:25:14
Edit Download
29.79 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
6.67 KB lrw-r--r-- 2025-10-21 12:59:34
Edit Download
8.98 KB lrw-r--r-- 2025-06-18 17:39:52
Edit Download
19.25 KB lrw-r--r-- 2026-05-21 18:01:58
Edit Download
12.01 KB lrw-r--r-- 2024-09-13 19:12:16
Edit Download
17.11 KB lrw-r--r-- 2025-04-04 19:00:28
Edit Download
6.74 KB lrw-r--r-- 2024-03-06 03:05:12
Edit Download
30.86 KB lrw-r--r-- 2026-05-21 18:01:58
Edit Download
4.95 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
4.25 KB lrw-r--r-- 2025-10-01 10:23:28
Edit Download
24.59 KB lrw-r--r-- 2026-05-21 18:01:51
Edit Download
29.95 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
6.33 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
159.60 KB lrw-r--r-- 2026-07-17 20:31:15
Edit Download
6.72 KB lrw-r--r-- 2022-10-04 00:59:14
Edit Download
10.90 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
4.80 KB lrw-r--r-- 2026-05-21 18:01:45
Edit Download
3.44 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
11.18 KB lrw-r--r-- 2025-02-23 09:11:22
Edit Download
62.20 KB lrw-r--r-- 2026-05-21 18:01:45
Edit Download
2.46 KB lrw-r--r-- 2023-09-08 06:32:24
Edit Download
9.10 KB lrw-r--r-- 2026-05-21 18:01:50
Edit Download
39.65 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
35.93 KB lrw-r--r-- 2026-05-21 18:01:59
Edit Download
7.15 KB lrw-r--r-- 2025-02-11 09:14:22
Edit Download
3.47 KB lrw-r--r-- 2025-09-16 19:47:32
Edit Download
1.87 KB lrw-r--r-- 2025-01-22 17:48:26
Edit Download
30.74 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
7.28 KB lrw-r--r-- 2026-05-21 18:01:58
Edit Download
7.38 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
13.04 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
19.12 KB lrw-r--r-- 2025-06-16 14:08:32
Edit Download
18.12 KB lrw-r--r-- 2025-03-26 19:42:28
Edit Download
39.80 KB lrw-r--r-- 2026-05-21 18:01:50
Edit Download
5.14 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
979 B lrw-r--r-- 2024-02-14 17:27:10
Edit Download
18.49 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
10.24 KB lrw-r--r-- 2024-11-20 00:50:24
Edit Download
1.77 KB lrw-r--r-- 2024-06-04 08:55:14
Edit Download
34.86 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
7.19 KB lrw-r--r-- 2024-06-06 05:02:16
Edit Download
169.57 KB lrw-r--r-- 2026-05-21 18:02:29
Edit Download
64.22 KB lrw-r--r-- 2026-05-21 18:01:58
Edit Download
27.95 KB lrw-r--r-- 2024-07-19 20:44:16
Edit Download
4.69 KB lrw-r--r-- 2025-02-18 20:32:22
Edit Download
2.88 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
43.07 KB lrw-r--r-- 2026-05-21 18:01:50
Edit Download
2.25 KB lrw-r--r-- 2025-02-17 09:24:22
Edit Download
22.48 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
13.01 KB lrw-r--r-- 2024-07-26 04:56:14
Edit Download
3.27 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
17.99 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
209.98 KB lrw-r--r-- 2026-05-21 18:01:47
Edit Download
25.75 KB lrw-r--r-- 2026-05-21 18:02:29
Edit Download
115.86 KB lrw-r--r-- 2026-05-21 18:01:51
Edit Download
373 B lrw-r--r-- 2022-09-20 11:17:12
Edit Download
343 B lrw-r--r-- 2022-09-20 11:17:12
Edit Download
338 B lrw-r--r-- 2022-09-20 11:17:12
Edit Download
100.79 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
130.94 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
19.10 KB lrw-r--r-- 2025-10-21 11:03:28
Edit Download
15.69 KB lrw-r--r-- 2026-05-21 18:01:45
Edit Download
23.52 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
43.94 KB lrw-r--r-- 2026-05-21 18:02:29
Edit Download
400 B lrw-r--r-- 2022-06-17 08:20:14
Edit Download
11.10 KB lrw-r--r-- 2024-09-30 20:58:16
Edit Download
36.54 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
2.24 KB lrw-r--r-- 2025-01-22 17:48:26
Edit Download
189.43 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
338 B lrw-r--r-- 2022-06-17 08:20:14
Edit Download
37.90 KB lrw-r--r-- 2026-07-10 03:58:33
Edit Download
4.00 KB lrw-r--r-- 2026-05-21 18:02:29
Edit Download
5.38 KB lrw-r--r-- 2024-03-04 10:41:10
Edit Download
3.05 KB lrw-r--r-- 2025-01-22 17:48:26
Edit Download
2.61 KB lrw-r--r-- 2020-01-28 22:45:18
Edit Download
1.16 KB lrw-r--r-- 2020-01-28 22:45:18
Edit Download
4.04 KB lrw-r--r-- 2024-03-04 10:41:10
Edit Download
3.71 KB lrw-r--r-- 2020-01-28 22:45:18
Edit Download
24.60 KB lrw-r--r-- 2026-01-28 23:07:36
Edit Download
9.56 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
346.60 KB lrw-r--r-- 2026-07-10 03:58:32
Edit Download
283.52 KB lrw-r--r-- 2026-05-21 18:01:51
Edit Download
20.01 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
8.45 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
170.83 KB lrw-r--r-- 2026-05-21 18:02:33
Edit Download
20.29 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
26.62 KB lrw-r--r-- 2026-05-21 18:01:58
Edit Download
5.72 KB lrw-r--r-- 2025-02-24 11:43:24
Edit Download
4.63 KB lrw-r--r-- 2023-07-10 19:38:26
Edit Download
81.03 KB lrw-r--r-- 2026-07-10 03:58:47
Edit Download
69.74 KB lrw-r--r-- 2026-05-21 18:01:58
Edit Download
156.39 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
55.15 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
162 B lrw-r--r-- 2019-10-08 14:19:04
Edit Download
61.79 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
219.66 KB lrw-r--r-- 2026-07-10 03:58:32
Edit Download
65.17 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
25.71 KB lrw-r--r-- 2026-05-21 18:01:52
Edit Download
4.81 KB lrw-r--r-- 2024-06-13 17:50:14
Edit Download
6.48 KB lrw-r--r-- 2023-02-23 23:23:20
Edit Download
21.24 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
2.79 KB lrw-r--r-- 2025-10-17 14:14:32
Edit Download
89.69 KB lrw-r--r-- 2025-10-27 14:35:36
Edit Download
19.57 KB lrw-r--r-- 2026-05-21 18:01:52
Edit Download
3.69 KB lrw-r--r-- 2023-05-02 08:26:24
Edit Download
4.11 KB lrw-r--r-- 2025-08-27 10:42:30
Edit Download
40.75 KB lrw-r--r-- 2026-05-21 18:02:00
Edit Download
25.38 KB lrw-r--r-- 2025-01-22 17:48:26
Edit Download
43.23 KB lrw-r--r-- 2026-05-21 18:02:00
Edit Download
102.62 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
6.18 KB lrw-r--r-- 2025-02-03 17:52:24
Edit Download
124.57 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
35.65 KB lrw-r--r-- 2025-11-03 21:47:34
Edit Download
6.90 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
67.01 KB lrw-r--r-- 2026-05-21 18:01:45
Edit Download
10.62 KB lrw-r--r-- 2024-12-20 21:35:24
Edit Download
289.58 KB lrw-r--r-- 2026-05-21 18:01:45
Edit Download
36.23 KB lrw-r--r-- 2025-08-31 18:43:30
Edit Download
200 B lrw-r--r-- 2020-11-12 09:17:08
Edit Download
200 B lrw-r--r-- 2020-11-12 09:17:08
Edit Download
98.84 KB lrw-r--r-- 2026-07-17 20:31:15
Edit Download
29.99 KB lrw-r--r-- 2026-05-21 18:01:51
Edit Download
19.00 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
5.06 KB lrw-r--r-- 2022-04-06 12:33:04
Edit Download
255 B lrw-r--r-- 2020-11-16 20:52:06
Edit Download
22.66 KB lrw-r--r-- 2025-09-03 09:18:32
Edit Download
159.30 KB lrw-r--r-- 2026-05-21 18:01:51
Edit Download
11.66 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
258 B lrw-r--r-- 2020-02-06 04:33:12
Edit Download
23.47 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
3.16 KB lrw-r--r-- 2021-05-15 14:38:06
Edit Download
8.40 KB lrw-r--r-- 2025-08-27 07:34:28
Edit Download
441 B lrw-r--r-- 2020-11-12 09:17:08
Edit Download
7.39 KB lrw-r--r-- 2024-05-03 01:47:12
Edit Download
172.99 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
544 B lrw-r--r-- 2023-09-30 21:22:28
Edit Download
4.17 KB lrw-r--r-- 2026-03-10 19:20:36
Edit Download
35.96 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
1.85 KB lrw-r--r-- 2026-05-21 18:02:00
Edit Download
2.82 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
3.96 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
8.83 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
131.48 KB lrw-r--r-- 2026-05-21 18:02:29
Edit Download
37.38 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
174.63 KB lrw-r--r-- 2026-05-21 18:01:58
Edit Download
7.09 KB lrw-r--r-- 2025-10-20 23:35:32
Edit Download
6.45 KB lrw-r--r-- 2026-05-21 18:01:58
Edit Download
1.08 KB lrw-r--r-- 2026-07-17 20:31:16
Edit Download
602 B lrw-r--r-- 2026-05-21 18:02:34
Edit Download
69.17 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
445 B lrw-r--r-- 2022-07-21 19:45:12
Edit Download
799 B lrw-r--r-- 2025-01-22 17:48:26
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).