Skip to content

Commit

Permalink
Add length validation to agent name (#5028)
Browse files Browse the repository at this point in the history
* Reduce number of setState

* Add length validation

* Update changelog

* Update CHANGELOG.md

Added a space between two pull request references.

Co-authored-by: Federico Rodriguez <federico.rodriguez@wazuh.com>
  • Loading branch information
Tostti and asteriscos committed Dec 22, 2022
1 parent fe61c0f commit 2100800
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ All notable changes to the Wazuh app project will be documented in this file.
- Added extra steps message and new command for windows xp and windows server 2008, added alpine agent with all its steps. [#4933](https://github.com/wazuh/wazuh-kibana-app/pull/4933)
- Deploy new agent section: Added link for additional steps to alpine os. [#4933](https://github.com/wazuh/wazuh-kibana-app/pull/4933)
- 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
26 changes: 15 additions & 11 deletions public/controllers/agent/components/register-agent.js
Original file line number Diff line number Diff line change
Expand Up @@ -305,13 +305,14 @@ 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('')
Expand All @@ -321,8 +322,11 @@ export const RegisterAgent = withErrorBoundary(
.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 @@ -905,8 +909,8 @@ 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 2100800

Please sign in to comment.