Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't let non-form-owner add voters #115

Merged
merged 1 commit into from
Feb 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions scripts/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
formid.env
1 change: 1 addition & 0 deletions scripts/local_forms.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
echo "add form"
RESP=$(curl -sk "$FRONTEND_URL/api/evoting/forms" -X POST -H 'Content-Type: application/json' -b cookies.txt --data-raw $'{"Configuration":{"Title":{"En":"Colours","Fr":"","De":""},"Scaffold":[{"ID":"A7GsJxVJ","Title":{"En":"Colours","Fr":"","De":""},"Order":["GhidLIfw"],"Ranks":[],"Selects":[{"ID":"GhidLIfw","Title":{"En":"RGB","Fr":"","De":"RGB"},"MaxN":3,"MinN":1,"Choices":["{\\"en\\":\\"Red\\",\\"de\\":\\"Rot\\"}","{\\"en\\":\\"Green\\",\\"de\\":\\"Gr\xfcn\\"}","{\\"en\\":\\"Blue\\",\\"de\\":\\"Blau\\"}"],"Hint":{"En":"","Fr":"","De":"RGB"}}],"Texts":[],"Subjects":[]}]}}')
FORMID=$(echo "$RESP" | jq -r .FormID)
echo "FORMID=$FORMID" > "$SCRIPT_DIR/formid.env"

echo "add permissions - it's normal to have a timeout error after this command"
curl -k "$FRONTEND_URL/api/evoting/authorizations" -X PUT -H 'Content-Type: application/json' -b cookies.txt --data "$(jq -cn --arg FormID $FORMID '$ARGS.named')" -m 1
Expand Down
48 changes: 48 additions & 0 deletions scripts/test_admin_nonowner_addvote.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
#!/bin/bash

# This script tests that an admin who is not the owner of a form
# cannot add voters to the form.
# It also tests that the admin who created the form can actually add
# voters to the form.

SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
"$SCRIPT_DIR/run_local.sh"

. "$SCRIPT_DIR/local_vars.sh"
SECOND_ADMIN=123321
echo "Adding $SECOND_ADMIN to admin"
(cd web/backend && npx ts-node src/cli.ts addAdmin --sciper $SECOND_ADMIN | grep -v Executing)

"$SCRIPT_DIR/local_proxies.sh"
"$SCRIPT_DIR/local_forms.sh"

. "$SCRIPT_DIR/formid.env"

tmp_dir=$(mktemp -d)
trap 'rm -rf -- "tmpdir"' EXIT

tmp_cookie_owner="$tmp_dir/cookie_owner"
curl -k "$FRONTEND_URL/api/get_dev_login/$REACT_APP_SCIPER_ADMIN" -X GET -c "$tmp_cookie_owner" -o /dev/null -s
tmp_cookie_nonowner="$tmp_dir/cookie_nonowner"
curl -k "$FRONTEND_URL/api/get_dev_login/$SECOND_ADMIN" -X GET -c "$tmp_cookie_nonowner" -o /dev/null -s

echo "This should fail with an error that we're not allowed"
tmp_output="$tmp_dir/output"
curl -s 'http://localhost:3000/api/add_role' \
-H 'Content-Type: application/json' \
--data-raw "{\"userId\":444555,\"subject\":\"$FORMID\",\"permission\":\"vote\"}" \
-b "$tmp_cookie_nonowner" 2>&1 | tee "$tmp_output"
echo

if ! grep -q "not owner of form" "$tmp_output"; then
echo
echo "ERROR: Reply should be 'not owner of form'"
exit 1
fi

echo "This should pass for the owner of the form"
curl 'http://localhost:3000/api/add_role' \
-H 'Content-Type: application/json' \
--data-raw "{\"userId\":444555,\"subject\":\"$FORMID\",\"permission\":\"vote\"}" \
-b "$tmp_cookie_owner"
echo
6 changes: 6 additions & 0 deletions web/backend/src/controllers/users.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ usersRouter.post('/add_role', (req, res, next) => {
return;
}

if (req.body.permission === 'vote') {
if (!isAuthorized(req.session.userId, req.body.subject, PERMISSIONS.ACTIONS.OWN)) {
res.status(400).send('Unauthorized - not owner of form');
}
}

addPolicy(req.body.userId, req.body.subject, req.body.permission)
.then(() => {
res.set(200).send();
Expand Down
Loading