From c99a5121fea7302943abb8397c2829aa897e69f6 Mon Sep 17 00:00:00 2001 From: evilsocket Date: Wed, 27 Mar 2019 13:48:52 +0100 Subject: [PATCH] new: [IMPORTANT] net.recon is not in the autostarted list of modules anymore --- core/options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/options.go b/core/options.go index e1a478e2..62d4e33d 100644 --- a/core/options.go +++ b/core/options.go @@ -22,7 +22,7 @@ func ParseOptions() (Options, error) { o := Options{ InterfaceName: flag.String("iface", "", "Network interface to bind to, if empty the default interface will be auto selected."), Gateway: flag.String("gateway-override", "", "Use the provided IP address instead of the default gateway. If not specified or invalid, the default gateway will be used."), - AutoStart: flag.String("autostart", "events.stream, net.recon", "Comma separated list of modules to auto start."), + AutoStart: flag.String("autostart", "events.stream", "Comma separated list of modules to auto start."), Caplet: flag.String("caplet", "", "Read commands from this file and execute them in the interactive session."), Debug: flag.Bool("debug", false, "Print debug messages."), PrintVersion: flag.Bool("version", false, "Print the version and exit."),