From 1d3ca87772c72dbe02df8f0ed45edfea8e5b7580 Mon Sep 17 00:00:00 2001 From: Christian Mehlmauer Date: Tue, 1 Aug 2017 18:15:37 +0200 Subject: [PATCH] better output --- wpscan.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/wpscan.rb b/wpscan.rb index 969ad72a..7aa2fd30 100755 --- a/wpscan.rb +++ b/wpscan.rb @@ -498,13 +498,14 @@ def main if e.file puts critical('Downloaded File Content:') - puts e.file[0..500] + puts e.file[0..500] # print first 500 chars puts '.........' + puts e.file[-500..-1] || e.file # print last 500 chars or the whole file if it's < 500 puts end puts critical('Some hints to help you with this issue:') - puts critical('-) Try updating again') + puts critical('-) Try updating again using --verbose') puts critical('-) If you see SSL/TLS related error messages you have to fix your local TLS setup') puts critical('-) Windows is still not supported') exit(1)