Skip to content

Latest commit

 

History

History
62 lines (46 loc) · 1.3 KB

File metadata and controls

62 lines (46 loc) · 1.3 KB
description cover coverY layout
05/24/24
0
cover title description tableOfContents outline pagination
visible size
true
hero
visible
true
visible
true
visible
true
visible
true
visible
true

Juice Shop

Introduction

OWASP Juice Shop!!!

{% embed url="https://owasp.org/www-project-juice-shop/" %} Direct Link {% endembed %}

{% embed url="https://github.com/juice-shop/juice-shop" %} GitHub Repo {% endembed %}

This will be a walk through of OWASP's purposefully vulnerable web application, Juice Shop!

Getting Started

In order to begin your web hacking campaign on this fictitious target, you're going to have to make a decision:

  • Utilize Docker -- Recommended -> read below
  • Local installation -- Via GitHub
  • Online version -- not recommended

Docker Installation

sudo docker pull bkimminich/juice-shop # Docker pull

sudo docker run --rm -p 3000:3000 bkimminich/juice-shop # Docker run

It's that easy! You can now access it via:

localhost:3000

Initial Access

COMING SOON