You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the README file, under the Using WiFiChallenge Lab section, I chose to setup the lab with the 3rd option: Using Docker on a Linux Host or Custom VM like a kali linux. The current steps here no longer work due to an error generated by docker claiming that compose is not a command. I've got a working fix below. If it's any use, I got this working on a UTM Kali VM on M1 MacOS (ARM).
I had to install docker-compose via GitHub (not available with apt) and also slightly modify the docker command. All steps are below. It might be worth taking this and breaking it into its own setup heading, such as Using Docker on Kali Linux.
1. Install docker-compose for your machine's specs:
2. Grant docker-compose binary execution privileges:
sudo chmod +x /usr/local/bin/docker-compose
3. Clone the repository in desired directory:
cd /var && git clone https://github.com/r4ulcl/WiFiChallengeLab-docker
4. Change directory into repository folder:
cd WiFiChallengeLab-docker
5. Run docker-compose command:
docker-compose up -d docker-compose.yml
This lab is one of the coolest projects I've seen and has brought me from zero to hero. Replicating a lab like this in the real world using physical devices would be more painful than trying to explain Bitcoin to Grandma, so thanks for making this. Without this, nobody would have their OSWP lol.
The text was updated successfully, but these errors were encountered:
In the README file, under the Using WiFiChallenge Lab section, I chose to setup the lab with the 3rd option: Using Docker on a Linux Host or Custom VM like a kali linux. The current steps here no longer work due to an error generated by
docker
claiming thatcompose is not a command
. I've got a working fix below. If it's any use, I got this working on a UTM Kali VM on M1 MacOS (ARM).I had to install
docker-compose
via GitHub (not available withapt
) and also slightly modify thedocker
command. All steps are below. It might be worth taking this and breaking it into its own setup heading, such as Using Docker on Kali Linux.1. Install
docker-compose
for your machine's specs:sudo curl -L "https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
2. Grant
docker-compose
binary execution privileges:sudo chmod +x /usr/local/bin/docker-compose
3. Clone the repository in desired directory:
cd /var && git clone https://github.com/r4ulcl/WiFiChallengeLab-docker
4. Change directory into repository folder:
cd WiFiChallengeLab-docker
5. Run
docker-compose
command:docker-compose up -d docker-compose.yml
This lab is one of the coolest projects I've seen and has brought me from zero to hero. Replicating a lab like this in the real world using physical devices would be more painful than trying to explain Bitcoin to Grandma, so thanks for making this. Without this, nobody would have their OSWP lol.
The text was updated successfully, but these errors were encountered: