-
Notifications
You must be signed in to change notification settings - Fork 2
/
secrules.json
31 lines (31 loc) · 1.07 KB
/
secrules.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
{
"Rules" : [
{
"name" : "No telnet",
"presence" : false,
"command" : "telnet server",
"value" : "enabled",
"passmsg" : "No telnet: Passed, telnet not configured",
"failmsg" : "No telnet: FAILED, telnet is configured",
"severity" : 80
},
{
"name" : "Complex user password",
"presence" : true,
"command" : "username",
"value" : "common-criteria-policy sanpasscomplex",
"passmsg" : "Complex password: Passed, username has complex password policy configured",
"failmsg" : "Complex password: FAILED, username DOES NOT have complex password policy configured",
"severity" : 50
},
{
"name" : "NTP present",
"presence" : true,
"command" : "ntp server",
"value" : "ntp.example.com",
"passmsg" : "NTP present: Passed, NTP server correctly configured`",
"failmsg" : "NTP present: FAILED, NTP server NOT configured or set to wrong value",
"severity" : 20
}
]
}