diff --git a/monkey_island/cc/services/config.py b/monkey_island/cc/services/config.py index 6e81e716a..97dae84cd 100644 --- a/monkey_island/cc/services/config.py +++ b/monkey_island/cc/services/config.py @@ -6,6 +6,8 @@ from cc.utils import local_ip_addresses __author__ = "itay.mizeretz" +WARNING_SIGN = u" \u26A0" + SCHEMA = { "title": "Monkey", "type": "object", @@ -189,7 +191,7 @@ SCHEMA = { "description": "Determines whether monkey should scan its subnets additionally" }, "depth": { - "title": "Depth", + "title": "Depth" + WARNING_SIGN, "type": "integer", "default": 2, "description": "Amount of hops allowed for the monkey to spread" @@ -294,7 +296,7 @@ SCHEMA = { "description": "Determines after how many discovered machines should the monkey stop scanning" }, "victims_max_exploit": { - "title": "Max victims to exploit", + "title": "Max victims to exploit" + WARNING_SIGN, "type": "integer", "default": 7, "description": "Determines after how many infected machines should the monkey stop infecting" @@ -371,7 +373,7 @@ SCHEMA = { "description": "Determines which classes to use for fingerprinting" }, "exploiter_classes": { - "title": "Exploiter classes", + "title": "Exploiter classes" + WARNING_SIGN, "type": "array", "uniqueItems": True, "items": { diff --git a/monkey_island/cc/ui/src/components/pages/ConfigurePage.js b/monkey_island/cc/ui/src/components/pages/ConfigurePage.js index cc8118b17..4fcff5c72 100644 --- a/monkey_island/cc/ui/src/components/pages/ConfigurePage.js +++ b/monkey_island/cc/ui/src/components/pages/ConfigurePage.js @@ -109,7 +109,6 @@ class ConfigurePageComponent extends React.Component { return (

Monkey Configuration

-