mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 06:03:57 +08:00
74b3c7cf90
Bumps [github.com/moby/sys/user](https://github.com/moby/sys) from 0.4.0 to 0.4.1. - [Release notes](https://github.com/moby/sys/releases) - [Commits](https://github.com/moby/sys/compare/user/v0.4.0...user/v0.4.1) --- updated-dependencies: - dependency-name: github.com/moby/sys/user dependency-version: 0.4.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
43 lines
764 B
Go
43 lines
764 B
Go
//go:build gofuzz
|
|
|
|
package user
|
|
|
|
import (
|
|
"io"
|
|
"strings"
|
|
)
|
|
|
|
func IsDivisbleBy(n int, divisibleby int) bool {
|
|
return (n % divisibleby) == 0
|
|
}
|
|
|
|
func FuzzUser(data []byte) int {
|
|
if len(data) == 0 {
|
|
return -1
|
|
}
|
|
if !IsDivisbleBy(len(data), 5) {
|
|
return -1
|
|
}
|
|
|
|
var divided [][]byte
|
|
|
|
chunkSize := len(data) / 5
|
|
|
|
for i := 0; i < len(data); i += chunkSize {
|
|
end := i + chunkSize
|
|
|
|
divided = append(divided, data[i:end])
|
|
}
|
|
|
|
_, _ = ParsePasswdFilter(strings.NewReader(string(divided[0])), nil)
|
|
|
|
var passwd, group io.Reader
|
|
|
|
group = strings.NewReader(string(divided[1]))
|
|
_, _ = GetAdditionalGroups([]string{string(divided[2])}, group)
|
|
|
|
passwd = strings.NewReader(string(divided[3]))
|
|
_, _ = GetExecUser(string(divided[4]), nil, passwd, group)
|
|
return 1
|
|
}
|