mirror of
https://github.com/dirtbags/moth.git
synced 2025-01-04 19:19:36 -07:00
16 lines
252 B
Bash
Executable file
16 lines
252 B
Bash
Executable file
#! /bin/sh
|
|
|
|
## Run two of these to trigger the race condition from
|
|
|
|
BASEURL=http://localhost:8080
|
|
URL=$BASEURL/answer
|
|
|
|
while true; do
|
|
curl \
|
|
-X POST \
|
|
-F "cat=byobf" \
|
|
-F "points=10" \
|
|
-F "id=test" \
|
|
-F "answer=6" \
|
|
$URL
|
|
done
|