tools: add AW health checks and test DLP policy

This commit is contained in:
igor04091968
2026-05-05 06:38:04 +03:00
parent eb83a8b08f
commit 82ee9ab4fa
3 changed files with 310 additions and 0 deletions
+59
View File
@@ -0,0 +1,59 @@
{
"version": 1,
"defaults": {
"enabled": true,
"cooldownSeconds": 5,
"action": "log",
"severity": "low"
},
"rules": [],
"endpoint": {
"clipboard": [
{
"id": "test-block-clipboard",
"enabled": true,
"cooldownSeconds": 10,
"action": "block",
"severity": "high",
"message": "ТЕСТ: Буфер обмена заблокирован",
"minLength": 5,
"regexPatterns": [
"(?i)секрет",
"(?i)пароль"
]
}
],
"usb": [
{
"id": "test-block-usb",
"enabled": true,
"cooldownSeconds": 10,
"action": "block",
"severity": "high",
"message": "ТЕСТ: Запись на USB запрещена (Read-Only)"
}
],
"print": [
{
"id": "test-block-print",
"enabled": true,
"cooldownSeconds": 10,
"action": "block",
"severity": "high",
"message": "ТЕСТ: Печать документа заблокирована",
"documentRegex": "(?i)(паспорт|секрет)"
}
],
"email": [
{
"id": "test-email-monitor",
"enabled": true,
"cooldownSeconds": 10,
"action": "alert",
"severity": "medium",
"message": "ТЕСТ: Зафиксирована отправка письма",
"externalOnly": false
}
]
}
}