mirror of
https://github.com/bettercap/bettercap
synced 2025-07-10 23:33:28 -07:00
fix: net.sniff.verbose is false by default
This commit is contained in:
parent
2e952456bd
commit
9533c67d88
2 changed files with 2 additions and 2 deletions
|
@ -24,7 +24,7 @@ func NewSniffer(s *session.Session) *Sniffer {
|
|||
}
|
||||
|
||||
sniff.AddParam(session.NewBoolParameter("net.sniff.verbose",
|
||||
"true",
|
||||
"false",
|
||||
"If true, every captured and parsed packet will be sent to the events.stream for displaying, otherwise only the ones parsed at the application layer (sni, http, etc)."))
|
||||
|
||||
sniff.AddParam(session.NewBoolParameter("net.sniff.local",
|
||||
|
|
|
@ -87,7 +87,7 @@ func NewSnifferContext() *SnifferContext {
|
|||
return &SnifferContext{
|
||||
Handle: nil,
|
||||
DumpLocal: false,
|
||||
Verbose: true,
|
||||
Verbose: false,
|
||||
Filter: "",
|
||||
Expression: "",
|
||||
Compiled: nil,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue