From d3ce9562242f6e2af4052af4f78db8cfea0eeb04 Mon Sep 17 00:00:00 2001 From: Itay Mizeretz Date: Tue, 20 Feb 2018 16:21:23 +0200 Subject: [PATCH] Change description of config value --- monkey_island/cc/services/config.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/monkey_island/cc/services/config.py b/monkey_island/cc/services/config.py index ea755312f..361854f05 100644 --- a/monkey_island/cc/services/config.py +++ b/monkey_island/cc/services/config.py @@ -223,7 +223,7 @@ SCHEMA = { " Class C Range will scan machines in the Class C network the monkey's on." }, "range_fixed": { - "title": "Fixed range IP list", + "title": "Fixed range IP/subnet list", "type": "array", "uniqueItems": True, "items": { @@ -232,8 +232,9 @@ SCHEMA = { "default": [ ], "description": - "List of IPs to include when using FixedRange" - " (Only relevant for Fixed Range)" + "List of IPs/subnets to include when using FixedRange" + " (Only relevant for Fixed Range)." + " Examples: \"192.168.0.1\", \"192.168.0.5-192.168.0.20\", \"192.168.0.5/24\"" } } }