Answers for "how to check if my website is vulnurable to clickjacking"

0

how to check if my website is vulnurable to clickjacking

Testers may investigate if a target page can be loaded in an inline frame by creating a simple web page that includes a frame containing the target web page. An example of HTML code to create this testing web page is displayed in the following snippet:

<html>
    <head>
        <title>Clickjack test page</title>
    </head>
    <body>
        <iframe src="http://www.target.site" width="500" height="500"></iframe>
    </body>
</html>

If the http://www.target.site page is successfully loaded into the frame, then the site is vulnerable and has no type of protection against clickjacking attacks.
Posted by: Guest on October-05-2021

Code answers related to "how to check if my website is vulnurable to clickjacking"

Browse Popular Code Answers by Language