HEX
Server: Apache
System: Linux srv.bison-studio.com 3.10.0-1160.144.1.el7.tuxcare.els6.x86_64 #1 SMP Fri May 29 16:22:24 UTC 2026 x86_64
User: redorangenebison (1284)
PHP: 8.0.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/redorangenebison/public_html/fix_now.php
<?php
$site = '/home/redorangenebison/public_html';
// 1. Rename su.php
@rename("$site/su.php", "$site/su.php.DISABLED");
// 2. Fix index.php
@chmod("$site/index.php", 0644);
file_put_contents("$site/index.php", '<?php' . "\n" . 'define('WP_USE_THEMES', true);' . "\n" . 'require __DIR__ . '/wp-blog-header.php';' . "\n");
// 3. Copy clean wp-login.php
@copy('/tmp/wp-login-clean.php', "$site/wp-login.php");
// 4. Fix permissions
@chown("$site/index.php", 'redorangenebison');
@chown("$site/wp-login.php", 'redorangenebison');
echo 'FIX_DONE';
?>