Bugfixing

This commit is contained in:
Christian Mehlmauer
2012-09-13 14:03:24 +02:00
parent 856c1ab5cf
commit e706efd9f0
9 changed files with 23339 additions and 15596 deletions

View File

@@ -103,7 +103,7 @@ module WpPlugins
targets_url.flatten!
targets_url.uniq!
# randomize the plugins array to *maybe* help in some crappy IDS/IPS/WAF detection
targets_url.sort_by { rand }
targets_url.sort_by! { rand }
end
# http://code.google.com/p/wpscan/issues/detail?id=42

View File

@@ -82,7 +82,7 @@ module WpTimthumbs
targets.uniq!
# randomize the array to *maybe* help in some crappy IDS/IPS/WAF evasion
targets.sort_by { rand }
targets.sort_by! { rand }
end
def self.timthumbs_file(timthumbs_file_path = nil)