summaryrefslogtreecommitdiff
path: root/regress/scp.sh
diff options
context:
space:
mode:
Diffstat (limited to 'regress/scp.sh')
-rw-r--r--regress/scp.sh14
1 files changed, 12 insertions, 2 deletions
diff --git a/regress/scp.sh b/regress/scp.sh
index 57cc77066..62400efad 100644
--- a/regress/scp.sh
+++ b/regress/scp.sh
@@ -1,4 +1,4 @@
1# $OpenBSD: scp.sh,v 1.10 2014/01/26 10:49:17 djm Exp $ 1# $OpenBSD: scp.sh,v 1.11 2019/07/19 03:45:44 djm Exp $
2# Placed in the Public Domain. 2# Placed in the Public Domain.
3 3
4tid="scp" 4tid="scp"
@@ -25,6 +25,7 @@ export SCP # used in scp-ssh-wrapper.scp
25scpclean() { 25scpclean() {
26 rm -rf ${COPY} ${COPY2} ${DIR} ${DIR2} 26 rm -rf ${COPY} ${COPY2} ${DIR} ${DIR2}
27 mkdir ${DIR} ${DIR2} 27 mkdir ${DIR} ${DIR2}
28 chmod 755 ${DIR} ${DIR2}
28} 29}
29 30
30verbose "$tid: simple copy local file to local file" 31verbose "$tid: simple copy local file to local file"
@@ -101,7 +102,7 @@ if [ ! -z "$SUDO" ]; then
101 $SUDO rm ${DIR2}/copy 102 $SUDO rm ${DIR2}/copy
102fi 103fi
103 104
104for i in 0 1 2 3 4; do 105for i in 0 1 2 3 4 5 6 7; do
105 verbose "$tid: disallow bad server #$i" 106 verbose "$tid: disallow bad server #$i"
106 SCPTESTMODE=badserver_$i 107 SCPTESTMODE=badserver_$i
107 export DIR SCPTESTMODE 108 export DIR SCPTESTMODE
@@ -113,6 +114,15 @@ for i in 0 1 2 3 4; do
113 scpclean 114 scpclean
114 $SCP -r $scpopts somehost:${DATA} ${DIR2} >/dev/null 2>/dev/null 115 $SCP -r $scpopts somehost:${DATA} ${DIR2} >/dev/null 2>/dev/null
115 [ -d ${DIR}/dotpathdir ] && fail "allows dir creation outside of subdir" 116 [ -d ${DIR}/dotpathdir ] && fail "allows dir creation outside of subdir"
117
118 scpclean
119 $SCP -pr $scpopts somehost:${DATA} ${DIR2} >/dev/null 2>/dev/null
120 [ ! -w ${DIR2} ] && fail "allows target root attribute change"
121
122 scpclean
123 $SCP $scpopts somehost:${DATA} ${DIR2} >/dev/null 2>/dev/null
124 [ -e ${DIR2}/extrafile ] && fail "allows unauth object creation"
125 rm -f ${DIR2}/extrafile
116done 126done
117 127
118verbose "$tid: detect non-directory target" 128verbose "$tid: detect non-directory target"