From b6c6a46d2562e37c3fedc0128c54eb74bde5ccf0 Mon Sep 17 00:00:00 2001 From: g0tmi1k Date: Wed, 9 May 2018 13:58:23 +0100 Subject: [PATCH] Remove un-needed single quotes in output --- wpscan.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wpscan.rb b/wpscan.rb index 463a6e6a..c3eb8ffa 100755 --- a/wpscan.rb +++ b/wpscan.rb @@ -204,7 +204,7 @@ def main puts if wp_target.has_robots? - puts info("robots.txt available under: '#{wp_target.robots_url}'") + puts info("robots.txt available under: #{wp_target.robots_url}") wp_target.parse_robots_txt.each do |dir| puts info("Interesting entry from robots.txt: #{dir}") @@ -220,15 +220,15 @@ def main end wp_target.config_backup.each do |file_url| - puts critical("A wp-config.php backup file has been found in: '#{file_url}'") + puts critical("A wp-config.php backup file has been found in: #{file_url}") end if wp_target.search_replace_db_2_exists? - puts critical("searchreplacedb2.php has been found in: '#{wp_target.search_replace_db_2_url}'") + puts critical("searchreplacedb2.php has been found in: #{wp_target.search_replace_db_2_url}") end if wp_target.emergency_exists? - puts critical("emergency.php has been found in: '#{wp_target.emergency_url}'") + puts critical("emergency.php has been found in: #{wp_target.emergency_url}") end wp_target.interesting_headers.each do |header|