From 611818080ad5816e0e662e5e874a66d258df78ce Mon Sep 17 00:00:00 2001 From: Ilija Lazoroski Date: Fri, 1 Jul 2022 18:12:58 +0200 Subject: [PATCH] UI: Fix some typos in json schema --- .../services/configuration/definitions/custom_pbas.js | 10 +++++----- .../services/configuration/definitions/propagation.js | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/monkey/monkey_island/cc/ui/src/services/configuration/definitions/custom_pbas.js b/monkey/monkey_island/cc/ui/src/services/configuration/definitions/custom_pbas.js index 322aaf083..9ff14d3cc 100644 --- a/monkey/monkey_island/cc/ui/src/services/configuration/definitions/custom_pbas.js +++ b/monkey/monkey_island/cc/ui/src/services/configuration/definitions/custom_pbas.js @@ -6,14 +6,14 @@ export const customPBAConfigurationSchema = { 'type': 'string', 'default': '', 'description': 'Command to be executed after breaching. ' + - 'Use this field to run custom commands or execute uploaded ' + - 'files on exploited machines.\nExample: ' + + 'Use this field to run custom commands or execute the uploaded ' + + 'file on exploited machines.\nExample: ' + '"chmod +x ./my_script.sh; ./my_script.sh ; rm ./my_script.sh"' }, 'linux_filename': { 'title': 'Linux post-breach file', 'type': 'string', - 'description': 'File to be uploaded after braeaching. ' + + 'description': 'File to be uploaded after breaching. ' + 'Use the "Linux post-breach command" field to ' + 'change permissions, run, or delete the file. ' + 'Reference your file by filename.' @@ -23,7 +23,7 @@ export const customPBAConfigurationSchema = { 'type': 'string', 'default': '', 'description': 'Command to be executed after breaching. ' + - 'Use this field to run custom commands or execute uploaded ' + + 'Use this field to run custom commands or execute the uploaded ' + 'file on exploited machine.\nExample: ' + '"my_script.bat & del my_script.bat"' }, @@ -31,7 +31,7 @@ export const customPBAConfigurationSchema = { 'title': 'Windows post-breach file', 'type': 'string', 'description': 'File to be uploaded after breaching. ' + - 'Use the "Windows post-breach command" filed to ' + + 'Use the "Windows post-breach command" field to ' + 'change permissions, run or delete the file. ' + 'Reference your file by filename.' } diff --git a/monkey/monkey_island/cc/ui/src/services/configuration/definitions/propagation.js b/monkey/monkey_island/cc/ui/src/services/configuration/definitions/propagation.js index 0d8944909..3099876dc 100644 --- a/monkey/monkey_island/cc/ui/src/services/configuration/definitions/propagation.js +++ b/monkey/monkey_island/cc/ui/src/services/configuration/definitions/propagation.js @@ -11,7 +11,7 @@ export const propagationConfigurationSchema = { 'type': 'integer', 'minimum': 1, 'default': 2, - 'description': 'Amount of hops alloed for the monkey to spread from the ' + + 'description': 'Amount of hops allowed for the monkey to spread from the ' + 'Island server. \n' + ' \u26A0' + ' Note that setting this value too high may result in the ' +