apiary/honeypot/actions.go
2021-04-10 07:58:01 +02:00

12 lines
228 B
Go

package honeypot
type ActionType int
const (
ActionTypeLogPassword ActionType = iota
ActionTypeLogPasswordSlow
ActionTypeLogCommandAndExit
ActionTypeSendGarbage
)
const ActionTypeDefault ActionType = ActionTypeLogPassword