From c9c1792456d005b1862c3778c8b74698f116118a Mon Sep 17 00:00:00 2001 From: Michel Oosterhof Date: Sun, 5 Oct 2014 06:43:48 +0000 Subject: [PATCH] remove non-port 80 restriction --- kippo/commands/wget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kippo/commands/wget.py b/kippo/commands/wget.py index 84cf1ebb..8573c39d 100644 --- a/kippo/commands/wget.py +++ b/kippo/commands/wget.py @@ -109,7 +109,7 @@ class command_wget(HoneyPotCommand): host = parsed.hostname port = parsed.port or (443 if scheme == 'https' else 80) path = parsed.path or '/' - if scheme == 'https' or port != 80: + if scheme == 'https': self.writeln('Sorry, SSL not supported in this release') self.exit() return None