forked from p15670423/monkey
config bugfix - missing field
This commit is contained in:
parent
e26f849286
commit
b8519300ab
|
@ -146,6 +146,9 @@ class Configuration(object):
|
||||||
"127.0.0.1:5000"
|
"127.0.0.1:5000"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
# sets whether or not to locally save the running configuration after finishing
|
||||||
|
serialize_config = False
|
||||||
|
|
||||||
# sets whether or not to retry failed hosts on next scan
|
# sets whether or not to retry failed hosts on next scan
|
||||||
retry_failed_explotation = True
|
retry_failed_explotation = True
|
||||||
|
|
||||||
|
|
|
@ -64,7 +64,7 @@
|
||||||
"retry_failed_explotation": true,
|
"retry_failed_explotation": true,
|
||||||
"scanner_class": "TcpScanner",
|
"scanner_class": "TcpScanner",
|
||||||
"self_delete_in_cleanup": false,
|
"self_delete_in_cleanup": false,
|
||||||
"serialize_config": true,
|
"serialize_config": false,
|
||||||
"singleton_mutex_name": "{2384ec59-0df8-4ab9-918c-843740924a28}",
|
"singleton_mutex_name": "{2384ec59-0df8-4ab9-918c-843740924a28}",
|
||||||
"skip_exploit_if_file_exist": true,
|
"skip_exploit_if_file_exist": true,
|
||||||
"ssh_user": "root",
|
"ssh_user": "root",
|
||||||
|
|
Loading…
Reference in New Issue