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", "title": "Local network scan",
"type": "boolean", "type": "boolean",
"default": True, "default": True,
"description": "Determines whether the monkey will scan the local subnets of machines it runs on, in " "description": "Determines whether the Monkey will scan the local subnets of machines it runs on, "
"addition to the IPs that are configured manually in the 'scan target list'." "in addition to the IPs that are configured manually in the \"Scan target list\"."
}, },
"depth": { "depth": {
"title": "Distance from island", "title": "Scan depth",
"type": "integer", "type": "integer",
"minimum": 1, "minimum": 1,
"default": 2, "default": 2,
"description": "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 + 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": { "subnet_scan_list": {
"title": "Scan target list", "title": "Scan target list",
@ -49,7 +50,7 @@ BASIC_NETWORK = {
"default": [ "default": [
], ],
"description": "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" " Examples:\n"
"\tTarget a specific IP: \"192.168.0.1\"\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" "\tTarget a subnet using a network range: \"192.168.0.5-192.168.0.20\"\n"
@ -73,12 +74,13 @@ BASIC_NETWORK = {
"default": [ "default": [
], ],
"description": "description":
"Test for network segmentation by providing a list of network segments that should NOT be accessible " "Test for network segmentation by providing a list of network segments "
"to each other.\n\n" "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\", " "For example, if you configured the following three segments: "
"and \"12.2.3.0/24\", a Monkey running on 10.0.0.5 will try to access machines in the following " "\"10.0.0.0/24\", \"11.0.0.2/32\", and \"12.2.3.0/24\", "
"subnets: 11.0.0.2/32, 12.2.3.0/24. An alert on successful cross-segment connections will be shown in the " "a Monkey running on 10.0.0.5 will try to access machines in the following subnets: "
"reports. \n\n" "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" "Network segments can be IPs, subnets or hosts. Examples:\n"
"\tDefine a single-IP segment: \"192.168.0.1\"\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" "\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') { if (this.state.selectedSection === 'basic_network') {
return (<div className='alert alert-info'> return (<div className='alert alert-info'>
<FontAwesomeIcon icon={faInfoCircle} style={{'marginRight': '5px'}}/> <FontAwesomeIcon icon={faInfoCircle} style={{'marginRight': '5px'}}/>
The Monkey scans its subnet if 'Local network scan' is ticked. Additionally the monkey scans machines The Monkey scans its subnet if "Local network scan" is ticked. Additionally the monkey scans machines
according to its range class. according to "Scan target list".
</div>) </div>)
} else { } else {
return (<div/>) return (<div/>)