Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/phith0n/race-condition-playground
Playground for Race Condition attack
https://github.com/phith0n/race-condition-playground
Last synced: 2 months ago
JSON representation
Playground for Race Condition attack
- Host: GitHub
- URL: https://github.com/phith0n/race-condition-playground
- Owner: phith0n
- Created: 2023-03-18T11:38:13.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-18T11:42:55.000Z (almost 2 years ago)
- Last Synced: 2024-10-14T11:19:26.145Z (3 months ago)
- Language: Python
- Size: 10.7 KB
- Stars: 24
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Race Condition Playground
This project is to demonstrate a vulnerable app that can be exploited by race condition attack.
Runs on Linux:
```
gunicorn -w 2 -k gevent -b 0.0.0.0:8000 race_condition_playground.wsgi
```Runs on Windows:
```
waitress-serve --port=8000 race_condition_playground.wsgi:application
```There is 4 routers that you can try to attack:
- `/ucenter/1/`
- `/ucenter/2/`
- `/ucenter/3/`
- `/ucenter/4/`The first two contain race condition issues, the last two are secure.