Untitled

 avatar
unknown
plain_text
a year ago
1.4 kB
8
Indexable
<!DOCTYPE html><html><head> <style> iframe { width: 100%; height: 100vh; border: none; overflow: hidden; } html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; overflow: hidden; } </style></head><body> <iframe src="https://pubg.com" title="Iframe Example" sandbox="allow-same-origin"></iframe> <script> // disable right click document.addEventListener('contextmenu', event => event.preventDefault()); document.onkeydown = function (e) { // disable F12 key if(e.keyCode == 123) { return false; } // disable I key if(e.ctrlKey && e.shiftKey && e.keyCode == 73){ return false; } // disable J key if(e.ctrlKey && e.shiftKey && e.keyCode == 74) { return false; } // disable U key if(e.ctrlKey && e.keyCode == 85) { return false; } // disable F key if(e.ctrlKey && e.keyCode == 70) { return false; } } </script></body></html>