mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
passing in a very long interface name could make a buffer overflow
This commit is contained in:
parent
c14650caec
commit
4af08a19f8
@ -94,8 +94,11 @@ char *Curl_if2ip(const char *interface, char *buf, int buf_size)
|
||||
}
|
||||
else {
|
||||
struct ifreq req;
|
||||
size_t len = strlen(interface);
|
||||
memset(&req, 0, sizeof(req));
|
||||
strcpy(req.ifr_name, interface);
|
||||
if(len >= sizeof(req.ifr_name))
|
||||
return NULL; /* this can't be a fine interface name */
|
||||
memcpy(req.ifr_name, interface, len+1);
|
||||
req.ifr_addr.sa_family = AF_INET;
|
||||
#ifdef IOCTL_3_ARGS
|
||||
if (SYS_ERROR == ioctl(dummy, SIOCGIFADDR, &req)) {
|
||||
|
Loading…
Reference in New Issue
Block a user