forked from p15670423/monkey
Common: Change minimum value of maximum_depth in PropagationConfigurationSchema to 0
This commit is contained in:
parent
b4243216a3
commit
a9fa7427f3
|
@ -135,7 +135,7 @@ class ExploitationConfigurationSchema(Schema):
|
||||||
|
|
||||||
|
|
||||||
class PropagationConfigurationSchema(Schema):
|
class PropagationConfigurationSchema(Schema):
|
||||||
maximum_depth = fields.Int(validate=validate.Range(min=1))
|
maximum_depth = fields.Int(validate=validate.Range(min=0))
|
||||||
network_scan = fields.Nested(NetworkScanConfigurationSchema)
|
network_scan = fields.Nested(NetworkScanConfigurationSchema)
|
||||||
exploitation = fields.Nested(ExploitationConfigurationSchema)
|
exploitation = fields.Nested(ExploitationConfigurationSchema)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue