Merge branch 'attack_pass_the_hash' into attack_credential_dumping

This commit is contained in:
VakarisZ 2019-06-07 16:54:17 +03:00
commit 7e059cbf62
1 changed files with 7 additions and 6 deletions

View File

@ -32,12 +32,13 @@ class T1075 extends React.Component {
<div> <div>
<div>{this.props.data.message}</div> <div>{this.props.data.message}</div>
<br/> <br/>
<ReactTable {this.props.data.status === 'USED' ?
columns={T1075.getHashColumns()} <ReactTable
data={this.props.data.successful_logins} columns={T1075.getHashColumns()}
showPagination={false} data={this.props.data.successful_logins}
defaultPageSize={this.props.data.successful_logins.length} showPagination={false}
/> defaultPageSize={this.props.data.successful_logins.length}
/> : ""}
</div> </div>
); );
} }