Fixed bug that treated bootloader node as infected node
This commit is contained in:
parent
d8aa63d1cb
commit
86218431f7
|
@ -1,246 +0,0 @@
|
||||||
import React from 'react';
|
|
||||||
import Toggle from 'react-toggle';
|
|
||||||
import {OverlayTrigger, Tooltip} from 'react-bootstrap';
|
|
||||||
import download from 'downloadjs'
|
|
||||||
import PreviewPaneComponent from 'components/map/preview-pane/PreviewPane';
|
|
||||||
|
|
||||||
class InfMapPreviewPaneComponent extends PreviewPaneComponent {
|
|
||||||
|
|
||||||
osRow(asset) {
|
|
||||||
return (
|
|
||||||
<tr>
|
|
||||||
<th>Operating System</th>
|
|
||||||
<td>{asset.os.charAt(0).toUpperCase() + asset.os.slice(1)}</td>
|
|
||||||
</tr>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
ipsRow(asset) {
|
|
||||||
return (
|
|
||||||
<tr>
|
|
||||||
<th>IP Addresses</th>
|
|
||||||
<td>{asset.ip_addresses.map(val => <div key={val}>{val}</div>)}</td>
|
|
||||||
</tr>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
servicesRow(asset) {
|
|
||||||
return (
|
|
||||||
<tr>
|
|
||||||
<th>Services</th>
|
|
||||||
<td>{asset.services.map(val => <div key={val}>{val}</div>)}</td>
|
|
||||||
</tr>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
accessibleRow(asset) {
|
|
||||||
return (
|
|
||||||
<tr>
|
|
||||||
<th>
|
|
||||||
Accessible From
|
|
||||||
{this.generateToolTip('List of machine which can access this one using a network protocol')}
|
|
||||||
</th>
|
|
||||||
<td>{asset.accessible_from_nodes.map(val => <div key={val}>{val}</div>)}</td>
|
|
||||||
</tr>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
statusRow(asset) {
|
|
||||||
return (
|
|
||||||
<tr>
|
|
||||||
<th>Status</th>
|
|
||||||
<td>{(asset.dead) ? 'Dead' : 'Alive'}</td>
|
|
||||||
</tr>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
forceKill(event, asset) {
|
|
||||||
let newConfig = asset.config;
|
|
||||||
newConfig['alive'] = !event.target.checked;
|
|
||||||
this.authFetch('/api/monkey/' + asset.guid,
|
|
||||||
{
|
|
||||||
method: 'PATCH',
|
|
||||||
headers: {'Content-Type': 'application/json'},
|
|
||||||
body: JSON.stringify({config: newConfig})
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
forceKillRow(asset) {
|
|
||||||
return (
|
|
||||||
<tr>
|
|
||||||
<th>
|
|
||||||
Force Kill
|
|
||||||
{this.generateToolTip('If this is on, monkey will die next time it communicates')}
|
|
||||||
</th>
|
|
||||||
<td>
|
|
||||||
<Toggle id={asset.id} checked={!asset.config.alive} icons={false} disabled={asset.dead}
|
|
||||||
onChange={(e) => this.forceKill(e, asset)}/>
|
|
||||||
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
unescapeLog(st) {
|
|
||||||
return st.substr(1, st.length - 2) // remove quotation marks on beginning and end of string.
|
|
||||||
.replace(/\\n/g, '\n')
|
|
||||||
.replace(/\\r/g, '\r')
|
|
||||||
.replace(/\\t/g, '\t')
|
|
||||||
.replace(/\\b/g, '\b')
|
|
||||||
.replace(/\\f/g, '\f')
|
|
||||||
.replace(/\\"/g, '\"')
|
|
||||||
.replace(/\\'/g, '\'')
|
|
||||||
.replace(/\\&/g, '\&');
|
|
||||||
}
|
|
||||||
|
|
||||||
downloadLog(asset) {
|
|
||||||
this.authFetch('/api/log?id=' + asset.id)
|
|
||||||
.then(res => res.json())
|
|
||||||
.then(res => {
|
|
||||||
let timestamp = res['timestamp'];
|
|
||||||
timestamp = timestamp.substr(0, timestamp.indexOf('.'));
|
|
||||||
let filename = res['monkey_label'].split(':').join('-') + ' - ' + timestamp + '.log';
|
|
||||||
let logContent = this.unescapeLog(res['log']);
|
|
||||||
download(logContent, filename, 'text/plain');
|
|
||||||
});
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
downloadLogRow(asset) {
|
|
||||||
return (
|
|
||||||
<tr>
|
|
||||||
<th>
|
|
||||||
Download Log
|
|
||||||
</th>
|
|
||||||
<td>
|
|
||||||
<a type="button" className="btn btn-primary"
|
|
||||||
disabled={!asset.has_log}
|
|
||||||
onClick={() => this.downloadLog(asset)}>Download</a>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
exploitsTimeline(asset) {
|
|
||||||
if (asset.exploits.length === 0) {
|
|
||||||
return (<div/>);
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<h4 style={{'marginTop': '2em'}}>
|
|
||||||
Exploit Timeline
|
|
||||||
{this.generateToolTip('Timeline of exploit attempts. Red is successful. Gray is unsuccessful')}
|
|
||||||
</h4>
|
|
||||||
<ul className="timeline">
|
|
||||||
{asset.exploits.map(exploit =>
|
|
||||||
<li key={exploit.timestamp}>
|
|
||||||
<div className={'bullet ' + (exploit.result ? 'bad' : '')}/>
|
|
||||||
<div>{new Date(exploit.timestamp).toLocaleString()}</div>
|
|
||||||
<div>{exploit.origin}</div>
|
|
||||||
<div>{exploit.exploiter}</div>
|
|
||||||
</li>
|
|
||||||
)}
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
assetInfo(asset) {
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<table className="table table-condensed">
|
|
||||||
<tbody>
|
|
||||||
{this.osRow(asset)}
|
|
||||||
{this.ipsRow(asset)}
|
|
||||||
{this.servicesRow(asset)}
|
|
||||||
{this.accessibleRow(asset)}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
{this.exploitsTimeline(asset)}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
infectedAssetInfo(asset) {
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<table className="table table-condensed">
|
|
||||||
<tbody>
|
|
||||||
{this.osRow(asset)}
|
|
||||||
{this.statusRow(asset)}
|
|
||||||
{this.ipsRow(asset)}
|
|
||||||
{this.servicesRow(asset)}
|
|
||||||
{this.accessibleRow(asset)}
|
|
||||||
{this.forceKillRow(asset)}
|
|
||||||
{this.downloadLogRow(asset)}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
{this.exploitsTimeline(asset)}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
scanInfo(edge) {
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<table className="table table-condensed">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<th>Operating System</th>
|
|
||||||
<td>{edge.os.type}</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>IP Address</th>
|
|
||||||
<td>{edge.ip_address}</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>Services</th>
|
|
||||||
<td>{edge.services.map(val => <div key={val}>{val}</div>)}</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
{
|
|
||||||
(edge.exploits.length === 0) ?
|
|
||||||
'' :
|
|
||||||
<div>
|
|
||||||
<h4 style={{'marginTop': '2em'}}>Timeline</h4>
|
|
||||||
<ul className="timeline">
|
|
||||||
{edge.exploits.map(exploit =>
|
|
||||||
<li key={exploit.timestamp}>
|
|
||||||
<div className={'bullet ' + (exploit.result ? 'bad' : '')}/>
|
|
||||||
<div>{new Date(exploit.timestamp).toLocaleString()}</div>
|
|
||||||
<div>{exploit.origin}</div>
|
|
||||||
<div>{exploit.exploiter}</div>
|
|
||||||
</li>
|
|
||||||
)}
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
islandEdgeInfo() {
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
getInfoByProps() {
|
|
||||||
switch (this.props.type) {
|
|
||||||
case 'edge':
|
|
||||||
return this.scanInfo(this.props.item);
|
|
||||||
case 'node':
|
|
||||||
return this.props.item.group.includes('monkey', 'manual') ?
|
|
||||||
this.infectedAssetInfo(this.props.item) : this.assetInfo(this.props.item);
|
|
||||||
case 'island_edge':
|
|
||||||
return this.islandEdgeInfo();
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default InfMapPreviewPaneComponent;
|
|
|
@ -253,8 +253,12 @@ class PreviewPaneComponent extends AuthComponent {
|
||||||
info = this.scanInfo(this.props.item);
|
info = this.scanInfo(this.props.item);
|
||||||
break;
|
break;
|
||||||
case 'node':
|
case 'node':
|
||||||
info = this.props.item.group.includes('monkey', 'manual') ? this.infectedAssetInfo(this.props.item) :
|
if(this.props.item.group.includes('monkey') && this.props.item.group.includes('starting')){
|
||||||
this.props.item.group !== 'island' ? this.assetInfo(this.props.item) : this.islandAssetInfo();
|
info = this.assetInfo(this.props.item);
|
||||||
|
} else {
|
||||||
|
info = this.props.item.group.includes('monkey', 'manual') ? this.infectedAssetInfo(this.props.item) :
|
||||||
|
this.props.item.group !== 'island' ? this.assetInfo(this.props.item) : this.islandAssetInfo();
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case 'island_edge':
|
case 'island_edge':
|
||||||
info = this.islandEdgeInfo();
|
info = this.islandEdgeInfo();
|
||||||
|
|
|
@ -3,7 +3,7 @@ import {Col, Modal} from 'react-bootstrap';
|
||||||
import {Link} from 'react-router-dom';
|
import {Link} from 'react-router-dom';
|
||||||
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
||||||
import { faStopCircle, faMinus } from '@fortawesome/free-solid-svg-icons'
|
import { faStopCircle, faMinus } from '@fortawesome/free-solid-svg-icons'
|
||||||
import InfMapPreviewPaneComponent from 'components/map/preview-pane/InfMapPreviewPane';
|
import PreviewPaneComponent from 'components/map/preview-pane/PreviewPane';
|
||||||
import {ReactiveGraph} from 'components/reactive-graph/ReactiveGraph';
|
import {ReactiveGraph} from 'components/reactive-graph/ReactiveGraph';
|
||||||
import {options, edgeGroupToColor} from 'components/map/MapOptions';
|
import {options, edgeGroupToColor} from 'components/map/MapOptions';
|
||||||
import AuthComponent from '../AuthComponent';
|
import AuthComponent from '../AuthComponent';
|
||||||
|
@ -192,7 +192,7 @@ class MapPageComponent extends AuthComponent {
|
||||||
</div>
|
</div>
|
||||||
: ''}
|
: ''}
|
||||||
|
|
||||||
<InfMapPreviewPaneComponent item={this.state.selected} type={this.state.selectedType}/>
|
<PreviewPaneComponent item={this.state.selected} type={this.state.selectedType}/>
|
||||||
</Col>
|
</Col>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue