2017-09-05 15:30:40 -04:00
|
|
|
# Masking Passwords
|
|
|
|
|
2018-03-09 10:07:38 -05:00
|
|
|
By default all passwords in Apache ActiveMQ Artemis server's configuration
|
|
|
|
files are in plain text form. This usually poses no security issues as those
|
|
|
|
files should be well protected from unauthorized accessing. However, in some
|
|
|
|
circumstances a user doesn't want to expose its passwords to more eyes than
|
|
|
|
necessary.
|
2017-09-05 15:30:40 -04:00
|
|
|
|
|
|
|
Apache ActiveMQ Artemis can be configured to use 'masked' passwords in its
|
2018-03-09 10:07:38 -05:00
|
|
|
configuration files. A masked password is an obscure string representation of a
|
2019-06-22 16:00:26 -04:00
|
|
|
real password. To mask a password a user will use an 'codec'. The codec
|
2018-03-09 10:07:38 -05:00
|
|
|
takes in the real password and outputs the masked version. A user can then
|
|
|
|
replace the real password in the configuration files with the new masked
|
2019-06-22 16:00:26 -04:00
|
|
|
password. When Apache ActiveMQ Artemis loads a masked password it uses the
|
|
|
|
codec to decode it back into the real password.
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
Apache ActiveMQ Artemis provides a default codec. Optionally users can use
|
|
|
|
or implement their own codec for masking the passwords.
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2018-03-09 10:07:38 -05:00
|
|
|
In general, a masked password can be identified using one of two ways. The
|
|
|
|
first one is the `ENC()` syntax, i.e. any string value wrapped in `ENC()` is to
|
|
|
|
be treated as a masked password. For example
|
2018-01-18 01:31:32 -05:00
|
|
|
|
|
|
|
`ENC(xyz)`
|
|
|
|
|
|
|
|
The above indicates that the password is masked and the masked value is `xyz`.
|
|
|
|
|
2018-03-09 10:07:38 -05:00
|
|
|
The `ENC()` syntax is the **preferred way** of masking a password and is
|
2018-01-18 01:31:32 -05:00
|
|
|
universally supported in every password configuration in Artemis.
|
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
The other, legacy way is to use a `mask-password` attribute to tell that a
|
|
|
|
password in a configuration file should be treated as 'masked'. For example:
|
2018-01-18 01:31:32 -05:00
|
|
|
|
2018-03-08 15:46:38 -05:00
|
|
|
```xml
|
2018-01-18 01:31:32 -05:00
|
|
|
<mask-password>true</mask-password>
|
|
|
|
<cluster-password>xyz</cluster-password>
|
|
|
|
```
|
2018-03-09 10:07:38 -05:00
|
|
|
|
|
|
|
This method is now **deprecated** and exists only to maintain
|
|
|
|
backward-compatibility. Newer configurations may not support it.
|
2018-01-18 01:31:32 -05:00
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
## Generating a Masked Password
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2021-10-06 12:12:41 -04:00
|
|
|
To mask a password use the `mask` command from the `bin` directory
|
|
|
|
of your Artemis *instance*. This command will not work from the
|
|
|
|
Artemis home.
|
|
|
|
|
|
|
|
The `mask` command uses [the default codec](#the-default-codec)
|
|
|
|
unless [a custom codec](#using-a-custom-codec) is defined in
|
|
|
|
`broker.xml` and the `--password-codec` option is `true`. Here's
|
|
|
|
a simple example:
|
2019-06-22 16:00:26 -04:00
|
|
|
|
|
|
|
```sh
|
|
|
|
./artemis mask <plaintextPassword>
|
|
|
|
```
|
|
|
|
|
2021-10-06 12:12:41 -04:00
|
|
|
You'll get something like:
|
2019-06-22 16:00:26 -04:00
|
|
|
|
|
|
|
```
|
|
|
|
result: 32c6f67dae6cd61b0a7ad1702033aa81e6b2a760123f4360
|
|
|
|
```
|
|
|
|
|
|
|
|
Just copy `32c6f67dae6cd61b0a7ad1702033aa81e6b2a760123f4360` and replace your
|
|
|
|
plaintext password with it using the `ENC()` syntax, e.g.
|
|
|
|
`ENC(32c6f67dae6cd61b0a7ad1702033aa81e6b2a760123f4360)`.
|
|
|
|
|
2021-10-06 12:12:41 -04:00
|
|
|
You can also use the `--key` parameter with the default codec. Read more about
|
|
|
|
[the default codec](#the-default-codec) for further details about this
|
|
|
|
parameter.
|
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
This process works for passwords in:
|
|
|
|
|
|
|
|
- `broker.xml`
|
|
|
|
- `login.config`
|
|
|
|
- `bootstrap.xml`
|
|
|
|
- `management.xml`
|
|
|
|
|
|
|
|
This process does **not** work for passwords in:
|
|
|
|
|
|
|
|
- `artemis-users.properties`
|
|
|
|
|
2020-11-24 12:56:07 -05:00
|
|
|
Masked passwords for `artemis-users.properties` *can* be generated using the
|
|
|
|
`mask` command using the `--hash` command-line option. However, this is also
|
|
|
|
possible using the set of tools provided by the `user` command described below.
|
2019-06-22 16:00:26 -04:00
|
|
|
|
|
|
|
## Masking Configuration
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2018-03-09 10:07:38 -05:00
|
|
|
Besides supporting the `ENC()` syntax, the server configuration file (i.e.
|
|
|
|
broker.xml) has a property that defines the default masking behaviors over the
|
|
|
|
entire file scope.
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2018-03-09 10:07:38 -05:00
|
|
|
`mask-password`: this boolean type property indicates if a password should be
|
2021-10-06 12:12:41 -04:00
|
|
|
masked or not. Set it to `true` if you want your passwords masked. The default
|
|
|
|
value is `false`. As noted above, this configuration parameter is deprecated
|
|
|
|
in favor of the `ENC()` syntax.
|
2017-09-05 15:30:40 -04:00
|
|
|
|
|
|
|
`password-codec`: this string type property identifies the name of the class
|
|
|
|
which will be used to decode the masked password within the broker. If not
|
2018-03-09 10:07:38 -05:00
|
|
|
specified then the default
|
|
|
|
`org.apache.activemq.artemis.utils.DefaultSensitiveStringCodec` will be used.
|
2021-10-06 12:12:41 -04:00
|
|
|
Read more about [using a custom codec](#using-a-custom-codec).
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
### artemis-users.properties
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2021-10-06 12:12:41 -04:00
|
|
|
Apache ActiveMQ Artemis' default JAAS security manager uses plain properties
|
|
|
|
files where the user passwords are specified in a hashed form by default. Note,
|
|
|
|
the passwords are technically *hashed* rather than masked in this context. The
|
2019-06-22 16:00:26 -04:00
|
|
|
default `PropertiesLoginModule` will not decode the passwords in
|
|
|
|
`artemis-users.properties` but will instead hash the input and compare the two
|
|
|
|
hashed values for password verification.
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2020-12-07 13:49:13 -05:00
|
|
|
Use the following command from the CLI of the Artemis *instance* you wish to
|
2019-06-22 16:00:26 -04:00
|
|
|
add the user/password to. This command will not work from the Artemis home
|
2020-11-24 12:56:07 -05:00
|
|
|
used to create the instance, and it will also not work unless the broker has
|
|
|
|
been started. For example:
|
2019-06-22 16:00:26 -04:00
|
|
|
|
|
|
|
```sh
|
2020-11-24 12:56:07 -05:00
|
|
|
./artemis user add --user-command-user guest --user-command-password guest --role admin
|
2019-06-22 16:00:26 -04:00
|
|
|
```
|
2018-01-18 01:31:32 -05:00
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
This will use the default codec to perform a "one-way" hash of the password
|
|
|
|
and alter both the `artemis-users.properties` and `artemis-roles.properties`
|
|
|
|
files with the specified values.
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
Passwords in `artemis-users.properties` are automatically detected as hashed or
|
|
|
|
not by looking for the syntax `ENC(<hash>)`. The `mask-password` parameter does
|
|
|
|
not need to be `true` to use hashed passwords here.
|
|
|
|
|
2020-11-24 12:56:07 -05:00
|
|
|
> **Warning**
|
|
|
|
>
|
|
|
|
> Management and CLI operations to manipulate user & role data are only available
|
|
|
|
> when using the `PropertiesLoginModule`.
|
|
|
|
>
|
|
|
|
> In general, using properties files and broker-centric user management for
|
|
|
|
> anything other than very basic use-cases is not recommended. The broker is
|
|
|
|
> designed to deal with messages. It's not in the business of managing users,
|
|
|
|
> although that functionality is provided at a limited level for convenience. LDAP
|
|
|
|
> is recommended for enterprise level production use-cases.
|
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
### cluster-password
|
|
|
|
|
|
|
|
If it is specified in `ENC()` syntax it will be treated as masked, or
|
|
|
|
if `mask-password` is `true` the `cluster-password` will be treated as masked.
|
|
|
|
|
|
|
|
### Connectors & Acceptors
|
2017-09-05 15:30:40 -04:00
|
|
|
|
|
|
|
In broker.xml `connector` and `acceptor` configurations sometimes needs to
|
|
|
|
specify passwords. For example, if a user wants to use an `acceptor` with
|
|
|
|
`sslEnabled=true` it can specify `keyStorePassword` and `trustStorePassword`.
|
|
|
|
Because Acceptors and Connectors are pluggable implementations, each transport
|
|
|
|
will have different password masking needs.
|
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
The preferred way is simply to use the `ENC()` syntax.
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
If using the legacy `mask-password` and `password-codec` values then when a
|
|
|
|
`connector` or `acceptor` is initialised, Apache ActiveMQ Artemis will add
|
|
|
|
these values to the parameters using the keys `activemq.usemaskedpassword`
|
|
|
|
and `activemq.passwordcodec` respectively. The Netty and InVM implementations
|
|
|
|
will use these as needed and any other implementations will have access to
|
|
|
|
these to use if they so wish.
|
2018-01-18 01:31:32 -05:00
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
### Core Bridges
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2018-03-09 10:07:38 -05:00
|
|
|
Core Bridges are configured in the server configuration file and so the masking
|
|
|
|
of its `password` properties follows the same rules as that of
|
|
|
|
`cluster-password`. It supports `ENC()` syntax.
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2018-03-09 10:07:38 -05:00
|
|
|
For using `mask-password` property, the following table summarizes the
|
2018-01-18 01:31:32 -05:00
|
|
|
relations among the above-mentioned properties
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2018-03-09 10:07:38 -05:00
|
|
|
mask-password | cluster-password | acceptor/connector passwords | bridge password
|
|
|
|
--- | --- | --- | ---
|
|
|
|
absent|plain text|plain text|plain text
|
|
|
|
false|plain text|plain text|plain text
|
|
|
|
true|masked|masked|masked
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
It is recommended that you use the `ENC()` syntax for new applications/deployments.
|
2018-01-18 01:31:32 -05:00
|
|
|
|
|
|
|
#### Examples
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2018-03-09 10:07:38 -05:00
|
|
|
**Note:** In the following examples if related attributed or properties are
|
2017-09-05 15:30:40 -04:00
|
|
|
absent, it means they are not specified in the configure file.
|
|
|
|
|
2018-03-09 10:07:38 -05:00
|
|
|
- Unmasked
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2018-03-09 10:07:38 -05:00
|
|
|
```xml
|
|
|
|
<cluster-password>bbc</cluster-password>
|
|
|
|
```
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2018-03-09 10:07:38 -05:00
|
|
|
This indicates the cluster password is a plain text value `bbc`.
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2018-03-09 10:07:38 -05:00
|
|
|
- Masked 1
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2018-03-09 10:07:38 -05:00
|
|
|
```xml
|
2019-06-22 16:00:26 -04:00
|
|
|
<cluster-password>ENC(80cf731af62c290)</cluster-password>
|
2018-03-09 10:07:38 -05:00
|
|
|
```
|
2018-01-18 01:31:32 -05:00
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
This indicates the cluster password is a masked value `80cf731af62c290`.
|
2018-01-18 01:31:32 -05:00
|
|
|
|
2018-03-09 10:07:38 -05:00
|
|
|
- Masked 2
|
2018-01-18 01:31:32 -05:00
|
|
|
|
2018-03-09 10:07:38 -05:00
|
|
|
```xml
|
|
|
|
<mask-password>true</mask-password>
|
|
|
|
<cluster-password>80cf731af62c290</cluster-password>
|
|
|
|
```
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2018-03-09 10:07:38 -05:00
|
|
|
This indicates the cluster password is a masked value and Apache ActiveMQ
|
2021-10-06 12:12:41 -04:00
|
|
|
Artemis will use [the default codec](#the-default-codec) to decode it. All
|
|
|
|
other passwords in the configuration file, Connectors, Acceptors and Bridges,
|
|
|
|
will also use masked passwords.
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
### bootstrap.xml
|
2018-01-18 01:31:32 -05:00
|
|
|
|
|
|
|
The broker embeds a web-server for hosting some web applications such as a
|
2019-06-22 16:00:26 -04:00
|
|
|
management console. It is configured in `bootstrap.xml` as a web component. The
|
|
|
|
web server can be secured using the `https` protocol, and it can be configured
|
|
|
|
with a keystore password and/or truststore password which by default are
|
|
|
|
specified in plain text forms.
|
2018-01-18 01:31:32 -05:00
|
|
|
|
2018-03-09 10:07:38 -05:00
|
|
|
To mask these passwords you need to use `ENC()` syntax. The `mask-password`
|
|
|
|
boolean is not supported here.
|
2018-01-18 01:31:32 -05:00
|
|
|
|
2018-03-09 10:07:38 -05:00
|
|
|
You can also set the `passwordCodec` attribute if you want to use a password
|
|
|
|
codec other than the default one. For example
|
2018-01-18 01:31:32 -05:00
|
|
|
|
|
|
|
```xml
|
2021-10-27 09:21:04 -04:00
|
|
|
<web path="web">
|
|
|
|
<binding uri="https://localhost:8443"
|
|
|
|
keyStorePassword="ENC(-5a2376c61c668aaf)"
|
|
|
|
trustStorePassword="ENC(3d617352d12839eb71208edf41d66b34)">
|
|
|
|
<app url="activemq-branding" war="activemq-branding.war"/>
|
|
|
|
</binding>
|
2018-03-08 15:46:38 -05:00
|
|
|
</web>
|
2018-01-18 01:31:32 -05:00
|
|
|
```
|
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
### management.xml
|
2018-09-13 17:50:07 -04:00
|
|
|
|
|
|
|
The broker embeds a JMX connector which is used for management. The connector can
|
|
|
|
be secured using SSL and it can be configured with a keystore password and/or
|
|
|
|
truststore password which by default are specified in plain text forms.
|
|
|
|
|
|
|
|
To mask these passwords you need to use `ENC()` syntax. The `mask-password`
|
|
|
|
boolean is not supported here.
|
|
|
|
|
|
|
|
You can also set the `password-codec` attribute if you want to use a password
|
|
|
|
codec other than the default one. For example
|
|
|
|
|
|
|
|
```xml
|
|
|
|
<connector
|
|
|
|
connector-port="1099"
|
|
|
|
connector-host="localhost"
|
|
|
|
secured="true"
|
|
|
|
key-store-path="myKeystore.jks"
|
|
|
|
key-store-password="ENC(3a34fd21b82bf2a822fa49a8d8fa115d"
|
|
|
|
trust-store-path="myTruststore.jks"
|
|
|
|
trust-store-password="ENC(3a34fd21b82bf2a822fa49a8d8fa115d)"/>
|
|
|
|
```
|
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
With this configuration, both passwords in ra.xml and all of its MDBs will have
|
|
|
|
to be in masked form.
|
|
|
|
|
2022-02-07 15:46:10 -05:00
|
|
|
### PropertiesLoginModule
|
|
|
|
Artemis supports Properties login module to be configured in JAAS configuration file
|
|
|
|
(default name is `login.config`). By default, the passwords of the users are in plain text
|
|
|
|
or masked with the [the default codec](#the-default-codec).
|
|
|
|
|
|
|
|
To use a custom codec class, set the `org.apache.activemq.jaas.properties.password.codec` property to the class name
|
|
|
|
e.g. to use the `com.example.MySensitiveDataCodecImpl` codec class:
|
|
|
|
|
|
|
|
```
|
|
|
|
PropertiesLoginWithPasswordCodec {
|
|
|
|
org.apache.activemq.artemis.spi.core.security.jaas.PropertiesLoginModule required
|
|
|
|
debug=true
|
|
|
|
org.apache.activemq.jaas.properties.user="users.properties"
|
|
|
|
org.apache.activemq.jaas.properties.role="roles.properties"
|
|
|
|
org.apache.activemq.jaas.properties.password.codec="com.example.MySensitiveDataCodecImpl";
|
|
|
|
};
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
### LDAPLoginModule
|
2019-06-22 16:00:26 -04:00
|
|
|
|
|
|
|
Artemis supports LDAP login modules to be configured in JAAS configuration file
|
2021-10-06 12:12:41 -04:00
|
|
|
(default name is `login.config`). When connecting to an LDAP server usually you
|
2019-06-22 16:00:26 -04:00
|
|
|
need to supply a connection password in the config file. By default this
|
|
|
|
password is in plain text form.
|
|
|
|
|
|
|
|
To mask it you need to configure the passwords in your login module using
|
|
|
|
`ENC()` syntax. To specify a codec using the following property:
|
|
|
|
|
2021-10-06 12:12:41 -04:00
|
|
|
`passwordCodec` - the password codec class name. ([the default codec](#the-default-codec)
|
|
|
|
will be used if it is absent)
|
2019-06-22 16:00:26 -04:00
|
|
|
|
|
|
|
For example:
|
|
|
|
|
|
|
|
```
|
|
|
|
LDAPLoginExternalPasswordCodec {
|
|
|
|
org.apache.activemq.artemis.spi.core.security.jaas.LDAPLoginModule required
|
|
|
|
debug=true
|
|
|
|
initialContextFactory=com.sun.jndi.ldap.LdapCtxFactory
|
|
|
|
connectionURL="ldap://localhost:1024"
|
|
|
|
connectionUsername="uid=admin,ou=system"
|
|
|
|
connectionPassword="ENC(-170b9ef34d79ed12)"
|
|
|
|
passwordCodec="org.apache.activemq.artemis.utils.DefaultSensitiveStringCodec;key=helloworld"
|
|
|
|
connectionProtocol=s
|
|
|
|
authentication=simple
|
|
|
|
userBase="ou=system"
|
|
|
|
userSearchMatching="(uid={0})"
|
|
|
|
userSearchSubtree=false
|
|
|
|
roleBase="ou=system"
|
|
|
|
roleName=dummyRoleName
|
|
|
|
roleSearchMatching="(uid={1})"
|
|
|
|
roleSearchSubtree=false
|
|
|
|
;
|
|
|
|
};
|
|
|
|
```
|
|
|
|
|
|
|
|
### JCA Resource Adapter
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2018-03-09 10:07:38 -05:00
|
|
|
Both ra.xml and MDB activation configuration have a `password` property that
|
|
|
|
can be masked preferably using `ENC()` syntax.
|
2018-01-18 01:31:32 -05:00
|
|
|
|
2018-10-08 16:05:46 -04:00
|
|
|
Alternatively it can use an optional attribute in ra.xml to indicate that a
|
2018-03-09 10:07:38 -05:00
|
|
|
password is masked:
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2018-03-09 10:07:38 -05:00
|
|
|
`UseMaskedPassword` -- If setting to "true" the passwords are masked. Default
|
|
|
|
is false.
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2018-01-18 01:31:32 -05:00
|
|
|
There is another property in ra.xml that can specify a codec:
|
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
`PasswordCodec` -- Class name and its parameters for the codec used to decode
|
2018-03-09 10:07:38 -05:00
|
|
|
the masked password. Ignored if UseMaskedPassword is false. The format of this
|
|
|
|
property is a full qualified class name optionally followed by key/value pairs.
|
|
|
|
It is the same format as that for JMS Bridges. Example:
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2018-03-09 10:07:38 -05:00
|
|
|
Example 1 Using the `ENC()` syntax:
|
2018-01-18 01:31:32 -05:00
|
|
|
|
|
|
|
```xml
|
|
|
|
<config-property>
|
|
|
|
<config-property-name>password</config-property-name>
|
|
|
|
<config-property-type>String</config-property-type>
|
2019-06-22 16:00:26 -04:00
|
|
|
<config-property-value>ENC(80cf731af62c290)</config-property-value>
|
2018-01-18 01:31:32 -05:00
|
|
|
</config-property>
|
|
|
|
<config-property>
|
|
|
|
<config-property-name>PasswordCodec</config-property-name>
|
|
|
|
<config-property-type>java.lang.String</config-property-type>
|
2019-06-22 16:00:26 -04:00
|
|
|
<config-property-value>com.foo.ACodec;key=helloworld</config-property-value>
|
2018-01-18 01:31:32 -05:00
|
|
|
</config-property>
|
|
|
|
```
|
|
|
|
|
|
|
|
Example 2 Using the "UseMaskedPassword" property:
|
|
|
|
|
2017-09-05 15:30:40 -04:00
|
|
|
```xml
|
|
|
|
<config-property>
|
|
|
|
<config-property-name>UseMaskedPassword</config-property-name>
|
|
|
|
<config-property-type>boolean</config-property-type>
|
|
|
|
<config-property-value>true</config-property-value>
|
|
|
|
</config-property>
|
2018-01-18 01:31:32 -05:00
|
|
|
<config-property>
|
|
|
|
<config-property-name>password</config-property-name>
|
|
|
|
<config-property-type>String</config-property-type>
|
2019-06-22 16:00:26 -04:00
|
|
|
<config-property-value>80cf731af62c290</config-property-value>
|
2018-01-18 01:31:32 -05:00
|
|
|
</config-property>
|
2017-09-05 15:30:40 -04:00
|
|
|
<config-property>
|
|
|
|
<config-property-name>PasswordCodec</config-property-name>
|
|
|
|
<config-property-type>java.lang.String</config-property-type>
|
2019-06-22 16:00:26 -04:00
|
|
|
<config-property-value>com.foo.ACodec;key=helloworld</config-property-value>
|
2017-09-05 15:30:40 -04:00
|
|
|
</config-property>
|
|
|
|
```
|
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
## Choosing a codec for password masking
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
As described in the previous sections, all password masking requires a codec.
|
|
|
|
A codec uses an algorithm to convert a masked password into its original
|
2018-03-09 10:07:38 -05:00
|
|
|
clear text form in order to be used in various security operations. The
|
|
|
|
algorithm used for decoding must match that for encoding. Otherwise the
|
|
|
|
decoding may not be successful.
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
For user's convenience Apache ActiveMQ Artemis provides a default codec.
|
2021-10-06 12:12:41 -04:00
|
|
|
However, a user can implement their own if they wish.
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
### The Default Codec
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
Whenever no codec is specified in the configuration, the default codec
|
|
|
|
is used. The class name for the default codec is
|
2018-03-09 10:07:38 -05:00
|
|
|
`org.apache.activemq.artemis.utils.DefaultSensitiveStringCodec`. It has
|
|
|
|
hashing, encoding, and decoding capabilities. It uses `java.crypto.Cipher`
|
|
|
|
utilities to hash or encode a plaintext password and also to decode a masked
|
2021-10-06 12:12:41 -04:00
|
|
|
string using the same algorithm and "key."
|
|
|
|
|
|
|
|
The "key" used here is important since the *same* key **must** be used to both
|
|
|
|
mask and unmask the password. The key is just a string of characters which the
|
|
|
|
codec feeds to the underlying algorithm. There is a default key in
|
|
|
|
`org.apache.activemq.artemis.utils.DefaultSensitiveStringCodec`, but using the
|
|
|
|
default key leaves open the possibility that nefarious actors could also use
|
|
|
|
that key to unmask the password(s). Therefore, it is possible to supply your
|
|
|
|
*own* key, and there are a few ways to do this.
|
|
|
|
|
|
|
|
1. Specify the key in the codec configuration using the `key=value` syntax.
|
|
|
|
Depending on which password you're trying to mask the configuration
|
|
|
|
specifics will differ slightly, but this can be done, for example, in
|
|
|
|
`broker.xml` with `<password-codec>`:
|
|
|
|
```xml
|
|
|
|
<password-codec>org.apache.activemq.artemis.utils.DefaultSensitiveStringCodec;key=myKey</password-codec>
|
|
|
|
```
|
|
|
|
Similar configurations are possible in any file that supports password
|
|
|
|
masking, e.g. `boostrap.xml`, `login.config`, `management.xml`, etc. The
|
|
|
|
main drawback with this method is that the key will be stored in plain-text
|
|
|
|
in the configuration file(s).
|
2022-12-06 05:45:34 -05:00
|
|
|
2. Set the system property -Dartemis.default.sensitive.string.codec.key=myKey.
|
|
|
|
3. Set the environment property `ARTEMIS_DEFAULT_SENSITIVE_STRING_CODEC_KEY`.
|
|
|
|
The benefit of using this method is that the key is more obscure since it will
|
|
|
|
not exist in any configuration file. It can be set immediately *before* the broker starts and then cleared
|
2021-10-06 12:12:41 -04:00
|
|
|
from the environment immediately *after* the broker finishes starting.
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
### Using a custom codec
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
It is possible to use a custom codec rather than the built-in one. Simply
|
|
|
|
make sure the codec is in Apache ActiveMQ Artemis's classpath. The custom
|
|
|
|
codec can also be service loaded rather than class loaded, if the codec's
|
2018-03-09 10:07:38 -05:00
|
|
|
service provider is installed in the classpath. Then configure the server to
|
|
|
|
use it as follows:
|
2017-09-05 15:30:40 -04:00
|
|
|
|
|
|
|
```xml
|
2019-06-22 16:00:26 -04:00
|
|
|
<password-codec>com.foo.SomeCodec;key1=value1;key2=value2</password-codec>
|
2017-09-05 15:30:40 -04:00
|
|
|
```
|
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
If your codec needs params passed to it you can do this via key/value pairs
|
|
|
|
when configuring. For instance if your codec needs say a "key-location"
|
2018-03-09 10:07:38 -05:00
|
|
|
parameter, you can define like so:
|
2017-09-05 15:30:40 -04:00
|
|
|
|
|
|
|
```xml
|
2019-06-22 16:00:26 -04:00
|
|
|
<password-codec>com.foo.NewCodec;key-location=/some/url/to/keyfile</password-codec>
|
2017-09-05 15:30:40 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
Then configure your cluster-password like this:
|
|
|
|
|
|
|
|
```xml
|
2018-03-08 15:46:38 -05:00
|
|
|
<cluster-password>ENC(masked_password)</cluster-password>
|
2017-09-05 15:30:40 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
When Apache ActiveMQ Artemis reads the cluster-password it will initialize the
|
2019-06-22 16:00:26 -04:00
|
|
|
`NewCodec` and use it to decode "mask\_password". It also process all passwords
|
|
|
|
using the new defined codec.
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2018-03-08 15:46:38 -05:00
|
|
|
#### Implementing Custom Codecs
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
To use a different codec than the built-in one, you either pick one from
|
|
|
|
existing libraries or you implement it yourself. All codecs must implement
|
2022-02-07 15:46:10 -05:00
|
|
|
the `org.apache.activemq.artemis.utils.SensitiveDataCodec<String>` interface.
|
|
|
|
So a new codec would be defined like
|
2017-09-05 15:30:40 -04:00
|
|
|
|
|
|
|
```java
|
2019-06-22 16:00:26 -04:00
|
|
|
public class MyCodec implements SensitiveDataCodec<String> {
|
|
|
|
@Override
|
|
|
|
public String decode(Object mask) throws Exception {
|
|
|
|
// Decode the mask into clear text password.
|
2017-09-05 15:30:40 -04:00
|
|
|
return "the password";
|
|
|
|
}
|
2019-06-22 16:00:26 -04:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public String encode(Object secret) throws Exception {
|
|
|
|
// Mask the clear text password.
|
2021-10-06 12:12:41 -04:00
|
|
|
return "the masked password";
|
2019-06-22 16:00:26 -04:00
|
|
|
}
|
2017-09-05 15:30:40 -04:00
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
@Override
|
|
|
|
public void init(Map<String, String> params) {
|
|
|
|
// Initialization done here. It is called right after the codec has been created.
|
2017-09-05 15:30:40 -04:00
|
|
|
}
|
2022-02-07 15:46:10 -05:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean verify(char[] value, String encodedValue) {
|
|
|
|
// Return true if the value matches the encodedValue.
|
|
|
|
return checkValueMatchesEncoding(value, encodedValue);
|
|
|
|
}
|
2017-09-05 15:30:40 -04:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2019-06-22 16:00:26 -04:00
|
|
|
Last but not least, once you get your own codec please [add it to the
|
2018-03-09 10:07:38 -05:00
|
|
|
classpath](using-server.md#adding-runtime-dependencies) otherwise the broker
|
|
|
|
will fail to load it!
|