remove non-port 80 restriction

This commit is contained in:
Michel Oosterhof 2014-10-05 06:43:48 +00:00
parent 1c1a4e7c2b
commit c9c1792456
1 changed files with 1 additions and 1 deletions

View File

@ -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