mirror of
https://github.com/moparisthebest/curl
synced 2024-11-10 11:35:07 -05:00
file: on Windows, refuse paths that start with \\
... as that might cause an unexpected SMB connection to a given host name. Reported-by: Fernando Muñoz CVE-2019-15601 Bug: https://curl.haxx.se/docs/CVE-2019-15601.html
This commit is contained in:
parent
aeb32d059b
commit
1b71bc532b
@ -136,7 +136,7 @@ static CURLcode file_connect(struct connectdata *conn, bool *done)
|
|||||||
struct Curl_easy *data = conn->data;
|
struct Curl_easy *data = conn->data;
|
||||||
char *real_path;
|
char *real_path;
|
||||||
struct FILEPROTO *file = data->req.protop;
|
struct FILEPROTO *file = data->req.protop;
|
||||||
int fd;
|
int fd = -1;
|
||||||
#ifdef DOS_FILESYSTEM
|
#ifdef DOS_FILESYSTEM
|
||||||
size_t i;
|
size_t i;
|
||||||
char *actual_path;
|
char *actual_path;
|
||||||
@ -181,6 +181,8 @@ static CURLcode file_connect(struct connectdata *conn, bool *done)
|
|||||||
return CURLE_URL_MALFORMAT;
|
return CURLE_URL_MALFORMAT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(strncmp("\\\\", actual_path, 2))
|
||||||
|
/* refuse to open path that starts with two backslashes */
|
||||||
fd = open_readonly(actual_path, O_RDONLY|O_BINARY);
|
fd = open_readonly(actual_path, O_RDONLY|O_BINARY);
|
||||||
file->path = actual_path;
|
file->path = actual_path;
|
||||||
#else
|
#else
|
||||||
|
Loading…
Reference in New Issue
Block a user