12 lines
228 B
Go
12 lines
228 B
Go
|
package honeypot
|
||
|
|
||
|
type ActionType int
|
||
|
|
||
|
const (
|
||
|
ActionTypeLogPassword ActionType = iota
|
||
|
ActionTypeLogPasswordSlow
|
||
|
ActionTypeLogCommandAndExit
|
||
|
ActionTypeSendGarbage
|
||
|
)
|
||
|
const ActionTypeDefault ActionType = ActionTypeLogPassword
|