forked from p15670423/monkey
System info technique implemented
This commit is contained in:
parent
9c52ad3617
commit
c28420944e
|
@ -1,5 +1,5 @@
|
||||||
import logging
|
import logging
|
||||||
from monkey_island.cc.services.attack.technique_reports import T1210, T1197, T1110, T1075, T1003, T1059, T1086
|
from monkey_island.cc.services.attack.technique_reports import T1210, T1197, T1110, T1075, T1003, T1059, T1086, T1082
|
||||||
from monkey_island.cc.services.attack.attack_telem import AttackTelemService
|
from monkey_island.cc.services.attack.attack_telem import AttackTelemService
|
||||||
from monkey_island.cc.services.attack.attack_config import AttackConfig
|
from monkey_island.cc.services.attack.attack_config import AttackConfig
|
||||||
from monkey_island.cc.database import mongo
|
from monkey_island.cc.database import mongo
|
||||||
|
@ -15,7 +15,8 @@ TECHNIQUES = {'T1210': T1210.T1210,
|
||||||
'T1075': T1075.T1075,
|
'T1075': T1075.T1075,
|
||||||
'T1003': T1003.T1003,
|
'T1003': T1003.T1003,
|
||||||
'T1059': T1059.T1059,
|
'T1059': T1059.T1059,
|
||||||
'T1086': T1086.T1086}
|
'T1086': T1086.T1086,
|
||||||
|
'T1082': T1082.T1082}
|
||||||
|
|
||||||
REPORT_NAME = 'new_report'
|
REPORT_NAME = 'new_report'
|
||||||
|
|
||||||
|
|
|
@ -106,5 +106,20 @@ SCHEMA = {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"discovery": {
|
||||||
|
"title": "Discovery",
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"T1082": {
|
||||||
|
"title": "T1082 System information discovery",
|
||||||
|
"type": "bool",
|
||||||
|
"value": True,
|
||||||
|
"necessary": False,
|
||||||
|
"description": "An adversary may attempt to get detailed information about the "
|
||||||
|
"operating system and hardware, including version, patches, hotfixes, "
|
||||||
|
"service packs, and architecture."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,26 +12,35 @@ class T1082(AttackTechnique):
|
||||||
scanned_msg = ""
|
scanned_msg = ""
|
||||||
used_msg = "Monkey gathered system info from machines in the network."
|
used_msg = "Monkey gathered system info from machines in the network."
|
||||||
|
|
||||||
# Gets data about successful PTH logins
|
query = [{'$match': {'telem_type': 'system_info_collection'}},
|
||||||
query = [{'$match': {'telem_type': 'system_info_collection'},
|
{'$project': {'machine': {'hostname': '$data.hostname', 'ips': '$data.network_info.networks'},
|
||||||
|
'aws': '$data.aws',
|
||||||
|
'netstat': '$data.network_info.netstat',
|
||||||
|
'process_list': '$data.process_list',
|
||||||
|
'ssh_info': '$data.ssh_info',
|
||||||
|
'azure_info': '$data.Azure'}},
|
||||||
{'$project': {'_id': 0,
|
{'$project': {'_id': 0,
|
||||||
'machine': {'hostname': '$data.hostname', 'ips': '$data.network_info.networks'},
|
'machine': 1,
|
||||||
'info': {'aws': '$data.aws',
|
'collections': [
|
||||||
'process_list': '$data.process_list.1'
|
{'used': {'$and': [{'$ifNull': ['$netstat', False]}, {'$gt': ['$aws', {}]}]},
|
||||||
'attempt_cnt': {'$size': '$data.attempts'},
|
'name': {'$literal': 'Amazon Web Services info'}},
|
||||||
'attempts': {'$filter': {'input': '$data.attempts',
|
{'used': {'$and': [{'$ifNull': ['$process_list', False]}, {'$gt': ['$process_list', {}]}]},
|
||||||
'as': 'attempt',
|
'name': {'$literal': 'Running process list'}},
|
||||||
'cond': {'$eq': ['$$attempt.result', True]}}}}}]
|
{'used': {'$and': [{'$ifNull': ['$netstat', False]}, {'$ne': ['$netstat', []]}]},
|
||||||
|
'name': {'$literal': 'Network connections'}},
|
||||||
|
{'used': {'$and': [{'$ifNull': ['$ssh_info', False]}, {'$ne': ['$ssh_info', []]}]},
|
||||||
|
'name': {'$literal': 'SSH info'}},
|
||||||
|
{'used': {'$and': [{'$ifNull': ['$azure_info', False]}, {'$ne': ['$azure_info', []]}]},
|
||||||
|
'name': {'$literal': 'Azure info'}}
|
||||||
|
]}}]
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def get_report_data():
|
def get_report_data():
|
||||||
data = {'title': T1082.technique_title(T1082.tech_id)}
|
data = {'title': T1082.technique_title(T1082.tech_id)}
|
||||||
successful_logins = list(mongo.db.telemetry.aggregate(T1082.query))
|
system_info = list(mongo.db.telemetry.aggregate(T1082.query))
|
||||||
data.update({'successful_logins': successful_logins})
|
data.update({'system_info': system_info})
|
||||||
if successful_logins:
|
if system_info:
|
||||||
data.update({'message': T1082.used_msg, 'status': ScanStatus.USED.name})
|
data.update({'message': T1082.used_msg, 'status': ScanStatus.USED.name})
|
||||||
elif mongo.db.telemetry.count_documents(T1082.login_attempt_query):
|
|
||||||
data.update({'message': T1082.scanned_msg, 'status': ScanStatus.SCANNED.name})
|
|
||||||
else:
|
else:
|
||||||
data.update({'message': T1082.unscanned_msg, 'status': ScanStatus.UNSCANNED.name})
|
data.update({'message': T1082.unscanned_msg, 'status': ScanStatus.UNSCANNED.name})
|
||||||
return data
|
return data
|
||||||
|
|
|
@ -422,6 +422,7 @@ SCHEMA = {
|
||||||
"title": "Collect system info",
|
"title": "Collect system info",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": True,
|
"default": True,
|
||||||
|
"attack_techniques": ["T1082"],
|
||||||
"description": "Determines whether to collect system info"
|
"description": "Determines whether to collect system info"
|
||||||
},
|
},
|
||||||
"should_use_mimikatz": {
|
"should_use_mimikatz": {
|
||||||
|
|
|
@ -0,0 +1,55 @@
|
||||||
|
import React from 'react';
|
||||||
|
import '../../../styles/Collapse.scss'
|
||||||
|
import ReactTable from "react-table";
|
||||||
|
|
||||||
|
|
||||||
|
class T1082 extends React.Component {
|
||||||
|
|
||||||
|
constructor(props) {
|
||||||
|
super(props);
|
||||||
|
}
|
||||||
|
|
||||||
|
static renderMachineString(data){
|
||||||
|
let machineStr = data['hostname'] + " ( ";
|
||||||
|
data['ips'].forEach(function(ipInfo){
|
||||||
|
machineStr += ipInfo['addr'] + " ";
|
||||||
|
});
|
||||||
|
return machineStr + ")"
|
||||||
|
}
|
||||||
|
|
||||||
|
static renderCollections(collections){
|
||||||
|
let output = [];
|
||||||
|
collections.forEach(function(collection){
|
||||||
|
if(collection['used']){
|
||||||
|
output.push(<div key={collection['name']}>{collection['name']}</div>)
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return (<div>{output}</div>);
|
||||||
|
}
|
||||||
|
|
||||||
|
static getSystemInfoColumns() {
|
||||||
|
return ([{
|
||||||
|
columns: [
|
||||||
|
{Header: 'Machine', id: 'machine', accessor: x => T1082.renderMachineString(x.machine), style: { 'whiteSpace': 'unset' }},
|
||||||
|
{Header: 'Gathered info', id: 'info', accessor: x => T1082.renderCollections(x.collections), style: { 'whiteSpace': 'unset' }},
|
||||||
|
]
|
||||||
|
}])};
|
||||||
|
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<div>{this.props.data.message}</div>
|
||||||
|
<br/>
|
||||||
|
{this.props.data.status === 'USED' ?
|
||||||
|
<ReactTable
|
||||||
|
columns={T1082.getSystemInfoColumns()}
|
||||||
|
data={this.props.data.system_info}
|
||||||
|
showPagination={false}
|
||||||
|
defaultPageSize={this.props.data.system_info.length}
|
||||||
|
/> : ""}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default T1082;
|
|
@ -12,6 +12,7 @@ import T1075 from "../attack/techniques/T1075";
|
||||||
import T1003 from "../attack/techniques/T1003";
|
import T1003 from "../attack/techniques/T1003";
|
||||||
import T1059 from "../attack/techniques/T1059";
|
import T1059 from "../attack/techniques/T1059";
|
||||||
import T1086 from "../attack/techniques/T1086";
|
import T1086 from "../attack/techniques/T1086";
|
||||||
|
import T1082 from "../attack/techniques/T1082";
|
||||||
|
|
||||||
const tech_components = {
|
const tech_components = {
|
||||||
'T1210': T1210,
|
'T1210': T1210,
|
||||||
|
@ -20,7 +21,8 @@ const tech_components = {
|
||||||
'T1075': T1075,
|
'T1075': T1075,
|
||||||
'T1003': T1003,
|
'T1003': T1003,
|
||||||
'T1059': T1059,
|
'T1059': T1059,
|
||||||
'T1086': T1086
|
'T1086': T1086,
|
||||||
|
'T1082': T1082
|
||||||
};
|
};
|
||||||
|
|
||||||
const classNames = require('classnames');
|
const classNames = require('classnames');
|
||||||
|
|
Loading…
Reference in New Issue