commit
9f194f3417
|
@ -6,10 +6,10 @@ The format is based on [Keep a
|
||||||
Changelog](https://keepachangelog.com/en/1.0.0/).
|
Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Misaligned buttons and input fields on exploiter and network configuration
|
- Misaligned buttons and input fields on exploiter and network configuration
|
||||||
pages. #1353
|
pages. #1353
|
||||||
|
- Credentials shown in plain text on configuration screens. #1183
|
||||||
|
|
||||||
## [1.11.0] - 2021-08-13
|
## [1.11.0] - 2021-08-13
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -48,7 +48,9 @@ BASIC = {
|
||||||
"title": "Exploit password list",
|
"title": "Exploit password list",
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"uniqueItems": True,
|
"uniqueItems": True,
|
||||||
"items": {"type": "string"},
|
"items": {
|
||||||
|
"type": "string",
|
||||||
|
},
|
||||||
"default": [
|
"default": [
|
||||||
"root",
|
"root",
|
||||||
"123456",
|
"123456",
|
||||||
|
|
|
@ -3,6 +3,7 @@ import PbaInput from './PbaInput';
|
||||||
import {API_PBA_LINUX, API_PBA_WINDOWS} from '../pages/ConfigurePage';
|
import {API_PBA_LINUX, API_PBA_WINDOWS} from '../pages/ConfigurePage';
|
||||||
import InfoBox from './InfoBox';
|
import InfoBox from './InfoBox';
|
||||||
import TextBox from './TextBox';
|
import TextBox from './TextBox';
|
||||||
|
import SensitiveTextInput from '../ui-components/SensitiveTextInput';
|
||||||
|
|
||||||
export default function UiSchema(props) {
|
export default function UiSchema(props) {
|
||||||
const UiSchema = {
|
const UiSchema = {
|
||||||
|
@ -22,7 +23,8 @@ export default function UiSchema(props) {
|
||||||
},
|
},
|
||||||
exploit_password_list: {
|
exploit_password_list: {
|
||||||
items: {
|
items: {
|
||||||
classNames: 'config-template-no-header'
|
classNames: 'config-template-no-header',
|
||||||
|
'ui:widget': SensitiveTextInput
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -131,6 +133,18 @@ export default function UiSchema(props) {
|
||||||
aws_keys: {
|
aws_keys: {
|
||||||
classNames: 'config-field-hidden'
|
classNames: 'config-field-hidden'
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
exploits: {
|
||||||
|
exploit_lm_hash_list:{
|
||||||
|
items: {
|
||||||
|
'ui:widget': SensitiveTextInput
|
||||||
|
}
|
||||||
|
},
|
||||||
|
exploit_ntlm_hash_list: {
|
||||||
|
items: {
|
||||||
|
'ui:widget': SensitiveTextInput
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -0,0 +1,42 @@
|
||||||
|
import React from 'react';
|
||||||
|
import {InputGroup, FormControl} from 'react-bootstrap';
|
||||||
|
|
||||||
|
class SensitiveTextInput extends React.PureComponent {
|
||||||
|
constructor(props) {
|
||||||
|
super(props);
|
||||||
|
|
||||||
|
this.state = {
|
||||||
|
hidden: false
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
toggleShow = () => {
|
||||||
|
this.setState({hidden: ! this.state.hidden});
|
||||||
|
}
|
||||||
|
|
||||||
|
onChange(e) {
|
||||||
|
var value = e.target.value;
|
||||||
|
return this.props.onChange(value === '' ? this.props.options.emptyValue : value);
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<InputGroup>
|
||||||
|
<FormControl
|
||||||
|
value={this.props.value || ''}
|
||||||
|
type={this.state.hidden ? 'text' : 'password'}
|
||||||
|
onChange={(event) => this.onChange(event)}
|
||||||
|
/>
|
||||||
|
<InputGroup.Append>
|
||||||
|
<InputGroup.Text onClick={this.toggleShow} >
|
||||||
|
<i className={this.state.hidden ? 'fas fa-eye-slash' : 'fas fa-eye'}></i>
|
||||||
|
</InputGroup.Text>
|
||||||
|
</InputGroup.Append>
|
||||||
|
</InputGroup>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default SensitiveTextInput;
|
Loading…
Reference in New Issue