Search

Chapter 14. Configuring auditing to track events

download PDF

Red Hat build of Keycloak includes a suite of auditing capabilities. You can record every login and administrator action and review those actions in the Admin Console. Red Hat build of Keycloak also includes a Listener SPI that listens for events and can trigger actions. Examples of built-in listeners include log files and sending emails if an event occurs.

14.1. Auditing user events

You can record and view every event that affects users. Red Hat build of Keycloak triggers login events for actions such as successful user login, a user entering an incorrect password, or a user account updating. By default, Red Hat build of Keycloak does not store or display events in the Admin Console. Only the error events are logged to the Admin Console and the server’s log file.

Procedure

Use this procedure to start auditing user events.

  1. Click Realm settings in the menu.
  2. Click the Events tab.
  3. Click the User events settings tab.
  4. Toggle Save events to ON.

    User events settings

    User events settings

  5. Specify the length of time to store events in the Expiration field.
  6. Click Add saved types to see other events you can save.

    Add types

    Add types

  7. Click Add.

Click Clear user events when you want to delete all saved events.

Procedure

You can now view events.

  1. Click the Events tab in the menu.

    User events

    Login Events

  2. To filter events, click Search user event.

    Search user event

    Search user event

14.1.1. Event types

Login events:

EventDescription

Login

A user logs in.

Register

A user registers.

Logout

A user logs out.

Code to Token

An application, or client, exchanges a code for a token.

Refresh Token

An application, or client, refreshes a token.

Brute force protection:

EventDescription

User disabled by permanent lockout

Brute force protection disabled the user account permanently due to too many login failures.

User disabled by temporary lockout

Brute force protection disabled the user account temporarily due to too many login failures.

Account events:

EventDescription

Social Link

A user account links to a social media provider.

Remove Social Link

The link from a social media account to a user account severs.

Update Email

An email address for an account changes.

Update Profile

A profile for an account changes.

Send Password Reset

Red Hat build of Keycloak sends a password reset email.

Update Password

The password for an account changes.

Update TOTP

The Time-based One-time Password (TOTP) settings for an account changes.

Remove TOTP

Red Hat build of Keycloak removes TOTP from an account.

Send Verify Email

Red Hat build of Keycloak sends an email verification email.

Verify Email

Red Hat build of Keycloak verifies the email address for an account.

Each event has a corresponding error event.

14.1.2. Event listener

Event listeners listen for events and perform actions based on that event. Red Hat build of Keycloak includes two built-in listeners, the Logging Event Listener and Email Event Listener.

14.1.2.1. The logging event listener

When the Logging Event Listener is enabled, this listener writes to a log file when an error event occurs.

An example log message from a Logging Event Listener:

11:36:09,965 WARN  [org.keycloak.events] (default task-51) type=LOGIN_ERROR, realmId=master,
                    clientId=myapp,
                    userId=19aeb848-96fc-44f6-b0a3-59a17570d374, ipAddress=127.0.0.1,
                    error=invalid_user_credentials, auth_method=openid-connect, auth_type=code,
                    redirect_uri=http://localhost:8180/myapp,
                    code_id=b669da14-cdbb-41d0-b055-0810a0334607, username=admin

You can use the Logging Event Listener to protect against hacker bot attacks:

  1. Parse the log file for the LOGIN_ERROR event.
  2. Extract the IP Address of the failed login event.
  3. Send the IP address to an intrusion prevention software framework tool.

The Logging Event Listener logs events to the org.keycloak.events log category. Red Hat build of Keycloak does not include debug log events in server logs, by default.

To include debug log events in server logs:

  1. Change the log level for the org.keycloak.events category
  2. Change the log level used by the Logging Event listener.

To change the log level used by the Logging Event listener, add the following:

bin/kc.[sh|bat] start --spi-events-listener-jboss-logging-success-level=info --spi-events-listener-jboss-logging-error-level=error

The valid values for log levels are debug, info, warn, error, and fatal.

14.1.2.2. The Email Event Listener

The Email Event Listener sends an email to the user’s account when an event occurs and supports the following events:

  • Login Error.
  • Update Password.
  • Update Time-based One-time Password (TOTP).
  • Remove Time-based One-time Password (TOTP).

Procedure

To enable the Email Listener:

  1. Click Realm settings in the menu.
  2. Click the Events tab.
  3. Click the Event listeners field.
  4. Select email.

    Event listeners

    Event listeners

You can exclude events by using the --spi-events-listener-email-exclude-events argument. For example:

kc.[sh|bat] --spi-events-listener-email-exclude-events=UPDATE_TOTP,REMOVE_TOTP

14.2. Auditing admin events

You can record all actions that are performed by an administrator in the Admin Console. The Admin Console performs administrative actions by invoking the Red Hat build of Keycloak REST interface and Red Hat build of Keycloak audits these REST invocations. You can view the resulting events in the Admin Console.

Procedure

Use this procedure to start auditing admin actions.

  1. Click Realm settings in the menu.
  2. Click the Events tab.
  3. Click the Admin events settings tab.
  4. Toggle Save events to ON.

    Red Hat build of Keycloak displays the Include representation switch.

  5. Toggle Include representation to ON.

    The Include Representation switch includes JSON documents sent through the admin REST API so you can view the administrators actions.

    Admin events settings

    Admin events settings

  6. Click Save.
  7. To clear the database of stored actions, click Clear admin events.

Procedure

You can now view admin events.

  1. Click Events in the menu.
  2. Click the Admin events tab.

    Admin events

    Admin events

When the Include Representation switch is ON, it can lead to storing a lot of information in the database. You can set a maximum length of the representation by using the --spi-events-store-jpa-max-field-length argument. This setting is useful if you want to adhere to the underlying storage limitation. For example:

kc.[sh|bat] --spi-events-store-jpa-max-field-length=2500
Red Hat logoGithubRedditYoutubeTwitter

Learn

Try, buy, & sell

Communities

About Red Hat Documentation

We help Red Hat users innovate and achieve their goals with our products and services with content they can trust.

Making open source more inclusive

Red Hat is committed to replacing problematic language in our code, documentation, and web properties. For more details, see the Red Hat Blog.

About Red Hat

We deliver hardened solutions that make it easier for enterprises to work across platforms and environments, from the core datacenter to the network edge.

© 2024 Red Hat, Inc.