new: implemented proper dynamic tab completion for every available command and module (fixes #14)

This commit is contained in:
evilsocket 2018-01-14 14:00:58 +01:00
parent 1fc64d564e
commit 64c35fe846
4 changed files with 103 additions and 28 deletions

View file

@ -2,9 +2,10 @@ package session
import (
"fmt"
"github.com/evilsocket/bettercap-ng/core"
"regexp"
"strconv"
"github.com/evilsocket/bettercap-ng/core"
)
const IPv4Validator = `^(?:[0-9]{1,3}\.){3}[0-9]{1,3}$`