|
- 这篇文章介绍了当WordPress开启错误记录以后,根据error_log来发现SQL注入攻击的思路。
7 x% y& L' H. p+ U3 O C Y2 M
6 L" m1 x* S: W% J( i% v4 a/ _吸引Cocoa的是这个博客其实是TrustWave公司下属的一个叫Spiderlab团队的官方博客,貌似比较有意思。例如它提到了Honeypot Alert这个标签里的文章都是分析他们一个Web蜜罐的Apache access_log日志的。
v0 R S6 }+ [$ J1 h* g* ]# G6 K& j" @# {5 f1 ~
简单介绍一下这篇文章吧。0 T1 b4 H" L6 |7 M* J# S
. r# w0 |& o" G/ e' l
开启WP错误记录功能
' N8 F. M! S0 e只需要修改wp-config.php的如下几行:$ g9 A- n4 p4 ]2 y+ M! {, u
' ?; h( d' d7 S, |$ B. e6 y
@ini_set('log_errors','On'); @ini_set('display_errors','Off'); @ini_set('error_log','/home/example.com/logs/php_error.log');SQL 注入扫描
5 x) ]/ g' |, N. T2 i% t5 D/ _: \6 C9 U: Y
[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\'
$ s0 P b7 J8 M3 F k( a! o- B4 t5 N[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--
5 j. s2 E( z, k[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--/ {, o4 d% @+ i! `, F
上面的日志就是在暴力猜解表的列数,那个巨大的十六进制值会被解析成null。 5 U, c7 c) q* [1 w7 Y0 W
SQL盲注扫描
' G0 U& o/ @7 s L/ E/ T8 m攻击者使用了类似"waitfor delay"和"benchmark"这样的函数来盲注。: ^9 t8 ~9 |6 S
6 M# m: ~) |; R0 z
[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\'--7 `# C4 q; u2 G( f3 ~5 {
[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)1 d$ Q9 V5 u. \8 @6 m; @
Google一下大规模扫描* q% @, T( l) ~& Q! P |& |
0 ^1 }7 e# o$ u# }5 { E* K) h* D! ?9 M7 ]" E, |
8 O4 R! b% F5 @8 p" L" ^
1 ]9 e. Z* t4 [! J7 |1 i# W# G; y+ B- w
7 J2 e" A& f G% k. G$ g 僵尸网络控制着可能使用被感染主机来识别潜在的目标。下面是该公司的蜜罐捕获到的一个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;) C: g& M; C% {; v+ G" f2 E F
1 a, W3 U# p2 s2 t DCocoa总结:文章比较简单,但是从日志来检测攻击貌似是目前流行的一个方向。+ r% i! j* Q3 c" B; r% s$ E
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
|