mirror of
				https://github.com/TeaOSLab/EdgeNode.git
				synced 2025-11-04 07:40:56 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			565 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			565 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package waf
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/TeaOSLab/EdgeNode/internal/waf/requests"
 | 
						|
	"net/http"
 | 
						|
)
 | 
						|
 | 
						|
type LogAction struct {
 | 
						|
	BaseAction
 | 
						|
}
 | 
						|
 | 
						|
func (this *LogAction) Init(waf *WAF) error {
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (this *LogAction) Code() string {
 | 
						|
	return ActionLog
 | 
						|
}
 | 
						|
 | 
						|
func (this *LogAction) IsAttack() bool {
 | 
						|
	return false
 | 
						|
}
 | 
						|
 | 
						|
func (this *LogAction) WillChange() bool {
 | 
						|
	return false
 | 
						|
}
 | 
						|
 | 
						|
func (this *LogAction) Perform(waf *WAF, group *RuleGroup, set *RuleSet, request requests.Request, writer http.ResponseWriter) PerformResult {
 | 
						|
	return PerformResult{
 | 
						|
		ContinueRequest: true,
 | 
						|
	}
 | 
						|
}
 |