Lesson Plan Title: Shopping Cart Concurrency Flaw
Concept / Topic To Teach:
Web applications can handle many HTTP requests simultaneously. Developers often use variables that are not thread safe. Thread safety means that the fields of an object or class always maintain a valid state when used concurrently by multiple threads. It is often possible to exploit a concurrency bug by loading the same page as another user at the exact same time. Because all threads share the same method area, and the method area is where all class variables are stored, multiple threads can attempt to use the same class variables concurrently.
General Goal(s):
For this exercise, your mission is to exploit the concurrency issue which will allow you to purchase merchandise for a lower price.