mirror of
https://github.com/evilsocket/opensnitch.git
synced 2025-03-04 16:44:46 +01:00
87 lines
1.7 KiB
Go
87 lines
1.7 KiB
Go
![]() |
package rule
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"time"
|
||
|
|
||
|
"github.com/evilsocket/opensnitch/daemon/conman"
|
||
|
)
|
||
|
|
||
|
type OperandType string
|
||
|
|
||
|
const (
|
||
|
OpTrue = OperandType("true")
|
||
|
OpProcessPath = OperandType("process.path")
|
||
|
OpDstIP = OperandType("dest.ip")
|
||
|
OpDstHost = OperandType("dest.host")
|
||
|
)
|
||
|
|
||
|
type Cmp struct {
|
||
|
What OperandType
|
||
|
With string
|
||
|
}
|
||
|
|
||
|
type Action string
|
||
|
|
||
|
const (
|
||
|
Allow = Action("allow")
|
||
|
Deny = Action("deny")
|
||
|
)
|
||
|
|
||
|
type Duration string
|
||
|
|
||
|
const (
|
||
|
Once = Duration("once")
|
||
|
Restart = Duration("until restart")
|
||
|
Always = Duration("always")
|
||
|
)
|
||
|
|
||
|
type Type string
|
||
|
|
||
|
const (
|
||
|
Simple = Type("simple")
|
||
|
Complex = Type("complex") // for future use
|
||
|
)
|
||
|
|
||
|
type Rule struct {
|
||
|
Created time.Time `json:"created"`
|
||
|
Updated time.Time `json:"updated"`
|
||
|
Name string `json:"name"`
|
||
|
Enabled bool `json:"enabled"`
|
||
|
Action Action `json:"action"`
|
||
|
Duration Duration `json:"duration"`
|
||
|
Type Type `json:"type"`
|
||
|
Rule Cmp `json:"rule"`
|
||
|
}
|
||
|
|
||
|
func Create(name string, action Action, duration Duration, rule Cmp) *Rule {
|
||
|
return &Rule{
|
||
|
Created: time.Now(),
|
||
|
Enabled: true,
|
||
|
Name: name,
|
||
|
Action: action,
|
||
|
Duration: duration,
|
||
|
Type: Simple,
|
||
|
Rule: rule,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (r *Rule) String() string {
|
||
|
return fmt.Sprintf("%s: if(%s == '%s'){ %s %s }", r.Name, r.Rule.What, r.Rule.With, r.Action, r.Duration)
|
||
|
}
|
||
|
|
||
|
func (r *Rule) Match(con *conman.Connection) bool {
|
||
|
if r.Enabled == false {
|
||
|
return false
|
||
|
} else if r.Rule.What == OpTrue {
|
||
|
return true
|
||
|
} else if r.Rule.What == OpProcessPath {
|
||
|
return con.Process.Path == r.Rule.With
|
||
|
} else if r.Rule.What == OpDstIP {
|
||
|
return con.DstIP.String() == r.Rule.With
|
||
|
} else if r.Rule.What == OpDstHost {
|
||
|
return con.DstHost == r.Rule.With
|
||
|
}
|
||
|
return false
|
||
|
}
|