forked from p34709852/monkey
UI: Fix some typos in json schema
This commit is contained in:
parent
7cf64e798a
commit
611818080a
|
@ -6,14 +6,14 @@ export const customPBAConfigurationSchema = {
|
||||||
'type': 'string',
|
'type': 'string',
|
||||||
'default': '',
|
'default': '',
|
||||||
'description': 'Command to be executed after breaching. ' +
|
'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 ' +
|
||||||
'files on exploited machines.\nExample: ' +
|
'file on exploited machines.\nExample: ' +
|
||||||
'"chmod +x ./my_script.sh; ./my_script.sh ; rm ./my_script.sh"'
|
'"chmod +x ./my_script.sh; ./my_script.sh ; rm ./my_script.sh"'
|
||||||
},
|
},
|
||||||
'linux_filename': {
|
'linux_filename': {
|
||||||
'title': 'Linux post-breach file',
|
'title': 'Linux post-breach file',
|
||||||
'type': 'string',
|
'type': 'string',
|
||||||
'description': 'File to be uploaded after braeaching. ' +
|
'description': 'File to be uploaded after breaching. ' +
|
||||||
'Use the "Linux post-breach command" field to ' +
|
'Use the "Linux post-breach command" field to ' +
|
||||||
'change permissions, run, or delete the file. ' +
|
'change permissions, run, or delete the file. ' +
|
||||||
'Reference your file by filename.'
|
'Reference your file by filename.'
|
||||||
|
@ -23,7 +23,7 @@ export const customPBAConfigurationSchema = {
|
||||||
'type': 'string',
|
'type': 'string',
|
||||||
'default': '',
|
'default': '',
|
||||||
'description': 'Command to be executed after breaching. ' +
|
'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: ' +
|
'file on exploited machine.\nExample: ' +
|
||||||
'"my_script.bat & del my_script.bat"'
|
'"my_script.bat & del my_script.bat"'
|
||||||
},
|
},
|
||||||
|
@ -31,7 +31,7 @@ export const customPBAConfigurationSchema = {
|
||||||
'title': 'Windows post-breach file',
|
'title': 'Windows post-breach file',
|
||||||
'type': 'string',
|
'type': 'string',
|
||||||
'description': 'File to be uploaded after breaching. ' +
|
'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. ' +
|
'change permissions, run or delete the file. ' +
|
||||||
'Reference your file by filename.'
|
'Reference your file by filename.'
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@ export const propagationConfigurationSchema = {
|
||||||
'type': 'integer',
|
'type': 'integer',
|
||||||
'minimum': 1,
|
'minimum': 1,
|
||||||
'default': 2,
|
'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' +
|
'Island server. \n' +
|
||||||
' \u26A0' +
|
' \u26A0' +
|
||||||
' Note that setting this value too high may result in the ' +
|
' Note that setting this value too high may result in the ' +
|
||||||
|
|
Loading…
Reference in New Issue