Mentioning 'type' doesn't seem necessary

This commit is contained in:
Shreya 2020-06-05 22:17:46 +05:30
parent 0f6fcc799c
commit 80c8a42bd0
2 changed files with 0 additions and 5 deletions

View File

@ -31,7 +31,6 @@ class T1158(AttackTechnique):
'hostname': pba['hostname'],
'ips': node['ip_addresses']
},
'type': 'Folder' if 'folder' in pba['command'] else 'File',
'result': pba['result'][0]
})
data.update(T1158.get_base_data_by_status(status))

View File

@ -16,10 +16,6 @@ class T1158 extends React.Component {
id: 'machine',
accessor: x => renderMachineFromSystemData(x.machine),
style: {'whiteSpace': 'unset'}},
{ Header: 'File/Folder',
id: 'type',
accessor: x => x.type,
style: {'whiteSpace': 'unset'}, width: 160},
{ Header: 'Result',
id: 'result',
accessor: x => x.result,