1
0
Fork 0
mirror of https://github.com/dirtbags/moth.git synced 2025-01-05 03:21:06 -07:00
moth/contrib/smash

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