Skip to content

Commit

Permalink
[Backport 4.4-7.16] Add length validation to agent name (#5029)
Browse files Browse the repository at this point in the history
* Add validation to agent name

* Update changelog

* Add regex to constant

* Reduce number of setState

* Add length validation

* Update changelog
  • Loading branch information
Tostti authored Dec 22, 2022
1 parent 65e156b commit 907ed7c
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 8 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ All notable changes to the Wazuh app project will be documented in this file.
- Added a centralized service to handle the requests [#4831](https://github.com/wazuh/wazuh-kibana-app/pull/4831)
- Added data-test-subj create policy [#4873](https://github.com/wazuh/wazuh-kibana-app/pull/4873)
- Added file saving conditions in File Editor [#4970](https://github.com/wazuh/wazuh-kibana-app/pull/4970)
- Added character validation to avoid invalid agent names in the section 'Deploy new agent'. [#5021](https://github.com/wazuh/wazuh-kibana-app/pull/5021)
- Added character validation to avoid invalid agent names in the section 'Deploy new agent'. [#5021](https://github.com/wazuh/wazuh-kibana-app/pull/5021)[#5028](https://github.com/wazuh/wazuh-kibana-app/pull/5028)


### Changed

Expand Down
24 changes: 17 additions & 7 deletions public/controllers/agent/components/register-agent.js
Original file line number Diff line number Diff line change
Expand Up @@ -302,18 +302,26 @@ export const RegisterAgent = withErrorBoundary(

setAgentName(event) {
const validation = /^[a-z0-9-_.]+$/i;
this.setState({ agentName: event.target.value });
if (validation.test(event.target.value) || event.target.value.length <= 0) {
this.setState({ agentNameError: false });
this.setState({ badCharacters: [] });
if ((validation.test(event.target.value) && event.target.value.length >= 2)
|| event.target.value.length <= 0) {
this.setState({
agentName: event.target.value,
agentNameError: false,
badCharacters: []
});

} else {
let badCharacters = event.target.value.split('').map(char =>
char.replace(validation, '')).join('');
badCharacters = badCharacters.split('').map(char =>
char.replace(/\s/, 'whitespace'));
const characters = [...new Set(badCharacters)];
this.setState({ badCharacters: characters });
this.setState({ agentNameError: true });
this.setState({
agentName: event.target.value,
badCharacters: characters,
agentNameError: true
});

}
}

Expand Down Expand Up @@ -880,7 +888,9 @@ export const RegisterAgent = withErrorBoundary(
<EuiForm>
<EuiFormRow
isInvalid={this.state.agentNameError}
error={[`The character${this.state.badCharacters.length <= 1 ? ('') : ('s')}
error={[this.state.badCharacters.length < 1 ? 'The minimum length is 2 characters.' :
`The character${this.state.badCharacters.length <= 1 ? ('') : ('s')}
${this.state.badCharacters.map(char => ` "${char}"`)}
${this.state.badCharacters.length <= 1 ? ('is') : ('are')}
not valid. Allowed characters are A-Z, a-z, ".", "-", "_"`]}>
Expand Down

0 comments on commit 907ed7c

Please sign in to comment.