Mercurial > dropbear
changeset 1669:3080aed32bf1
scp.c: Port OpenSSH CVE-2018-20685 fix (#80)
author | Haelwenn Monnier <contact+github.com@hacktivis.me> |
---|---|
date | Mon, 25 May 2020 14:54:29 +0200 |
parents | 49cb3cf4bd6f |
children | aeda68938596 |
files | scp.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/scp.c Fri Mar 27 23:23:11 2020 +0800 +++ b/scp.c Mon May 25 14:54:29 2020 +0200 @@ -935,7 +935,8 @@ size = size * 10 + (*cp++ - '0'); if (*cp++ != ' ') SCREWUP("size not delimited"); - 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); }