cc: Reword ransomware configuration fields' descriptions

This commit is contained in:
Shreya 2021-06-30 13:43:06 +05:30
parent 619695d5bc
commit aecb80566b
1 changed files with 8 additions and 6 deletions

View File

@ -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.",
},
},
},