Correlate failed login activity before alerting
This commit is contained in:
@@ -4,13 +4,23 @@ namespace OCSentinelCli;
|
||||
|
||||
internal sealed record ScannerConfiguration
|
||||
{
|
||||
public int WarningEventThreshold { get; init; } = 1;
|
||||
public int WarningEventThreshold { get; init; } = 10;
|
||||
|
||||
public int CriticalEventThreshold { get; init; } = 20;
|
||||
public int CriticalEventThreshold { get; init; } = 30;
|
||||
|
||||
public int WarningUniqueIpThreshold { get; init; } = 1;
|
||||
public int WarningUniqueIpThreshold { get; init; } = 5;
|
||||
|
||||
public int CriticalUniqueIpThreshold { get; init; } = 10;
|
||||
public int CriticalUniqueIpThreshold { get; init; } = 12;
|
||||
|
||||
public int LoginBurstWindowMinutes { get; init; } = 15;
|
||||
|
||||
public int WarningLoginBurstCount { get; init; } = 5;
|
||||
|
||||
public int CriticalLoginBurstCount { get; init; } = 20;
|
||||
|
||||
public int WarningSprayAccountCount { get; init; } = 5;
|
||||
|
||||
public int CriticalSprayAccountCount { get; init; } = 10;
|
||||
|
||||
public int CorrelationWarningCveThreshold { get; init; } = 1;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user