Introduction
Cette solution propose l’installation de Kali Linux via WSL2 (Sous-système Windows pour Linux ou en anglais Windows Subsystem for Linux) et de Docker dans Kali … le tout dans un environnement Windows 11.
L’interface graphique de Kali sera accessible depuis Windows via RDP (Remote Desktop Protocol).
Avertissement de Sécurité Important
Avant de commencer, il est crucial de comprendre les limites de sécurité de cette configuration :
- Docker n’offre pas une isolation complète comme une machine virtuelle traditionnelle
- Les conteneurs partagent le même noyau que l’hôte WSL2
- Le daemon Docker fonctionne avec les privilèges root
- Une exploitation réussie dans un conteneur pourrait potentiellement compromettre l’hôte
- Pour des challenges CTF potentiellement dangereux, privilégiez une machine virtuelle complètement isolée.
Installation de Kali
-
Prérequis :
- Windows 11 est installé
- WSL2 activé sur votre système https://learn.microsoft.com/fr-fr/windows/wsl/install
-
Installation de base de Kali dans WSL :
# Ouvrir PowerShell en administrateur et exécuter :
wsl --install
wsl --set-default-version 2
- Installer Kali depuis le Microsoft Store ou via PowerShell :
wsl --install -d kali-linux
-
Après le redémarrage, configurer un nom d’utilisateur et mot de passe pour Kali.
-
Installation de l’environnement de bureau et des composants nécessaires :
# Dans le terminal Kali
sudo apt update
sudo apt upgrade -y
sudo apt install -y kali-desktop-xfce xrdp
- Configurer XRDP :
Modifier le port d’écoute de RDP de Kali
sudo nano /etc/xrdp/xrdp.ini
Changer pour que l’écoute se fasse uniquement sur localhost
port 3390
Trouvez la section [Globals]
et modifiez/ajoutez cette ligne :
port=3389
en
port=tcp://127.0.0.1:3390
Créez/modifiez le fichier .xsession
:
echo "xfce4-session" > ~/.xsession
Configurez et lancez le service XRDP
sudo update-rc.d xrdp enable
sudo service xrdp start
sudo service xrdp status
Vérifier
sudo netstat -tulpn | grep 3390
tcp 0 0 127.0.0.1:3390 0.0.0.0:* LISTEN 486/xrdp
- Se connecter à l’interface graphique depuis Windows :
- Ouvrir “Connexion Bureau à Distance” sur Windows
- Connectez-vous à :
localhost:3390
.
- Utilisez vos identifiants Kali
Installation de Docker dans Kali
https://www.kali.org/docs/containers/installing-docker-on-kali/
$ sudo service docker start
Vérification de l’installation
$ docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
c1ec31eb5944: Pull complete
Digest: sha256:305243c734571da2d100c8c8b3c3167a098cab6049c9a5b066b6021a60fcb966
Status: Downloaded newer image for hello-world:latest
Hello from Docker!
This message shows that your installation appears to be working correctly.
To generate this message, Docker took the following steps:
1. The Docker client contacted the Docker daemon.
2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
(amd64)
3. The Docker daemon created a new container from that image which runs the
executable that produces the output you are currently reading.
4. The Docker daemon streamed that output to the Docker client, which sent it
to your terminal.
To try something more ambitious, you can run an Ubuntu container with:
$ docker run -it ubuntu bash
Share images, automate workflows, and more with a free Docker ID:
https://hub.docker.com/
For more examples and ideas, visit:
https://docs.docker.com/get-started/
Ready to play!
Si besoin accès au répertoire Linux depuis Windows
\\wsl$
Possibilité aussi d’utiliser depuis Windows - Visual Studio Code connecté à notre Kali Linux (WSL) via
- View / Command Palette (CTRL + Shift + P)
- WSL: Connect to WSL using Distro
- Select WSL distro: kali-linux
https://code.visualstudio.com/docs/remote/wsl
- Explorer (CTRL + Shift + P)
- Open folder (
/home/yourusername
) - Terminal / New Terminal
- …