当前位置:网站首页>Oracle 脚本实现简单的审计功能
Oracle 脚本实现简单的审计功能
2022-08-03 18:19:00 【墨天轮】
前景
为了数据安全,生产环境开数据库审计的话会有很大的消耗,一般不建议开启。于是根据dba_hist_active_sess_history写了个shell 脚本,每天产生一个简单的审计报告。
审计脚本:audit_db.sh
#!/bin/sh export ORACLE_SID=twoexport ORACLE_UNQNAME=twoexport ORACLE_BASE=/u01/app/oracleexport ORACLE_HOME=/u01/app/oracle/11.2.0.3/productexport PATH=$ORACLE_HOME/bin:$PATHexport LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATHexport NLS_LANG=AMERICAN_AMERICA.AL32UTF8export con_user='sqlplus -s / as dba'export au_dir='/u01/report/audit_db'audit_date=`date +%Y-%m-%d -d "1 day ago"`if [ ! -d ${au_dir}/${audit_date} ];then mkdir -p ${au_dir}/${audit_date}firesult=`$con_user <<EOFset colsep','; set echo off; set feedback off; set heading off; set pagesize 0; set linesize 1000; set numwidth 12; set termout off; set timing off; set trimout on; set trimspool on; set trims on; col username format a15col machine format a30col program format a50col sql_opname format a20spool ${au_dir}/${audit_date}/${audit_date}.txt select to_char(h.sample_time, 'yyyy-mm-dd hh24:mi:ss') exec_time, u.username, h.machine, h.program, h.sql_opname from sys.dba_hist_active_sess_history h left join sys.all_users u on u.user_id = h.user_id where h.module is not null and h.sql_opname is not null and to_char(h.sample_time, 'yyyy-mm-dd') = '$audit_date';spool offEOF`result_report=`$con_user <<EOFset colsep','; set echo off; set feedback off; set heading off; set pagesize 0; set linesize 800; set numwidth 12; set termout off; set timing off; set trimout on; set trimspool on; set trims on; col username format a15col machine format a30col program format a50col sql_opname format a20spool ${au_dir}/${audit_date}/${audit_date}.report select u.username, h.machine, h.program, h.sql_opname, count(*) from sys.dba_hist_active_sess_history h left join sys.all_users u on u.user_id = h.user_id where h.module is not null and h.sql_opname is not null and to_char(h.sample_time, 'yyyy-mm-dd') = '$audit_date' group by username, machine, program, h.sql_opname order by 5 desc;spool offEOF`
输出日志:
[[email protected] 2022-08-02]$ cat 2022-08-02.report业务用户 主机名 连接方式 操作类型 操作次数two ,app.tomcat.com ,JDBC Thin Client ,SELECT, 8610two ,app1.tomcat.com ,JDBC Thin Client ,INSERT, 8610
边栏推荐
- InnoDB 中不同SQL语句设置的锁
- Higher mathematics - chapter ten infinite series - constant term series
- 2020icpc亚洲区域赛(济南)M题Cook Pancakes(小根堆的应用)
- 一加Ace值得买吗?用实力诠释性能的强大
- 常见亲脂性细胞膜染料DiO, Dil, DiR, Did光谱图和实验操作流程
- With the help of Kubernetes kubekey speed installation
- 5v2.1a给5v2a充电行吗
- @resource和@autowired的区别
- yaml数据格式
- 我们为何看好投资 DAO?
猜你喜欢
随机推荐
货比四家 version tb1.63
常见亲脂性细胞膜染料DiO, Dil, DiR, Did光谱图和实验操作流程
CodeTON Round 2 (Div. 1 + Div. 2, Rated, Prizes), problem: (D) Magical Array
cocos creater 3.x 插件安装方法
Flask框架——项目可安装化
MVCC多版本并发控制的理解
15、学习MySQL NULL 值处理
2022/08/02------Ugly number
fatal error: jni.h: No such file or directory
Postgresql 备份大小情况!
ImportError: /lib/libgdal.so.26: undefined symbol: sqlite3_column_table_name
使用安全浏览器将网页保存为pdf的方法步骤
Oracle备份的几种方式
多肽介导PEG磷脂——靶向功能材料之DSPE-PEG-RGD/TAT/NGR/APRPG
注意力机制的详细理解
“vite”和“vite预览”有什么区别?
技术开发人员常用的安全浏览器
二叉树求和路径问题解答与注记
云图说丨初识华为云微服务引擎CSE
爬虫之selenium