parent
3f98e86e24
commit
14a5d8deae
3 changed files with 28 additions and 1 deletions
|
|
@ -138,7 +138,12 @@ func New(file io.Reader, profile string) AppArmorLogs {
|
|||
|
||||
aa := make(AppArmorLog)
|
||||
for _, item := range tmp {
|
||||
kv := strings.Split(item, "=")
|
||||
kv := strings.FieldsFunc(item, func(r rune) bool {
|
||||
if r == '"' {
|
||||
quoted = !quoted
|
||||
}
|
||||
return !quoted && r == '='
|
||||
})
|
||||
if len(kv) >= 2 {
|
||||
key, value := kv[0], kv[1]
|
||||
if slices.Contains(toClean, key) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue