教你让网马原代码隐藏的方法
程序员文章站
2022-03-29 11:05:36
网马再怎么加密,都有可能被反加密的可能,为了更好保护自己的代码,看看这办法,但这办法对付不了抓包分析,数据包抓取也是没办法的
目的:查看源代码没有内容,查看缓冲区也没内容
... 08-10-08...
网马再怎么加密,都有可能被反加密的可能,为了更好保护自己的代码,看看这办法,但这办法对付不了抓包分析,数据包抓取也是没办法的
目的:查看源代码没有内容,查看缓冲区也没内容
1.asp文件写法
<%'禁止缓冲区
response.cachecontrol = "no-cache"
response.addheader "pragma", "no-cache"
response.expires = 0
%>
-----------代码-----------------
<script>function clear(){document.write("");}window.onload = clear;</script>
2html写法
<head>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
</head>
-----------代码-----------------
<script>function clear(){document.write("");}window.onload = clear;</script>
让网马地址在ie状态栏不显示网马地址
function c(){
window.status="完毕";
}
setinterval(c,1);
目的:查看源代码没有内容,查看缓冲区也没内容
1.asp文件写法
<%'禁止缓冲区
response.cachecontrol = "no-cache"
response.addheader "pragma", "no-cache"
response.expires = 0
%>
-----------代码-----------------
<script>function clear(){document.write("");}window.onload = clear;</script>
2html写法
<head>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
</head>
-----------代码-----------------
<script>function clear(){document.write("");}window.onload = clear;</script>
让网马地址在ie状态栏不显示网马地址
function c(){
window.status="完毕";
}
setinterval(c,1);