Only drop supplementary groups if root is amongst them.
This commit is contained in:
parent
0274ef8f35
commit
c50accfaec
1 changed files with 4 additions and 6 deletions
|
@ -77,12 +77,10 @@ func DropPrivs(ui userInfo) error {
|
|||
}
|
||||
|
||||
// Drop supplementary groups
|
||||
if ui.root_supp_goup {
|
||||
err := syscall.Setgroups([]int{})
|
||||
if err != nil {
|
||||
// Log failure
|
||||
log.Println("Could not unset supplementary groups: " + err.Error())
|
||||
// Make this fatal if root was amongst supplementary groups
|
||||
if ui.root_supp_group {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue