博客
关于我
MySQL 伪审计实现
阅读量:390 次
发布时间:2019-03-05

本文共 1125 字,大约阅读时间需要 3 分钟。

MySQL????????

1. ????

??????MySQL?????????????????????????????????????IP?????????????

2. ????

MySQL?????????????????????????????????????????????????????????????????????????????????

3. ????

??MySQL?init_connect?????????????????SQL???????????????

3.1 ????

  • init_connect ??????????????????SQL????????SQL????????????
  • ???????????SUPER??????init_connect??????????????????????
  • ???????MySQL 5.7.22????????init_connect??????????????????????????????????????????

3.2 ????

  • ??????
    CREATE TABLE `db_audit` (    `id` INT PRIMARY KEY AUTO_INCREMENT,    `username` VARCHAR(50) NOT NULL,    `login_time` DATETIME NOT NULL,    `table_name` VARCHAR(50) NOT NULL,    `operation_type` VARCHAR(50) NOT NULL,    `ip_address` VARCHAR(50) NOT NULL) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  • ????????????MySQL????????????
    [client]init_connect = 'REPLACE INTO `db_audit` (username, login_time, table_name, operation_type, ip_address) VALUES (%s, %s, %s, %s, %s)'
  • ????????????????????????SUPER???????????
  • ??Binlog???????Binlog???????????thread_id???????
  • 4. ??

    ??init_connect?Binlog??????????????????????????????????????Binlog????????????????????????????????????

    转载地址:http://purwz.baihongyu.com/

    你可能感兴趣的文章
    POI解析Excel【poi的坑——空行处理】
    查看>>
    POI:POI+JXL实现xls文件添加水印
    查看>>
    POI:POI实现docx文件添加水印
    查看>>
    POJ 1006
    查看>>
    poj 1035
    查看>>
    POJ 1061 青蛙的约会 (扩展欧几里得)
    查看>>
    POJ 1088 滑雪
    查看>>
    poj 1321(回溯)
    查看>>
    POJ 2019 Cornfields (二维RMQ)
    查看>>
    poj 2057 树形DP,数学期望
    查看>>
    poj 2112 最优挤奶方案
    查看>>
    POJ 2229 Sumsets(递推,找规律)
    查看>>
    poj 2236
    查看>>
    POJ 2243 Knight Moves
    查看>>
    POJ 2262 Goldbach's Conjecture
    查看>>
    POJ 2362 Square DFS
    查看>>
    poj 2386 Lake Counting(BFS解法)
    查看>>
    poj 2387 最短路模板题
    查看>>
    POJ 2391 多源多汇拆点最大流 +flody+二分答案
    查看>>
    POJ 2403
    查看>>