Skip to content

Commit 15c8d92

Browse files
author
jvazquez-r7
committed
Fix version checked and add reference
1 parent 7d317e5 commit 15c8d92

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/exploits/unix/webapp/php_wordpress_total_cache.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ def initialize(info = {})
3838
[
3939
[ 'OSVDB', '92652' ],
4040
[ 'BID', '59316' ],
41+
[ 'URL', 'http://wordpress.org/support/topic/pwn3d' ],
4142
[ 'URL', 'http://www.acunetix.com/blog/web-security-zone/wp-plugins-remote-code-execution/' ]
4243
],
4344
'Privileged' => false,
@@ -230,7 +231,7 @@ def check
230231

231232
if res.headers['X-Powered-By'] and res.headers['X-Powered-By'] =~ /W3 Total Cache\/([0-9\.]*)/
232233
version = $1
233-
if version <= "0.9.2.3"
234+
if version <= "0.9.2.8"
234235
return Exploit::CheckCode::Vulnerable
235236
else
236237
return Exploit::CheckCode::Safe

0 commit comments

Comments
 (0)