From e1d22f497de2d2155c40ebe4d329741fe6cfcc4d Mon Sep 17 00:00:00 2001 From: Adithyabhat96 <72146940+Adithyabhat96@users.noreply.github.com> Date: Thu, 8 Oct 2020 16:20:22 +0530 Subject: [PATCH] Update clickjacking.py --- clickjacking.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/clickjacking.py b/clickjacking.py index 4f3adae..14627d7 100755 --- a/clickjacking.py +++ b/clickjacking.py @@ -8,16 +8,16 @@ import sys, urllib2 clickjacking = False -class ClickjackingTest(object): +class ClickjackingTest(object): #creating the class. - def __init__(self): + def __init__(self): #writiing our function inside class. self.__init() def __init(self): self.__url = "" self.__csrfPoc = "" - def __create_poc(self): + def __create_poc(self): # Html codes in the website html = ''' @@ -87,4 +87,4 @@ def main(): print "[*] You can't clickjack this!" print "[+] Done" -main() \ No newline at end of file +main()