From f23e22717a366386bf883f345029716461650911 Mon Sep 17 00:00:00 2001 From: Mehedi Hasan Remon Date: Sat, 5 Sep 2020 11:20:50 +0600 Subject: [PATCH] Update Clickjacking_Tester.py updated ```urllib.request``` to ```urllib2``` Cant use ``request``` in Python 2, it need to have Python 3 or above. --- Clickjacking_Tester.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Clickjacking_Tester.py b/Clickjacking_Tester.py index 69f1604..0739290 100644 --- a/Clickjacking_Tester.py +++ b/Clickjacking_Tester.py @@ -1,6 +1,6 @@ # Contributor(s): nigella (@nig) -from urllib.request import urlopen +from urllib2 import urlopen from sys import argv, exit __author__ = 'D4Vinci'