From 95eb6a732cb3531c714a66503ab85c891ebbcb3a Mon Sep 17 00:00:00 2001 From: erwanlr Date: Thu, 21 Mar 2019 20:50:57 +0000 Subject: [PATCH] Memprofiling - Increases the top to be displayed to 15 --- bin/wpscan-memprof | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bin/wpscan-memprof b/bin/wpscan-memprof index cd768494..7bcce447 100755 --- a/bin/wpscan-memprof +++ b/bin/wpscan-memprof @@ -3,9 +3,7 @@ require 'memory_profiler' # https://github.com/SamSaffron/memory_profiler require 'wpscan' -report = MemoryProfiler.report(top: 10) do - # Couldn't we just load the ./wpscan here ? - # require_relative 'wpscan' doesn't work +report = MemoryProfiler.report(top: 15) do WPScan::Scan.new do |s| s.controllers << WPScan::Controller::CustomDirectories.new <<