Remove the -d flag for Linux machines

This commit is contained in:
wchen-r7 2016-08-23 18:43:50 -05:00
parent b081dbf703
commit 89c3b6f399
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ class MetasploitModule < Msf::Post
end
def do_zip
output = cmd_exec("zip -D -d -q -r #{datastore['DESTINATION']} #{datastore['SOURCE']}")
output = cmd_exec("zip -D -q -r #{datastore['DESTINATION']} #{datastore['SOURCE']}")
vprint_line(output)
end