防止罪恶的F12扒代码2 min read

  • A+
所属分类:网站建设

   

    有个神奇的东西叫做审查元素,按下神奇的F12,就是见证奇迹的时刻。审查元素真的是一个强大功能,有的时候看中别人网站的某个样式做的比较好,按下F12审查元素来查看别人的代码,统统扒过来。那么如果防止别人查看自己网站的代码,扒代码呢,这里闲鱼就分享两种还不错的防F12代码,当然,也只是防新手而已~心理安慰~

  

方法一:按下F12关闭当前页面

 

一段JavaScript代码即可实现上述功能,将以下代码插入到footer.php文件中即可

使用方法:添加到footer.php即可,这个好像能破解......

  1.   <script>function fuckyou(){  
  2.  window.close(); //关闭当前窗口(防抽)  
  3.  window.location="about:blank"//将当前窗口跳转置空白页  
  4. }  
  5.  function ck() {  
  6.  console.profile();  
  7.  console.profileEnd();  
  8.  //我们判断一下profiles里面有没有东西,如果有,肯定有人按F12了,没错!!  
  9.  if(console.clear) { console.clear() };  
  10.  if (typeof console.profiles =="object"){  
  11.  return console.profiles.length > 0;  
  12.  }  
  13. }  
  14. function hehe(){  
  15. if( (window.console && (console.firebug || console.table && /firebug/i.test(console.table()) )) || (typeof opera == 'object' && typeof opera.postError == 'function' && console.profile.length > 0)){  
  16.  fuckyou();  
  17. }  
  18. if(typeof console.profiles =="object"&&console.profiles.length > 0){  
  19. fuckyou();  
  20. }  
  21. }  
  22. hehe();  
  23. window.onresize = function(){  
  24. if((window.outerHeight-window.innerHeight)>200)  
  25. //判断当前窗口内页高度和窗口高度,如果差值大于200,那么呵呵  
  26.  fuckyou();  
  27. }</script>  

本文转载内容,转载博文地址:http://qimok.cn/340.html

   

方法二:防F12扒代码:按下F12画面卡死

 

使用方法:添加到footer.php即可,这个貌似也能破解

  1. <script type="text/Javascript">function inlobase_noF12(){while(1){}}function inlojv_console(){if((window.console&&(console.firebug||console.table&&/firebug/i.test(console.table())))||(typeof opera=="object"&&typeof opera.postError=="function"&&console.profile.length>0)){inlobase_noF12()}if(typeof console.profiles=="object"&&console.profiles.length>0){inlobase_noF12()}}inlojv_console();window.onresize=function(){if((window.outerHeight-window.innerHeight)>200){inlobase_noF12()}};</script>    

 

转载地址:https://www.macrr.com/prohibit-f12.html

 

 

zhaoyulin

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: