From 4884defaed4904d995a33f6d48de484d93b9e444 Mon Sep 17 00:00:00 2001 From: Ryan Dewhurst Date: Thu, 22 Nov 2018 15:04:43 +0100 Subject: [PATCH] Add some references to interesting findings --- app/finders/interesting_findings/debug_log.rb | 3 ++- app/finders/interesting_findings/full_path_disclosure.rb | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/app/finders/interesting_findings/debug_log.rb b/app/finders/interesting_findings/debug_log.rb index 3d69d2ee..52d74cca 100644 --- a/app/finders/interesting_findings/debug_log.rb +++ b/app/finders/interesting_findings/debug_log.rb @@ -11,7 +11,8 @@ module WPScan WPScan::DebugLog.new( target.url(path), - confidence: 100, found_by: DIRECT_ACCESS + confidence: 100, found_by: DIRECT_ACCESS, + references: { url: 'https://codex.wordpress.org/Debugging_in_WordPress' } ) end end diff --git a/app/finders/interesting_findings/full_path_disclosure.rb b/app/finders/interesting_findings/full_path_disclosure.rb index d7aed4eb..f3dcfac5 100644 --- a/app/finders/interesting_findings/full_path_disclosure.rb +++ b/app/finders/interesting_findings/full_path_disclosure.rb @@ -14,7 +14,8 @@ module WPScan target.url(path), confidence: 100, found_by: DIRECT_ACCESS, - interesting_entries: fpd_entries + interesting_entries: fpd_entries, + references: { url: 'https://www.owasp.org/index.php/Full_Path_Disclosure' } ) end end