make register.cgi actually return

This commit is contained in:
Neale Pickett 2013-02-05 23:03:10 -07:00
parent 9c4563b122
commit af36a4c633
1 changed files with 5 additions and 4 deletions

View File

@ -3,6 +3,7 @@
param () {
ret=$(echo "$QUERY_STRING" | tr '=&' ' \n' | awk -v "k=$1" '($1==k) {print $2;}')
ret=$(busybox httpd -d "$ret" || echo "$ret")
echo "$ret"
}
team=$(param n)
@ -21,12 +22,12 @@ Content-type: text/html
<h1>Team Registration</h1>
EOF
if ! grep -q $h $CTF_BASE/state/teams/assigned.txt; then
if ! grep -q $hash $CTF_BASE/state/teams/assigned.txt; then
echo "<p>That token has not been assigned.</p>"
elif [ -f $CTF_BASE/state/teams/names/$h ]; then
echo "<p>That token has already been named.</p>"
elif [ -f $CTF_BASE/state/teams/names/$hash ]; then
echo "<p>That token has already been registered.</p>"
else
printf "%s" "$t" > $CTF_BASE/state/teams/names/$h
printf "%s" "$team" > $CTF_BASE/state/teams/names/$h
echo "<p>Okay, your team has been named and you may begin using your token!</p>"
fi