mirror of
https://github.com/mariocandela/beelzebub.git
synced 2025-07-01 18:47:26 -04:00
Implemented tcp honeypot
This commit is contained in:
@ -52,10 +52,11 @@ type Protocol int
|
||||
const (
|
||||
HTTP Protocol = iota
|
||||
SSH
|
||||
TCP
|
||||
)
|
||||
|
||||
func (status Protocol) String() string {
|
||||
return [...]string{"HTTP", "SSH"}[status]
|
||||
return [...]string{"HTTP", "SSH", "TCP"}[status]
|
||||
}
|
||||
|
||||
type Status int
|
||||
|
Reference in New Issue
Block a user