summaryrefslogtreecommitdiff
path: root/regress
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2004-12-06 23:07:37 +1100
committerDarren Tucker <dtucker@zip.com.au>2004-12-06 23:07:37 +1100
commit124f58ecba39525af88e0619105656d383e515ff (patch)
tree48635c04c9946c34c2ce2cae0543cd4c4153d320 /regress
parent71b5643598d301a1a03c4845ff0eb159998a5fcf (diff)
- djm@cvs.openbsd.org 2004/10/29 23:59:22
[Makefile added brokenkeys.sh] regression test for handling of corrupt keys in authorized_keys file
Diffstat (limited to 'regress')
-rw-r--r--regress/Makefile5
-rw-r--r--regress/brokenkeys.sh23
2 files changed, 26 insertions, 2 deletions
diff --git a/regress/Makefile b/regress/Makefile
index dc7b6e35a..3e22d547f 100644
--- a/regress/Makefile
+++ b/regress/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.32 2004/07/09 19:45:43 david Exp $ 1# $OpenBSD: Makefile,v 1.33 2004/10/29 23:59:22 djm Exp $
2 2
3REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t-exec 3REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t-exec
4tests: $(REGRESS_TARGETS) 4tests: $(REGRESS_TARGETS)
@@ -38,7 +38,8 @@ LTESTS= connect \
38 dynamic-forward \ 38 dynamic-forward \
39 forwarding \ 39 forwarding \
40 multiplex \ 40 multiplex \
41 reexec 41 reexec \
42 brokenkeys
42 43
43USER!= id -un 44USER!= id -un
44CLEANFILES= t2.out t6.out1 t6.out2 t7.out t7.out.pub copy.1 copy.2 \ 45CLEANFILES= t2.out t6.out1 t6.out2 t7.out t7.out.pub copy.1 copy.2 \
diff --git a/regress/brokenkeys.sh b/regress/brokenkeys.sh
new file mode 100644
index 000000000..3e70c348a
--- /dev/null
+++ b/regress/brokenkeys.sh
@@ -0,0 +1,23 @@
1# $OpenBSD: brokenkeys.sh,v 1.1 2004/10/29 23:59:22 djm Exp $
2# Placed in the Public Domain.
3
4tid="broken keys"
5
6KEYS="$OBJ/authorized_keys_${USER}"
7
8start_sshd
9
10mv ${KEYS} ${KEYS}.bak
11
12# Truncated key
13echo "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAIEABTM= bad key" > $KEYS
14cat ${KEYS}.bak >> ${KEYS}
15cat $OBJ/$t.pub >> $OBJ/authorized_keys_$USER
16
17${SSH} -2 -F $OBJ/ssh_config somehost true
18if [ $? -ne 0 ]; then
19 fail "ssh connect with protocol $p failed"
20fi
21
22mv ${KEYS}.bak ${KEYS}
23