Apache ISIS isis-module-security default user / password

How can I remove, disable, or at least change the default password "isis-module-security-admin" using code or configuration?

+4
source share
1 answer

The module defines a SeedSecurityModuleService that runs SeedUsersAndRolesFixtureScript , which in turn creates an isis-module-security-admin account .

This is not currently configurable, but you can boost PR against SeedSecurityModuleService, where the IsisModuleSecurityAdminUser script device can use the @Inject ConfigurationService to read the name value to use from the configuration property, for example: "isisaddons.module.security.adminUserName"

NTN Dan

+4
source

Source: https://habr.com/ru/post/1659163/


All Articles