From b081dbf70327501f2435bcbde99ac75868172cc9 Mon Sep 17 00:00:00 2001 From: wchen-r7 Date: Thu, 18 Aug 2016 15:56:16 -0500 Subject: [PATCH] Make destination required --- modules/post/multi/manage/zip.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/post/multi/manage/zip.rb b/modules/post/multi/manage/zip.rb index 8268111a29..8ad0638833 100644 --- a/modules/post/multi/manage/zip.rb +++ b/modules/post/multi/manage/zip.rb @@ -26,7 +26,7 @@ class MetasploitModule < Msf::Post register_options( [ - OptString.new('DESTINATION', [false, 'The destination path']), + OptString.new('DESTINATION', [true, 'The destination path']), OptString.new('SOURCE', [true, 'The directory or file to compress']) ], self.class) end