fix: using spoofed names for TLS certificate generation in order to be less fingerprintable (fixes #12)

This commit is contained in:
evilsocket 2018-01-14 14:12:11 +01:00
commit 2454a669bb
2 changed files with 7 additions and 6 deletions

View file

@ -42,12 +42,12 @@ func NewRestAPI(s *session.Session) *RestAPI {
"API authentication username."))
api.AddParam(session.NewStringParameter("api.rest.certificate",
"~/.bettercap-ng.api.rest.certificate.pem",
"~/.bcap-api.rest.certificate.pem",
"",
"API TLS certificate."))
api.AddParam(session.NewStringParameter("api.rest.key",
"~/.bettercap-ng.api.rest.key.pem",
"~/.bcap-api.rest.key.pem",
"",
"API TLS key"))