|
- 这篇文章介绍了当WordPress开启错误记录以后,根据error_log来发现SQL注入攻击的思路。
3 g( K' a$ ~/ d) D; x' [
+ K8 ]4 x1 j- N. s* |: D吸引Cocoa的是这个博客其实是TrustWave公司下属的一个叫Spiderlab团队的官方博客,貌似比较有意思。例如它提到了Honeypot Alert这个标签里的文章都是分析他们一个Web蜜罐的Apache access_log日志的。
" |* @% G! {5 M b9 `% G4 k
8 M$ C) t \4 t% S3 U简单介绍一下这篇文章吧。) N' {; n2 W" I4 ~9 s/ |$ [$ @7 R
6 w, n; X+ w1 F3 I2 @
开启WP错误记录功能! @6 t. m m0 w" D: B
只需要修改wp-config.php的如下几行:: N7 ^, p g* }0 @
, |! c3 b: a5 @5 a$ ?
@ini_set('log_errors','On'); @ini_set('display_errors','Off'); @ini_set('error_log','/home/example.com/logs/php_error.log');SQL 注入扫描
4 Z3 n, d+ t1 e6 I) n& Y$ U( K Z+ u5 r6 m8 @
[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\'3 d5 W2 P* s6 X8 ?8 C8 ?
[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--
$ N3 S0 Q4 B% o, G$ a[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--' f# v2 ?: Q* v Q e8 p
上面的日志就是在暴力猜解表的列数,那个巨大的十六进制值会被解析成null。
! h5 a- }) l' a7 N4 pSQL盲注扫描1 u( |+ f5 S5 d# K
攻击者使用了类似"waitfor delay"和"benchmark"这样的函数来盲注。1 @, C+ U7 a% x# j1 f" R/ H' P
( l5 V& h8 F# L& K7 {
[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\'--
& v( I, x g: l/ ~$ ?/ h[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)! k! d9 m0 B9 v) D0 R: `
Google一下大规模扫描
& H! h8 [" V$ K h' z( O1 @- D; @ Y6 {" Z* n% b
N$ s- \8 W( x5 f
; P, x* _2 T9 _5 o7 j* h1 U. I Z
( X- ]1 N& y8 b5 }! A& A0 z
+ v; g5 c* s+ @" [! \" T* Q6 r
0 l; U. }& z$ R4 g5 G& P+ p 僵尸网络控制着可能使用被感染主机来识别潜在的目标。下面是该公司的蜜罐捕获到的一个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;
9 ?2 K# X7 ^: X/ U- ?
( f% `( E- ~$ B6 q$ \) aCocoa总结:文章比较简单,但是从日志来检测攻击貌似是目前流行的一个方向。, T ?3 B& H8 G2 T5 f8 n
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
|