From c79fe731c5bb7a4a6011ef2a10a5605c088207d7 Mon Sep 17 00:00:00 2001 From: sinn3r Date: Thu, 7 Aug 2014 13:32:48 -0500 Subject: [PATCH] Um, this is the right way to do it. --- modules/auxiliary/scanner/http/http_traversal.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/auxiliary/scanner/http/http_traversal.rb b/modules/auxiliary/scanner/http/http_traversal.rb index a9271123cc..fb8bf79e3a 100644 --- a/modules/auxiliary/scanner/http/http_traversal.rb +++ b/modules/auxiliary/scanner/http/http_traversal.rb @@ -332,7 +332,7 @@ class Metasploit3 < Msf::Auxiliary # This is used in the lfi_download() function # def load_filelist - File.open(datastore['FILELIST'], 'rb') {|f| buf = f.read} + File.open(datastore['FILELIST'], 'rb') {|f| f.read} end def run_host(ip)