-
Notifications
You must be signed in to change notification settings - Fork 75
Advanced Configuration
S1kk1S edited this page Jun 16, 2020
·
1 revision
In the c2 module the user has the ability to install tools from a list. The tool automatically loads the scripts from the ./redbaron/data/scripts/tools
. By adding a new script in the directory, you can install by the tools
variable in the c2 module. We encourage though to use the ansible module.
The ./config/config.json
file contains the default configuration on each module and the providers that are used by overlord. By changing each object, you can customize the default values of each module when it loads to Overlord.
// Default
"mod_c2": {
"module": "c2",
"type" : "http",
"redirectors": 1,
"tools": [],
"region": "LON1",
"provider": "digitalocean",
"size": "s-1vcpu-1gb",
"id": ""
}
// Customized
"mod_c2": {
"module": "c2",
"type" : "http",
"redirectors": 0,
"tools": ["metasploit","empire"],
"region": "us-east-2",
"provider": "aws",
"size": "t2.nano",
"id": ""
}