打印

[其他] 通杀网页源代码加密

通杀网页源代码加密

在地址栏或按Ctrl+O,输入: javascript:s=document.documentElement.outerHTML;document.write('');document.body.innerText=s; 源代码就出来了。不论加密如何复杂,最终都要还原成浏览器可以解析的html代码,而documentElement.outerHTML正是最终的结果. IE地址栏的秘密 完全打开页面后,在该页的在地址栏输入后回车! 1.显示网页中的所有图片 javascript:Ai7Mg6P='';for%20(i7M1bQz=0;i7M1bQz<DOCUMENT.IMAGES.LENGTH;I7M1BQZ++){AI7MG6P+='[img]+DOCUMENT.IMAGES[I7M1BQZ].SRC+[/img]
'};if(Ai7Mg6P!=''){document.write(' '+Ai7Mg6P+'');void(document.close())}else{alert('No%20images!')} 2.显示网页中除图片的其他 javascript:for(jK6bvW=0;jK6bvW<DOCUMENT.IMAGES.LENGTH;JK6BVW++){VOID(DOCUMENT.IMAGES[JK6BVW].STYLE.VISIBILITY='HIDDEN')} 3.网页缩小0.5倍 s.setAttribute(?zoom?,?50%?) 4.网页放大1.5倍 javascript:void(s="document.body.style);void(z=s.getAttribute('zoom'));if(z){s.setAttribute('zoom',(parseInt(z)-50)+'%');}else" s.setAttribute(?zoom?,?150%?) 5.显示网页源代码(对于加密过的可以直接显示其加密前的源代码) javascript:s="document.documentElement.outerHTML;document.write('');document.body.innerText=s;

TOP

Processed in 0.026224 second(s), 5 queries, Gzip enabled.