From 970c164e068872f43aeaa7eb6048c8fcc7ed2d87 Mon Sep 17 00:00:00 2001 From: thesubtlety Date: Thu, 5 Jul 2018 14:33:51 -0700 Subject: [PATCH] fix undefined method capitalize error for array --- modules/post/multi/gather/jenkins_gather.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/post/multi/gather/jenkins_gather.rb b/modules/post/multi/gather/jenkins_gather.rb index 8884b6180e..245fe4bbbe 100644 --- a/modules/post/multi/gather/jenkins_gather.rb +++ b/modules/post/multi/gather/jenkins_gather.rb @@ -20,7 +20,7 @@ class MetasploitModule < Msf::Post 'License' => MSF_LICENSE, 'Author' => [ 'thesubtlety' ], 'Platform' => [ 'linux', 'win' ], - 'SessionTypes' => [ %w[shell meterpreter] ] + 'SessionTypes' => %w[shell meterpreter] )) register_options( [ OptBool.new('STORE_LOOT', [false, 'Store files in loot (will simply output file to console if set to false).', true]),