-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
25 lines (25 loc) · 769 Bytes
/
appsettings.json
File metadata and controls
25 lines (25 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"ConnectionStrings": {
"DefaultConnection": "Server=(localdb)\\MSSQLLocalDB;Database=SQLInjectionSimulator;Trusted_Connection=true;MultipleActiveResultSets=true;TrustServerCertificate=true"
},
"SimulationSettings": {
"NormalAttemptsCount": 15,
"InjectionAttemptsCount": 10,
"BruteForceAttemptsCount": 5,
"MaxFailedAttemptsBeforeLockout": 5,
"SimulationDurationMinutes": 1
},
"SecuritySettings": {
"EnableRealTimeDetection": true,
"EnableAutoAlert": true,
"MaxQueryExecutionTimeMs": 5000,
"EnableQueryLogging": true,
"EnableDetailedReporting": true
},
"ReportingSettings": {
"ExportToCSV": true,
"ExportPath": "./Reports/",
"IncludeDetailedPayloads": false,
"EnableConsoleReporting": true
}
}