-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrules.json
32 lines (32 loc) · 945 Bytes
/
rules.json
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
26
27
28
29
30
31
32
{
"ssh_auth_fail":{
"filename": "/var/log/auth.log",
"condition": "Failed password for",
"alert": "SSH Authentication Failure Attempt",
"type": "alert"
},
"ssh_auth_success":{
"filename":"/var/log/auth.log",
"condition": " Accepted password for",
"type": "alert",
"alert": "SSH Authentication Successful Attempt"
},
"ssh_auth_inv_user":{
"filename": "/var/log/auth.log",
"condition": "Invalid user",
"type": "alert",
"alert": "Invalid user attempt"
},
"ssh_auth_succ_pubkey":{
"filename": "/var/log/auth.log",
"condition": "Accepted publickey for",
"type": "alert",
"alert": "SSH Authentication Successful Attempt"
},
"password_cracker":{
"filename": "kokos",
"condition": "\n",
"type": "password",
"alert": "A new password has been cracked"
}
}