mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-02-14 23:22:28 -05:00
20 lines
343 B
Markdown
20 lines
343 B
Markdown
# Security
|
|
|
|
## Rate Limiting login attempts
|
|
|
|
You can use the MeshCentral Server Console with the command `badlogins` to see the current settings.
|
|
|
|
Adjust these items in your `config.json`
|
|
|
|
```json
|
|
"settings": {
|
|
"_maxInvalidLogin": {
|
|
"time": 10,
|
|
"count": 10,
|
|
"coolofftime": 10
|
|
},
|
|
}
|
|
```
|
|
|
|
![](images/rate_limiting_logins.png)
|