2020-10-08 15:06:42 +08:00
|
|
|
package waf
|
|
|
|
|
|
|
|
|
|
import (
|
2022-08-25 16:44:44 +08:00
|
|
|
"github.com/TeaOSLab/EdgeNode/internal/remotelogs"
|
2020-10-08 15:06:42 +08:00
|
|
|
"github.com/TeaOSLab/EdgeNode/internal/waf/requests"
|
2021-11-16 16:11:05 +08:00
|
|
|
"github.com/iwind/TeaGo/types"
|
2020-10-08 15:06:42 +08:00
|
|
|
"net/http"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type GoGroupAction struct {
|
2022-05-21 11:17:53 +08:00
|
|
|
BaseAction
|
|
|
|
|
|
2020-10-08 15:06:42 +08:00
|
|
|
GroupId string `yaml:"groupId" json:"groupId"`
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-18 15:51:49 +08:00
|
|
|
func (this *GoGroupAction) Init(waf *WAF) error {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (this *GoGroupAction) Code() string {
|
|
|
|
|
return ActionGoGroup
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (this *GoGroupAction) IsAttack() bool {
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (this *GoGroupAction) WillChange() bool {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-25 16:44:44 +08:00
|
|
|
func (this *GoGroupAction) Perform(waf *WAF, group *RuleGroup, set *RuleSet, request requests.Request, writer http.ResponseWriter) (continueRequest bool, goNextSet bool) {
|
2021-11-16 16:11:05 +08:00
|
|
|
nextGroup := waf.FindRuleGroup(types.Int64(this.GroupId))
|
2021-07-18 15:51:49 +08:00
|
|
|
if nextGroup == nil || !nextGroup.IsOn {
|
2022-08-25 16:44:44 +08:00
|
|
|
return true, true
|
2020-10-08 15:06:42 +08:00
|
|
|
}
|
|
|
|
|
|
2022-07-16 17:05:37 +08:00
|
|
|
b, _, nextSet, err := nextGroup.MatchRequest(request)
|
2020-10-08 15:06:42 +08:00
|
|
|
if err != nil {
|
2022-08-25 16:44:44 +08:00
|
|
|
remotelogs.Error("WAF", "GO_GROUP_ACTION: "+err.Error())
|
|
|
|
|
return true, false
|
2020-10-08 15:06:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if !b {
|
2022-08-25 16:44:44 +08:00
|
|
|
return true, false
|
2020-10-08 15:06:42 +08:00
|
|
|
}
|
|
|
|
|
|
2021-07-18 15:51:49 +08:00
|
|
|
return nextSet.PerformActions(waf, nextGroup, request, writer)
|
2020-10-08 15:06:42 +08:00
|
|
|
}
|