Allowing the possiblity to activate or deactivate modules

This commit is contained in:
Christopher Talib 2020-02-14 11:30:59 +01:00
parent bd3f108d12
commit e963633c89

View file

@ -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)
```