summaryrefslogtreecommitdiff
path: root/scp.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2018-11-16 03:03:10 +0000
committerDamien Miller <djm@mindrot.org>2018-11-16 14:04:35 +1100
commit6010c0303a422a9c5fa8860c061bf7105eb7f8b2 (patch)
treef5700e27b597a4875f54eb05fb40d8390fa760b0 /scp.c
parentaaed635e3a401cfcc4cc97f33788179c458901c3 (diff)
upstream: disallow empty incoming filename or ones that refer to the
current directory; based on report/patch from Harry Sintonen OpenBSD-Commit-ID: f27651b30eaee2df49540ab68d030865c04f6de9
Diffstat (limited to 'scp.c')
-rw-r--r--scp.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/scp.c b/scp.c
index 60682c687..4f3fdcd3d 100644
--- a/scp.c
+++ b/scp.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: scp.c,v 1.197 2018/06/01 04:31:48 dtucker Exp $ */ 1/* $OpenBSD: scp.c,v 1.198 2018/11/16 03:03:10 djm Exp $ */
2/* 2/*
3 * scp - secure remote copy. This is basically patched BSD rcp which 3 * scp - secure remote copy. This is basically patched BSD rcp which
4 * uses ssh to do the data transfer (instead of using rcmd). 4 * uses ssh to do the data transfer (instead of using rcmd).
@@ -1106,7 +1106,8 @@ sink(int argc, char **argv)
1106 SCREWUP("size out of range"); 1106 SCREWUP("size out of range");
1107 size = (off_t)ull; 1107 size = (off_t)ull;
1108 1108
1109 if ((strchr(cp, '/') != NULL) || (strcmp(cp, "..") == 0)) { 1109 if (*cp == '\0' || strchr(cp, '/') != NULL ||
1110 strcmp(cp, ".") == 0 || strcmp(cp, "..") == 0) {
1110 run_err("error: unexpected filename: %s", cp); 1111 run_err("error: unexpected filename: %s", cp);
1111 exit(1); 1112 exit(1);
1112 } 1113 }