找回密码
 立即注册
欢迎中测联盟老会员回家,1997年注册的域名
查看: 2649|回复: 0
打印 上一主题 下一主题

从WordPress错误日志里发现SQL注入扫描攻击

[复制链接]
跳转到指定楼层
楼主
发表于 2013-1-11 21:23:34 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
  • 这篇文章介绍了当WordPress开启错误记录以后,根据error_log来发现SQL注入攻击的思路。6 U8 A7 n  R4 k/ m& ?" d! ~
    ' j" _( q3 @, s
    吸引Cocoa的是这个博客其实是TrustWave公司下属的一个叫Spiderlab团队的官方博客,貌似比较有意思。例如它提到了Honeypot Alert这个标签里的文章都是分析他们一个Web蜜罐的Apache access_log日志的。( U7 u: B1 d4 T7 K3 q) n
    8 b) P. f# s1 r: E4 P; e2 N5 x) x; E
    简单介绍一下这篇文章吧。
    7 D/ R: f( q  H& d+ @' X( U/ w& {
    * ]8 ~* i+ C9 V0 P% X) A( K" ~开启WP错误记录功能+ j1 o$ S  f, W) |" T/ S8 P7 N
    只需要修改wp-config.php的如下几行:
    9 v$ J& M% q# P- t3 O! [: ?, Q2 G/ G3 j, V) D: n
    @ini_set('log_errors','On'); @ini_set('display_errors','Off'); @ini_set('error_log','/home/example.com/logs/php_error.log');SQL 注入扫描
    ; b# z, ?8 _/ ^% X; w/ l5 x( D5 q, M6 g1 `1 O; Y) j/ H5 O8 `2 E' M
    [07-Dec-2012 02:40:49] WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE id = -1\'' at line 1 for query SELECT text, author_id, date FROM  WHERE id = -1\'/ }  k+ n& B; r9 _' d
    [07-Dec-2012 02:40:50] WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE id = 999999.9 UNION ALL SELECT 0x31303235343830303536--' at line 1 for query SELECT text, author_id, date FROM  WHERE id = 999999.9 UNION ALL SELECT 0x31303235343830303536--# [7 Y. _: p6 m; ?* J
    [07-Dec-2012 02:40:53] WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE id = 999999.9 UNION ALL SELECT 0x31303235343830303536,0x313032353438303035' at line 1 for query SELECT text, author_id, date FROM  WHERE id = 999999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536--7 ]8 A1 n/ A: k5 Z( L2 ^  S, `$ E
    上面的日志就是在暴力猜解表的列数,那个巨大的十六进制值会被解析成null。
    # }; a, H- K9 p6 ]7 u3 c: J: rSQL盲注扫描
    4 m- o' f$ B1 j( w" C! Y' |3 Z/ x1 ?+ z攻击者使用了类似"waitfor delay"和"benchmark"这样的函数来盲注。4 h( j+ S4 X) z; K: r3 ^  \

    3 V6 J; C- D. s$ f; n+ ?8 m[07-Dec-2012 02:43:21] WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE id = -1; if (1=1) waitfor delay \'00:00:05\'--' at line 1 for query SELECT text, author_id, date FROM  WHERE id = -1; if (1=1) waitfor delay \'00:00:05\'--; B" }& X8 i$ O% e
    [07-Dec-2012 02:43:27] WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE id = -1 and if(1=1,BENCHMARK(8623333,MD5(0x41)),0)' at line 1 for query SELECT text, author_id, date FROM  WHERE id = -1 and if(1=1,BENCHMARK(8623333,MD5(0x41)),0)
    * _" Q* M  Q: X7 a+ ]Google一下大规模扫描
    : b( a2 w9 a  C
    5 A/ E5 r8 q. v# z7 A; S: J( ^7 x) W
                               $ A7 n7 ^6 t; K: L. p8 t# D
    : q. `# I0 A# w4 J

    7 U2 r) L: U: B6 q1 s0 F" m# M! `5 x4 c* `& z
                                   僵尸网络控制着可能使用被感染主机来识别潜在的目标。下面是该公司的蜜罐捕获到的一个RFI(远程文件包含)攻击代码里的片段:
  • sub google() { my @list; my $key = $_[0]; for (my $i=0; $i<=400; $i+=10){ my $search = ("http://www.google.com/search?q=".&key($key)."&num=100&filter=0&start=".$i); my $res = &search_engine_query($search); while ($res =~ m/<a href="\"?http:\/\/([^">\"]*)\//g) { if ($1 !~ /google/){ my $link = $1; my @grep = &links($link); push(@list,@grep);            }        }    } return @list;# K9 K* J+ v9 `& L& T) ^) o) |

# w- |4 d5 w2 B: B: u. q1 tCocoa总结:文章比较简单,但是从日志来检测攻击貌似是目前流行的一个方向。​
) [4 V7 F0 v* `( I' H. E8 d

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

快速回复 返回顶部 返回列表