There was an error while loading. Please reload this page.
1 parent c32ef45 commit 4667d15Copy full SHA for 4667d15
usr.bin/ssh/scp.c
@@ -1,4 +1,4 @@
1
-/* $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 $ */
2
/*
3
* scp - secure remote copy. This is basically patched BSD rcp which
4
* uses ssh to do the data transfer (instead of using rcmd).
@@ -1083,7 +1083,8 @@ sink(int argc, char **argv)
1083
SCREWUP("size out of range");
1084
size = (off_t)ull;
1085
1086
-if ((strchr(cp, '/') != NULL) || (strcmp(cp, "..") == 0)) {
+if (*cp == '\0' || strchr(cp, '/') != NULL ||
1087
+ strcmp(cp, ".") == 0 || strcmp(cp, "..") == 0) {
1088
run_err("error: unexpected filename: %s", cp);
1089
exit(1);
1090
}
0 commit comments