Defined Type: ora_cis::rules::r_2_2_13
- Defined in:
- manifests/rules/r_2_2_13.pp
Overview
See the file “LICENSE” for the full license governing this code.
2.2.13 Ensure ‘SEC_MAX_FAILED_LOGIN_ATTEMPTS’ Is Not Greater than ‘10’ (Scored)
Profile Applicability:
• Level 1 - RDBMS
Description:
The SEC_MAX_FAILED_LOGIN_ATTEMPTS parameter determines how many failed login attempts are allowed before Oracle closes the login connection.
Parameters:
$title: Database sid to apply the rule on
20 21 22 23 24 25 26 27 28 29 |
# File 'manifests/rules/r_2_2_13.pp', line 20
define ora_cis::rules::r_2_2_13
{
$sid = $title
ora_cis_setup { "Rule 2.2.13 on ${sid}":
ensure => 'present'
} ->
ora_cis::internal::parameter { "SEC_MAX_FAILED_LOGIN_ATTEMPTS@${sid}":
value => '10',
}
}
|