2021-10-25 19:42:12 +08:00
|
|
|
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
|
|
|
|
|
|
package waf
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/TeaOSLab/EdgeNode/internal/waf/requests"
|
|
|
|
|
"net/http"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type PageAction struct {
|
|
|
|
|
BaseAction
|
|
|
|
|
|
|
|
|
|
Status int `yaml:"status" json:"status"`
|
|
|
|
|
Body string `yaml:"body" json:"body"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (this *PageAction) Init(waf *WAF) error {
|
2023-05-28 17:11:33 +08:00
|
|
|
if this.Status <= 0 {
|
|
|
|
|
this.Status = http.StatusForbidden
|
|
|
|
|
}
|
2021-10-25 19:42:12 +08:00
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (this *PageAction) Code() string {
|
|
|
|
|
return ActionPage
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (this *PageAction) IsAttack() bool {
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// WillChange determine if the action will change the request
|
|
|
|
|
func (this *PageAction) WillChange() bool {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Perform the action
|
2022-08-25 16:44:44 +08:00
|
|
|
func (this *PageAction) Perform(waf *WAF, group *RuleGroup, set *RuleSet, request requests.Request, writer http.ResponseWriter) (continueRequest bool, goNextSet bool) {
|
2021-10-25 19:42:12 +08:00
|
|
|
writer.Header().Set("Content-Type", "text/html; charset=utf-8")
|
|
|
|
|
writer.WriteHeader(this.Status)
|
|
|
|
|
_, _ = writer.Write([]byte(request.Format(this.Body)))
|
|
|
|
|
|
2022-08-25 16:44:44 +08:00
|
|
|
return false, false
|
2021-10-25 19:42:12 +08:00
|
|
|
}
|