Cara supaya web kamu tidak bisa di clickjacking
Lisa disini.langsung saja copy ini
<style>
/* Hide page by default */
html { display : none; }
</style>
<script>
if (self == top) {
// Everything checks out, show the page.
document.documentElement.style.display = 'block';
} else {
// Break out of the frame.
top.location = self.location;
}
</script>
/* Hide page by default */
html { display : none; }
</style>
<script>
if (self == top) {
// Everything checks out, show the page.
document.documentElement.style.display = 'block';
} else {
// Break out of the frame.
top.location = self.location;
}
</script>
paste ke script kamu.
dan coba kamu test di clickjacker.io
udah gitu aja,langsung to the point.sekian