upstream: regression test for find-principals NULL deref; from Fabian

Stelzer

OpenBSD-Regress-ID: f845a8632a5a7d5ae26978004c93e796270fd3e5
This commit is contained in:
djm@openbsd.org 2022-01-05 04:10:39 +00:00 committed by Damien Miller
parent eb1f042142
commit 37a14249ec
1 changed files with 9 additions and 1 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: sshsig.sh,v 1.11 2021/11/27 07:23:35 djm Exp $
# $OpenBSD: sshsig.sh,v 1.12 2022/01/05 04:10:39 djm Exp $
# Placed in the Public Domain.
tid="sshsig"
@ -208,6 +208,14 @@ for t in $SIGNKEYS; do
${SSHKEYGEN} -vvv -Y find-principals -s $sigfile -f $OBJ/allowed_signers >/dev/null 2>&1 && \
fail "succeeded finding principal with invalid signers file"
# find-principals with a configured namespace but none on command-line
(printf "$sig_principal " ;
printf "namespaces=\"test1,test2\" ";
cat $pubkey) > $OBJ/allowed_signers
${SSHKEYGEN} -vvv -Y find-principals -s $sigfile \
-f $OBJ/allowed_signers >/dev/null 2>&1 || \
fail "failed finding principal when namespaces are configured"
# Check signing keys using ssh-agent.
${SSHADD} -D >/dev/null 2>&1 # Remove all previously-loaded keys.
${SSHADD} ${privkey} > /dev/null 2>&1 || fail "ssh-add failed"