forked from p34709852/monkey
Changed default scanning size to be bigger.
This commit is contained in:
parent
0a61e83a15
commit
297686dc53
|
@ -141,10 +141,10 @@ class Configuration(object):
|
||||||
exploiter_classes = []
|
exploiter_classes = []
|
||||||
|
|
||||||
# how many victims to look for in a single scan iteration
|
# how many victims to look for in a single scan iteration
|
||||||
victims_max_find = 30
|
victims_max_find = 100
|
||||||
|
|
||||||
# how many victims to exploit before stopping
|
# how many victims to exploit before stopping
|
||||||
victims_max_exploit = 7
|
victims_max_exploit = 15
|
||||||
|
|
||||||
# depth of propagation
|
# depth of propagation
|
||||||
depth = 2
|
depth = 2
|
||||||
|
|
|
@ -98,8 +98,8 @@
|
||||||
],
|
],
|
||||||
"timeout_between_iterations": 10,
|
"timeout_between_iterations": 10,
|
||||||
"use_file_logging": true,
|
"use_file_logging": true,
|
||||||
"victims_max_exploit": 7,
|
"victims_max_exploit": 15,
|
||||||
"victims_max_find": 30,
|
"victims_max_find": 100,
|
||||||
"post_breach_actions" : []
|
"post_breach_actions" : []
|
||||||
custom_PBA_linux_cmd = ""
|
custom_PBA_linux_cmd = ""
|
||||||
custom_PBA_windows_cmd = ""
|
custom_PBA_windows_cmd = ""
|
||||||
|
|
|
@ -447,13 +447,13 @@ SCHEMA = {
|
||||||
"victims_max_find": {
|
"victims_max_find": {
|
||||||
"title": "Max victims to find",
|
"title": "Max victims to find",
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"default": 30,
|
"default": 100,
|
||||||
"description": "Determines the maximum number of machines the monkey is allowed to scan"
|
"description": "Determines the maximum number of machines the monkey is allowed to scan"
|
||||||
},
|
},
|
||||||
"victims_max_exploit": {
|
"victims_max_exploit": {
|
||||||
"title": "Max victims to exploit",
|
"title": "Max victims to exploit",
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"default": 7,
|
"default": 15,
|
||||||
"description":
|
"description":
|
||||||
"Determines the maximum number of machines the monkey"
|
"Determines the maximum number of machines the monkey"
|
||||||
" is allowed to successfully exploit. " + WARNING_SIGN
|
" is allowed to successfully exploit. " + WARNING_SIGN
|
||||||
|
|
Loading…
Reference in New Issue