From 9a58d5bc7addc2e4042a2fea310e87534d7b3d0a Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Wed, 30 Jun 2021 07:24:37 -0400 Subject: [PATCH] Island: Reword ransomware target directory descriptions --- .../cc/services/config_schema/ransomware.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/monkey/monkey_island/cc/services/config_schema/ransomware.py b/monkey/monkey_island/cc/services/config_schema/ransomware.py index 78933107e..fbc2e485e 100644 --- a/monkey/monkey_island/cc/services/config_schema/ransomware.py +++ b/monkey/monkey_island/cc/services/config_schema/ransomware.py @@ -21,17 +21,17 @@ RANSOMWARE = { "title": "Linux target directory", "type": "string", "default": "", - "description": "Files in the specified directory will be encrypted " - "using bitflip. If no directory is specified, no files will be " - "encrypted.", + "description": "A path to a directory on Linux systems that can be " + "used to safely simulate the encryption behavior of ransomware. If no " + "directory is specified, no files will be encrypted.", }, "windows_dir": { "title": "Windows target directory", "type": "string", "default": "", - "description": "Files in the specified directory will be encrypted " - "using bitflip. If no directory is specified, no files will be " - "encrypted.", + "description": "A path to a directory on Windows systems that can be " + "used to safely simulate the encryption behavior of ransomware. If no " + "directory is specified, no files will be encrypted.", }, }, },