From e963633c8903445cadf770dd6d5708603496a1a8 Mon Sep 17 00:00:00 2001 From: Christopher Talib Date: Fri, 14 Feb 2020 11:30:59 +0100 Subject: [PATCH] Allowing the possiblity to activate or deactivate modules --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 53bbd96..16b853e 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,14 @@ go build ### Example configuration: ``` // config.yml +certstream: + activated: true (Boolean) + +pastebin: + activated: true (Boolean) + shodan: + activated: true (Boolean) key: String (Required) ports: - 80 @@ -19,6 +26,7 @@ shodan: // do not forget to set up kafka and create the topic kafka: + activated: true (Boolean) protocol: "tcp" (String) host: "localhost" (String) port: 9092 (Int) @@ -27,6 +35,7 @@ kafka: balboa: url: String (Required) + activated: true (Boolean) ```