利用shell脚本抓取执行的sql语句

   #!/bin/bash
   #this script used montor mysql network traffic.echo sql
   tcpdump -i eth0 -s 0 -l -w - dst port 3306 | strings | perl -e '
   while(<>) { chomp; next if /^[^ ]+[ ]*$/;
   if(/^(SELECT|UPDATE|DELETE|INSERT|SET|COMMIT|ROLLBACK|CREATE|DROP|ALTER|CALL)/i)
   {
       if (defined $q) { print "$q\n"; }
           $q=$_;
       } else {
           $_ =~ s/^[ \t]+//; $q.=" $_";
       }
   }
    原文作者:日风和
    原文地址: https://www.jianshu.com/p/3ee3798d7dd4
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞