Install OWASP Juice Shop in Kali Linux 2022 - cloudsecuritylabs/ethicalhackingclass GitHub Wiki
Kali Linux 2022 - Install OWASP Juice Shop
OWASP Juice Shop is probably the most modern and sophisticated insecure web application! It can be used in security trainings, awareness demos, CTFs and as a guinea pig for security tools! Juice Shop encompasses vulnerabilities from the entire OWASP Top Ten along with many other security flaws found in real-world applications!
https://owasp.org/www-project-juice-shop/
- sudo curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor | sudo tee /usr/share/keyrings/docker-archive-keyring.gpg >/dev/null
- sudo echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian buster stable' | sudo tee /etc/apt/sources.list.d/docker.list
- sudo apt-get update
- sudo apt install -y docker-ce docker-ce-cli containerd.io
- sudo docker pull bkimminich/juice-shop
- sudo docker run --rm -p 4000:4000 bkimminich/juice-shop
- sudo docker run --rm -p 3000:3000 bkimminich/juice-shop