How to prevent clickjacking issue in CF
I created a cfm template with below contents to test clickjacking issue.
<html>
<head>
<title>Clickjack test page</title>
</head>
<body>
<p>Website is vulnerable to clickjacking!</p>
<iframe src="https://abcd.rw.xyz.com/mer/nao/app_v4/" width="500" height="500"></iframe>
</body>
</html>
And when I executed this template I was able to click on the "iframe" part. Which indicates that there is a clickjacking issue.Right??.
Is there any way to prevent clickjacking issue via CF admin/application code.
