Code Monkey home page Code Monkey logo

waiyanphyohein / juice-shop Goto Github PK

View Code? Open in Web Editor NEW

This project forked from cunytechprep/juice-shop

0.0 1.0 0.0 77.62 MB

OWASP Juice Shop is an intentionally insecure webapp for security trainings written entirely in Javascript which encompasses the entire OWASP Top Ten and other severe security flaws.

Home Page: http://owasp-juice.shop

License: MIT License

JavaScript 93.48% CSS 0.94% HTML 5.46% Shell 0.07% Ruby 0.04% PHP 0.02%

juice-shop's Introduction

Juice Shop Logo OWASP Juice Shop OWASP Labs GitHub release Twitter Follow

Build Status Build status Test Coverage Maintainability Greenkeeper badge

The most trustworthy online shop out there. (@dschadow) โ€” The best juice shop on the whole internet! (@shehackspurple) โ€” Actually the most bug-free vulnerable application in existence! (@vanderaj)

OWASP Juice Shop is an intentionally insecure web application written entirely in JavaScript which encompasses the entire range of OWASP Top Ten and other severe security flaws.

Juice Shop Screenshot Slideshow

For a detailed introduction, full list of features and architecture overview please visit the official project page: http://owasp-juice.shop

Setup

Deploy on Heroku (free ($0/month) dyno)

  1. Click the button below and follow the instructions

Deploy

This is the quickest way to get a running instance of Juice Shop! If you have forked this repository, the deploy button will automatically pick up your fork for deployment! As long as you do not perform any DDoS attacks you are free to use any tools or scripts to hack your Juice Shop instance on Heroku!

From Sources

  1. Install node.js
  2. Run git clone https://github.com/bkimminich/juice-shop.git (or clone your own fork of the repository)
  3. Go into the cloned folder with cd juice-shop
  4. Run npm install (only has to be done before first start or when you change the source code)
  5. Run npm start
  6. Browse to http://localhost:3000

Docker Container Docker Automated build Docker Pulls

  1. Install Docker
  2. Run docker pull bkimminich/juice-shop
  3. Run docker run --rm -p 3000:3000 bkimminich/juice-shop
  4. Browse to http://localhost:3000 (on macOS and Windows browse to http://192.168.99.100:3000 if you are using docker-machine instead of the native docker installation)

If you want to run Juice Shop on a Raspberry Pi 3, there is an unofficial Docker image available at https://hub.docker.com/r/arclight/juice-shop_arm which is based on resin/rpi-raspbian and maintained by @battletux.

Even easier: Run Docker Container from Docker Toolbox (Kitematic)

  1. Install and launch Docker Toolbox
  2. Search for juice-shop and click Create to download image and run container
  3. Click on the Open icon next to Web Preview to browse to OWASP Juice Shop

Packaged Distributions GitHub release SourceForge

  1. Install a 64bit node.js on your Windows (or Linux) machine
  2. Download juice-shop-<version>_<node-version>_<os>_x64.zip (or .tgz) attached to latest release
  3. Unpack and run npm start in unpacked folder
  4. Browse to http://localhost:3000

Each packaged distribution includes some binaries for SQLite bound to the OS and node.js version which npm install was executed on.

Amazon EC2 Instance

  1. Setup an Amazon Linux AMI instance
  2. In Step 3: Configure Instance Details unfold Advanced Details and copy the script below into User Data
  3. In Step 6: Configure Security Group add a Rule that opens port 80 for HTTP
  4. Launch instance
  5. Browse to your instance's public DNS
#!/bin/bash
yum update -y
yum install -y docker
service docker start
docker pull bkimminich/juice-shop
docker run -d -p 80:3000 bkimminich/juice-shop

Technically Amazon could view hacking activity on any EC2 instance as an attack on their AWS infrastructure! We highly discourage aggressive scanning or automated brute force attacks! You have been warned!

Azure Web App for Containers

  1. Open your Azure CLI or login to the Azure Portal, open the CloudShell and then choose Bash (not PowerShell).
  2. Create a resource group by running az group create --name <group name> --location <location name, e.g. "East US">
  3. Create an app service plan by running az appservice plan create --name <plan name> --resource-group <group name> --sku S1 --is-linux
  4. Create a web app with the Juice Shop Docker image by running the following (on one line in the bash shell) az webapp create --resource-group <group name> --plan <plan name> --name <app name> --deployment-container-image-name bkimminich/juice-shop

For more information please refer to the detailed walkthrough with screenshots by @JasonHaley. You can alternatively follow his guide to set up OWASP Juice Shop as an Azure Container Instance.

Vagrant

  1. Install Vagrant and Virtualbox
  2. Run git clone https://github.com/bkimminich/juice-shop.git (or clone your own fork of the repository)
  3. Run cd vagrant && vagrant up
  4. Browse to 192.168.33.10

To show the possible impact of XSS, assume you received and (of course) clicked this inconspicuous phishing link and login. Apart from the visual/audible effect, the attacker also installed an input logger to grab credentials! This could easily run on a 3rd party server in real life!

This feature is only available when running a Vagrant box. A recording of the effect is available on Youtube: ๐Ÿ“บ

Node.js version compatibility

OWASP Juice Shop officially supports the following versions of node.js in line as close as possible with the official node.js LTS schedule. Docker images and packaged distributions are offered accordingly:

node.js Docker image Packaged distributions
9.x latest (current official release), snapshot (preview from develop branch) juice-shop-<version>_node9_windows_x64.zip, juice-shop-<version>_node9_linux_x64.tgz
8.x juice-shop-<version>_node8_windows_x64.zip, juice-shop-<version>_node8_linux_x64.tgz

Demo Heroku

Feel free to have a look at the latest version of OWASP Juice Shop: http://demo.owasp-juice.shop

This is a deployment-test and sneak-peek instance only! You are not supposed to use this instance for your own hacking endeavours! No guaranteed uptime! Guaranteed stern looks if you break it!

Customization

Via a YAML configuration file in /config, the OWASP Juice Shop can be customized in its content and look & feel.

For detailed instructions and examples please refer to our Customization documentation.

CTF-Extension

If you want to run OWASP Juice Shop as a Capture-The-Flag event, we recommend you set it up along with a CTFd server conveniently using the official juice-shop-ctf-cli tool.

For step-by-step instructions and examples please refer to the Hosting a CTF event chapter of our companion guide ebook.

Additional Documentation

Pwning OWASP Juice Shop Write Goodreads Review

This is the official companion guide to the OWASP Juice Shop. It will give you a complete overview of the vulnerabilities found in the application including hints how to spot and exploit them. In the appendix you will even find complete step-by-step solutions to every challenge. Pwning OWASP Juice Shop is published with GitBook under CC BY-NC-ND 4.0 and is available for free in PDF, Kindle and ePub format. You can also browse the full content online!

Pwning OWASP Juice Shop Cover

Slide Decks

Troubleshooting Gitter

If you need help with the application setup please check the TROUBLESHOOTING.md or post your specific problem or question in the official Gitter Chat.

Contributing GitHub contributors Stories in Ready JavaScript Style Guide Crowdin Bountysource Activity

We are always happy to get new contributors on board! Please check the following table for possible ways to do so:

โ“ ๐Ÿ’ก
Found a bug? Crashed the app? Broken challenge? Found a vulnerability that is not on the Score Board? Create an issue or post your ideas in the chat
Want to help with development? Pull requests are highly welcome! Please refer to the Contribute to development and Codebase 101 chapters of our companion guide ebook
Want to help with internationalization? Find out how to join our Crowdin project in the Helping with translations documentation
Anything else you would like to contribute? Write an email to [email protected] or [email protected]

References

Did you write a blog post, magazine article or do a podcast about or mentioning OWASP Juice Shop? Or maybe you held or joined a conference talk or meetup session, a hacking workshop or public training where this project was mentioned?

Add it to our ever-growing list of REFERENCES.md by forking and opening a Pull Request!

Merchandise

  • On Spreadshirt.com and Spreadshirt.de you can get some swag (Shirts, Hoodies, Mugs) with the official OWASP Juice Shop logo
  • On StickerYou.com you can get variants of the OWASP Juice Shop logo as single stickers to decorate your laptop with. They can also print magnets, iron-ons, sticker sheets and temporary tattoos.

The most honorable way to get some stickers is to contribute to the project by fixing an issue, finding a serious bug or submitting a good idea for a new challenge!

We're also happy to supply you with stickers if you organize a meetup or conference talk where you use or talk about or hack the OWASP Juice Shop! Just contact the mailing list or the project leader to discuss your plans! !

Donations

PayPal PayPal

PayPal donations via above button go to the OWASP Foundations and are earmarked for "Juice Shop". This is the preferred and most convenient way to support the project.

Credit Card (through RegOnline)

OWASP hosts a donation form on RegOnline. Refer to the Credit card donation step-by-step guide for help with filling out the donation form correctly.

Crypto Currency

Bitcoin Dash Ether

Contributors

Collaborators

GitHub Contributors

Based on GitHub commits on master as of Wed, 14 Mar 2018

Translators

Based on CrowdIn translations and commits to app/i18n. Grouped by language as of Mon, 07 Jan 2018 on master.

  • ๐Ÿ‡จ๐Ÿ‡ณ Coink, rToxic
  • ๐Ÿ‡จ๐Ÿ‡ฟ Martin Hartl, stejkenzie
  • ๐Ÿ‡ฉ๐Ÿ‡ฐ Allan Kimmer Jensen, owangen
  • ๐Ÿ‡ช๐Ÿ‡ช bmoritz
  • ๐Ÿ‡ซ๐Ÿ‡ท Kylian Runembert, vientspam
  • ๐Ÿ‡ฉ๐Ÿ‡ช Bjรถrn Kimminich
  • ๐Ÿ‡ญ๐Ÿ‡บ OliverkeHU
  • ๐Ÿ‡ฎ๐Ÿ‡ฉ adeyosemanputra, bahrunghozali, kahfiehudson, Mohammad Febri Ramadlan, Rick Daalhuizen, Syahrol
  • ๐Ÿ‡ฎ๐Ÿ‡ฑ AviD, Omer Levi Hevroni
  • ๐Ÿ‡ฎ๐Ÿ‡น vientspam
  • ๐Ÿ‡ฏ๐Ÿ‡ต ninoseki
  • ๐Ÿ‡ฒ๐Ÿ‡ฒ thinbashane
  • ๐Ÿ‡ณ๐Ÿ‡ฑ Bart Decker, Daan Sprenkels, Manu B, rachidbm, vientspam, Wout Huygens, Rick Daalhuizen
  • ๐Ÿ‡ณ๐Ÿ‡ด owangen
  • ๐Ÿ‡ต๐Ÿ‡ฑ Idomin Ninja, Andrew Pio
  • ๐Ÿ‡ต๐Ÿ‡น Alvaro Viebrantz
  • ๐Ÿ‡ท๐Ÿ‡ด Mircea Ulmeanu, orjen, timexlord
  • ๐Ÿ‡ท๐Ÿ‡บ fieldhill13
  • ๐Ÿ‡ช๐Ÿ‡ธ alopezhu, CarlCampbell, Carlos Allendes, Ezequiel Andino, mateomartinez, soledad aro, Gorka Vicente
  • ๐Ÿ‡ธ๐Ÿ‡ช Anders Lindberg, atteism, cello-anders, Klas Fahlberg, landinl, Mattias Persson, Pรคr Swedberg
  • ๐Ÿ‡น๐Ÿ‡ท Ender ร‡ulha

Special Thanks

Licensing license

This program is free software: you can redistribute it and/or modify it under the terms of the MIT license. OWASP Juice Shop and any contributions are Copyright ยฉ by Bjoern Kimminich 2014-2018.

Juice Shop Logo

juice-shop's People

Contributors

bkimminich avatar j12934 avatar m4l1c3 avatar greenkeeper[bot] avatar captainfreak avatar tghosth avatar wurstbrot avatar madhurw7 avatar aashish683 avatar jlnwntr avatar viktorlindstrm avatar aaron-m-edwards avatar ninoseki avatar medgardo avatar battletux avatar gitter-badger avatar stegopax avatar wayofthepie avatar simondel avatar simbas avatar kfl avatar johanna-a avatar jasonhaley avatar gorkavicente avatar diniscruz avatar cy4n avatar bitdeli-chef avatar avidouglen avatar alvarowolfx avatar achimgrimm avatar

Watchers

WaiYanPhyo Hein avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.