Plan 9 from Bell Labs’s /usr/web/sources/contrib/fgb/root/sys/src/cmd/openssh/regress/brokenkeys.sh

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


#	$OpenBSD: brokenkeys.sh,v 1.1 2004/10/29 23:59:22 djm Exp $
#	Placed in the Public Domain.

tid="broken keys"

KEYS="$OBJ/authorized_keys_${USER}"

start_sshd

mv ${KEYS} ${KEYS}.bak

# Truncated key
echo "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAIEABTM= bad key" > $KEYS
cat ${KEYS}.bak >> ${KEYS}
cat $OBJ/$t.pub >> $OBJ/authorized_keys_$USER

${SSH} -2 -F $OBJ/ssh_config somehost true
if [ $? -ne 0 ]; then
	fail "ssh connect with protocol $p failed"
fi

mv ${KEYS}.bak ${KEYS}


Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.