Typo fixes and improvements

This commit is contained in:
VakarisZ 2020-07-24 12:40:06 +03:00
parent e8d210f001
commit cf45ec9401
2 changed files with 16 additions and 14 deletions

View File

@ -25,18 +25,19 @@ BASIC_NETWORK = {
"title": "Local network scan",
"type": "boolean",
"default": True,
"description": "Determines whether the monkey will scan the local subnets of machines it runs on, in "
"addition to the IPs that are configured manually in the 'scan target list'."
"description": "Determines whether the Monkey will scan the local subnets of machines it runs on, "
"in addition to the IPs that are configured manually in the \"Scan target list\"."
},
"depth": {
"title": "Distance from island",
"title": "Scan depth",
"type": "integer",
"minimum": 1,
"default": 2,
"description":
"Amount of hops allowed for the monkey to spread from the island. \n"
"Amount of hops allowed for the Monkey to spread from the Island server. \n"
+ WARNING_SIGN
+ " Note that setting this value too high may result in the monkey propagating too far."
+ " Note that setting this value too high may result in the Monkey propagating too far, "
"if the \"Local network scan\" is enabled."
},
"subnet_scan_list": {
"title": "Scan target list",
@ -49,7 +50,7 @@ BASIC_NETWORK = {
"default": [
],
"description":
"List of targets the Monkey will try to scan. The targets can be IPs, subnets or hosts."
"List of targets the Monkey will try to scan. Targets can be IPs, subnets or hosts."
" Examples:\n"
"\tTarget a specific IP: \"192.168.0.1\"\n"
"\tTarget a subnet using a network range: \"192.168.0.5-192.168.0.20\"\n"
@ -73,12 +74,13 @@ BASIC_NETWORK = {
"default": [
],
"description":
"Test for network segmentation by providing a list of network segments that should NOT be accessible "
"to each other.\n\n"
"For example, if you configured the following three segments: \"10.0.0.0/24\", \"11.0.0.2/32\", "
"and \"12.2.3.0/24\", a Monkey running on 10.0.0.5 will try to access machines in the following "
"subnets: 11.0.0.2/32, 12.2.3.0/24. An alert on successful cross-segment connections will be shown in the "
"reports. \n\n"
"Test for network segmentation by providing a list of network segments "
"that should NOT be accessible to each other.\n\n"
"For example, if you configured the following three segments: "
"\"10.0.0.0/24\", \"11.0.0.2/32\", and \"12.2.3.0/24\", "
"a Monkey running on 10.0.0.5 will try to access machines in the following subnets: "
"11.0.0.2/32, 12.2.3.0/24. An alert on successful cross-segment connections "
"will be shown in the reports. \n\n"
"Network segments can be IPs, subnets or hosts. Examples:\n"
"\tDefine a single-IP segment: \"192.168.0.1\"\n"
"\tDefine a segment using a network range: \"192.168.0.5-192.168.0.20\"\n"

View File

@ -371,8 +371,8 @@ class ConfigurePageComponent extends AuthComponent {
if (this.state.selectedSection === 'basic_network') {
return (<div className='alert alert-info'>
<FontAwesomeIcon icon={faInfoCircle} style={{'marginRight': '5px'}}/>
The Monkey scans its subnet if 'Local network scan' is ticked. Additionally the monkey scans machines
according to its range class.
The Monkey scans its subnet if "Local network scan" is ticked. Additionally the monkey scans machines
according to "Scan target list".
</div>)
} else {
return (<div/>)