forked from p34709852/monkey
ui: use template strings when generating cross-segment report
This commit is contained in:
parent
c8b4089bd2
commit
458e01cf24
|
@ -451,7 +451,8 @@ class ReportPageComponent extends AuthComponent {
|
|||
}
|
||||
|
||||
generateCrossSegmentIssue(crossSegmentIssue) {
|
||||
let crossSegmentIssueOverview = 'Communication possible from ' + crossSegmentIssue['source_subnet'] + ' to ' + crossSegmentIssue['target_subnet']
|
||||
let crossSegmentIssueOverview = 'Communication possible from '
|
||||
+ `${crossSegmentIssue['source_subnet']} to ${crossSegmentIssue['target_subnet']}`;
|
||||
|
||||
return (
|
||||
<li key={crossSegmentIssueOverview}>
|
||||
|
@ -476,7 +477,7 @@ class ReportPageComponent extends AuthComponent {
|
|||
generateCrossSegmentSingleHostMessage(issue) {
|
||||
return (
|
||||
<li key={issue['hostname']}>
|
||||
{'Machine ' + issue['hostname'] + ' has both ips: ' + issue['source'] + ' and ' + issue['target']}
|
||||
{`Machine ${issue['hostname']} has both ips: ${issue['source']} and ${issue['target']}`}
|
||||
</li>
|
||||
);
|
||||
}
|
||||
|
@ -495,8 +496,8 @@ class ReportPageComponent extends AuthComponent {
|
|||
|
||||
generateCrossSegmentServiceMessage(issue) {
|
||||
return (
|
||||
'IP ' + issue['source'] + ' (' + issue['hostname'] + ') connected to IP ' + issue['target']
|
||||
+ ' using the services: ' + Object.keys(issue['services']).join(', ')
|
||||
`IP ${issue['source']} (${issue['hostname']}) connected to IP ${issue['target']}`
|
||||
+ ` using the services: ${Object.keys(issue['services']).join(', ')}`
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue