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