SV-55940r2_rule
V-16053
Oracle SEC_PROTOCOL_ERROR_FURTHER_ACTION parameter
DO6750-ORACLE11
CAT II
10
Set the value for the sec_protocol_error_further_action initialization parameter to DROP or DELAY.
DROP provides better protection and is recommended.
From SQL*Plus:
alter system set sec_protocol_error_further_action = 'drop' scope = spfile;
OR
alter system set sec_protocol_error_further_action = 'drop,3' scope = spfile;
NOTE: The addition of the ‘,3’ above further limits the number of ‘bad packets’ to the specified number before forcefully terminating the connection.
The above SQL*Plus command will set the parameter to take effect at next system startup.
From SQL*Plus:
select upper(value) from v$parameter
where name = 'sec_protocol_error_further_action';
If the value returned does not include DROP or DELAY, this is a Finding.
V-16053
False
DO6750-ORACLE11
From SQL*Plus:
select upper(value) from v$parameter
where name = 'sec_protocol_error_further_action';
If the value returned does not include DROP or DELAY, this is a Finding.
M
Database Administrator
1367