From add67227f4d7dd03ba840c3faae2d7211d4e3d39 Mon Sep 17 00:00:00 2001 From: Daniel Aleksandersen Date: Sun, 24 Apr 2016 02:20:02 +0200 Subject: [PATCH] Use HTTPS in Debuggex URLs --- fail2ban/client/fail2banregex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fail2ban/client/fail2banregex.py b/fail2ban/client/fail2banregex.py index d0cdab84..7c56a77e 100755 --- a/fail2ban/client/fail2banregex.py +++ b/fail2ban/client/fail2banregex.py @@ -61,7 +61,7 @@ def debuggexURL(sample, regex): q = urllib.urlencode({ 're': regex.replace('', '(?&.ipv4)'), 'str': sample, 'flavor': 'python' }) - return 'http://www.debuggex.com/?' + q + return 'https://www.debuggex.com/?' + q def output(args): print(args)