From 436793eb61a72cd7e574d9aca55283eeae67e156 Mon Sep 17 00:00:00 2001 From: Erwan Date: Sun, 9 Sep 2012 00:14:02 +0200 Subject: [PATCH] Hotfix for replacing $w-plugins$ by the real value when a plugin from passive detection is output in the agressive detection --- wpscan.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wpscan.rb b/wpscan.rb index d7e76b2b..9a7a678a 100755 --- a/wpscan.rb +++ b/wpscan.rb @@ -190,7 +190,7 @@ begin plugins.each do |plugin| puts puts " | Name: #{plugin}" #this will also output the version number if detected - puts " | Location: " + plugin.location_url + puts " | Location: " + plugin.location_url.gsub("$wp-plugins$", wp_target.wp_plugins_dir()) #Hotfix puts " | Directory listing enabled? #{plugin.directory_listing? ? "Yes." : "No."}"