diff options
author | djm@openbsd.org <djm@openbsd.org> | 2018-11-16 04:03:10 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2018-11-16 04:04:35 +0100 |
commit | 6010c0303a422a9c5fa8860c061bf7105eb7f8b2 (patch) | |
tree | f5700e27b597a4875f54eb05fb40d8390fa760b0 /scp.c | |
parent | upstream: fix bug in client that was keeping a redundant ssh-agent (diff) | |
download | openssh-6010c0303a422a9c5fa8860c061bf7105eb7f8b2.tar.xz openssh-6010c0303a422a9c5fa8860c061bf7105eb7f8b2.zip |
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.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: scp.c,v 1.197 2018/06/01 04:31:48 dtucker Exp $ */ +/* $OpenBSD: scp.c,v 1.198 2018/11/16 03:03:10 djm Exp $ */ /* * scp - secure remote copy. This is basically patched BSD rcp which * uses ssh to do the data transfer (instead of using rcmd). @@ -1106,7 +1106,8 @@ sink(int argc, char **argv) SCREWUP("size out of range"); size = (off_t)ull; - if ((strchr(cp, '/') != NULL) || (strcmp(cp, "..") == 0)) { + if (*cp == '\0' || strchr(cp, '/') != NULL || + strcmp(cp, ".") == 0 || strcmp(cp, "..") == 0) { run_err("error: unexpected filename: %s", cp); exit(1); } |