From c007175046c2a5c7ce76f7e4deda990091a5f95b Mon Sep 17 00:00:00 2001 From: Michel Oosterhof Date: Mon, 21 Nov 2016 15:40:16 +0400 Subject: [PATCH] Fix #359 --- cowrie/commands/wget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cowrie/commands/wget.py b/cowrie/commands/wget.py index 9e86abf..f09de95 100644 --- a/cowrie/commands/wget.py +++ b/cowrie/commands/wget.py @@ -70,7 +70,7 @@ class command_wget(HoneyPotCommand): """ """ try: - optlist, args = getopt.getopt(self.args, 'cqO:P:') + optlist, args = getopt.getopt(self.args, 'cqO:P:', 'header=') except getopt.GetoptError as err: self.write('Unrecognized option\n') self.exit()