From e6ea289d183dd15cc4f7c2651aca2cacc01c05ec Mon Sep 17 00:00:00 2001 From: Ben Date: Sun, 30 Jul 2017 02:07:38 +1000 Subject: [PATCH] All input is converted to lowercase --- HTTPy.py | 1 + 1 file changed, 1 insertion(+) diff --git a/HTTPy.py b/HTTPy.py index 3711102..d8b4dc0 100755 --- a/HTTPy.py +++ b/HTTPy.py @@ -165,6 +165,7 @@ def getInput(): global running inInput = raw_input("["+ pingOn +"][" + whoOn + "] Please enter a domain/IP: ") inInput = inInput.strip() + inInput = inInput.lower() partDomain = inInput.split(".") if inInput == "quit": running = 0