Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Alert Html
- <script>alert("S1St3m4 H4ck3d")</script><br />
- No copy
- <script>
- function click() {
- if (event.button==2||event.button==3) {
- oncontextmenu='return false';
- }
- }
- document.onmousedown=click
- document.oncontextmenu = new Function("return false;")
- </script>
- block CTRL +
- <script>
- /*function check(e)
- {
- alert(e.keyCode);
- }*/
- document.onkeydown = function(e) {
- if (e.ctrlKey && (e.keyCode === 67 || e.keyCode === 86 || e.keyCode === 85 || e.keyCode === 117)) {//Alt+c, Alt+v will also be disabled sadly.
- alert('Not copy Html');
- }
- return false;
- };
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement