From aecb80566baf4e5c6eaec687f376076e14417c68 Mon Sep 17 00:00:00 2001 From: Shreya Date: Wed, 30 Jun 2021 13:43:06 +0530 Subject: [PATCH] cc: Reword ransomware configuration fields' descriptions --- .../cc/services/config_schema/ransomware.py | 14 ++++++++------ 1 file changed, 8 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 50f23f162..78933107e 100644 --- a/monkey/monkey_island/cc/services/config_schema/ransomware.py +++ b/monkey/monkey_island/cc/services/config_schema/ransomware.py @@ -10,26 +10,28 @@ RANSOMWARE = { "title": "Encrypt files", "type": "boolean", "default": True, - "description": "Selected files will be encrypted using bitflip to simulate " - "ransomware. Enter target directories below.", + "description": "Ransomware encryption will be simulated by flipping every bit " + "in the files contained within the target directories.", }, "directories": { "title": "Directories to encrypt", "type": "object", "properties": { "linux_dir": { - "title": "Linux encryptable directory", + "title": "Linux target directory", "type": "string", "default": "", "description": "Files in the specified directory will be encrypted " - "using bitflip to simulate ransomware.", + "using bitflip. If no directory is specified, no files will be " + "encrypted.", }, "windows_dir": { - "title": "Windows encryptable directory", + "title": "Windows target directory", "type": "string", "default": "", "description": "Files in the specified directory will be encrypted " - "using bitflip to simulate ransomware.", + "using bitflip. If no directory is specified, no files will be " + "encrypted.", }, }, },