From 5969fe08d88c558abf4c7aa46b488685e0c26ebe Mon Sep 17 00:00:00 2001 From: erwanlr Date: Mon, 18 Mar 2019 19:24:02 +0000 Subject: [PATCH] Revert changes related to the unexpected return - Ref #1314 --- app/finders/wp_version/unique_fingerprinting.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/finders/wp_version/unique_fingerprinting.rb b/app/finders/wp_version/unique_fingerprinting.rb index a0b5db6d..ca43aa55 100644 --- a/app/finders/wp_version/unique_fingerprinting.rb +++ b/app/finders/wp_version/unique_fingerprinting.rb @@ -11,13 +11,14 @@ module WPScan hydra.abort progress_bar.finish - break WPScan::WpVersion.new( + return WPScan::WpVersion.new( version_number, found_by: 'Unique Fingerprinting (Aggressive Detection)', confidence: 100, interesting_entries: ["#{url} md5sum is #{md5sum}"] ) end + nil end def create_progress_bar(opts = {})