Buffer overflows are one of the most well-known software vulnerabilities. Even though most developers know what buffer overflows are, attacks against the vulnerabilities are common in both legacy and newer applications. A classic buffer overflow exploit begins with the attacker sending data to a program, which it then stores in an undersized stack buffer. Besides stack buffer overflows, other kinds of buffer overflows include heap overflows, off-by-one errors and many others. Learn more about buffer overflows on OWASP attack index.
Easily used incorrectly.
cgmanager/src/cgmanager-0.41/cgmanager.c
The highlighted line of code below is the trigger point of this particular Alpine 3.6 buffer weakness.
nih_error("%s: Could not determine the requested cgroup (%s:%s)",
__func__, controller, cgroup);
return -1;
}
/* Check access rights to the cgroup directory */
if (!may_access(r.pid, r.uid, r.gid, path, O_RDONLY)) {
nih_debug("%s: Pid %d may not access %s\n", __func__, r.pid, path);
return -1;
}
if (!path_is_under_proxycg(p.pid, controller, path)) {
nih_debug("%s: target cgroup is not below r (%d)'s", __func__,
r.pid);
return -1;
}
/* append the filename */
if (strlen(path) + strlen(key) + 2 > MAXPATHLEN) {
nih_error("%s: filename too long for cgroup %s key %s", __func__, path, key);
return -1;
}
strncat(path, "/", MAXPATHLEN-1);
strncat(path, key, MAXPATHLEN-1);
/* Check access rights to the file itself */
if (!may_access(r.pid, r.uid, r.gid, path, O_RDONLY)) {
nih_debug("%s: Pid %d may not access %s\n", __func__, r.pid, path);
return -1;
}
/* read and return the value */
*value = file_read_string(parent, path);
if (!*value) {
nih_error("%s: Failed to read value from %s", __func__, path);
return -1;
}
nih_info(_("Sending to client: %s"), *value);
return 0;
}
int set_value_main(char *controller, const char *cgroup,
const char *key, const char *value, struct ucred p,
struct ucred r)
{
char path[MAXPATHLEN];