Skip to main content

Enabling Account Lockout for Failed Login Attempts

Overview

This article describes how to configure Netwrix Change Tracker to lock a user account after repeated failed login attempts, instead of blocking the device's IP address.

Netwrix Change Tracker no longer uses IP blocking. Setting lockoutenabled to true locks the user account instead after repeated failed logins.

Instructions

  1. Open a Command Prompt as an administrator and stop IIS:

    iisreset /stop
  2. Open C:\inetpub\wwwroot\Change Tracker Generation 7 (NetCore) Hub\Configs\appsettings.json in a text editor.

  3. In the security > auth section, set lockoutenabled to true:

    "security": {
    "auth": {
    "lockoutenabled": "true",
    "lockoutmaxloginattempts": "3",
    "lockoutdurationminutes": "10"
    }
    }
    • lockoutenabled — set to true to lock the account after repeated failed login attempts.
    • lockoutmaxloginattempts — the number of failed attempts before the account locks. Defaults to 3.
    • lockoutdurationminutes — how long the account stays locked, in minutes. Set to 10 to match the previous IP-blocking duration, or another value to fit your policy.

    NOTE: Change only the auth values shown. The surrounding settings provide context.

  4. Save the file.

  5. Start IIS:

    iisreset /start

After IIS restarts, three failed login attempts from a device lock the account for the configured duration.