diff --git a/stream/telnet/telnet.go b/stream/telnet/telnet.go index 7c6f832..22034ef 100644 --- a/stream/telnet/telnet.go +++ b/stream/telnet/telnet.go @@ -68,6 +68,9 @@ func Serve(config *Options) { return } + // Avoid bruteforce + time.Sleep(3 * time.Second) + streamID = string(buff[:n]) streamID = strings.Replace(streamID, "\r", "", -1) streamID = strings.Replace(streamID, "\n", "", -1)