rapid7/metasploit-framework

View on GitHub

Showing 7,301 of 22,004 total issues

Method mikrotik_routeros_config_eater has 205 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def mikrotik_routeros_config_eater(thost, tport, config)
      if framework.db.active
        credential_data = {
          address: thost,
          port: tport,
Severity: Major
Found in lib/msf/core/auxiliary/mikrotik.rb - About 1 day to fix

    File iec104.rb has 507 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    class MetasploitModule < Msf::Auxiliary
      #
      # this module sends IEC104 commands
      #
    
    
    Severity: Major
    Found in modules/auxiliary/client/iec104/iec104.rb - About 1 day to fix

      File rftransceiver.rb has 507 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      module Rex
      module Post
      module HWBridge
      module Ui
      ###
      Severity: Major
      Found in lib/rex/post/hwbridge/ui/console/command_dispatcher/rftransceiver.rb - About 1 day to fix

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

          def on_request_uri(cli, request)
            # Re-generate the payload.
            return if ((p = regenerate_payload(cli)) == nil)
        
            # Encode the shellcode.
        modules/exploits/windows/browser/novelliprint_getdriversettings.rb on lines 55..110

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 262.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

          def on_request_uri(cli, request)
            # Re-generate the payload.
            return if ((p = regenerate_payload(cli)) == nil)
        
            # Encode the shellcode.
        modules/exploits/windows/browser/novelliprint_getdriversettings_2.rb on lines 65..119

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 262.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Method t3_send has 203 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          def t3_send(payload_obj)
            print_status('Sending object...')
        
            request_obj = '000009f3' # Original packet length
            request_obj << '016501' # CMD_IDENTIFY_REQUEST, flags
        Severity: Major
        Found in modules/exploits/multi/misc/weblogic_deserialize_badattr_extcomp.rb - About 1 day to fix

          Method t3_send has 203 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            def t3_send(payload_obj)
              print_status('Sending object...')
          
              request_obj = '000009f3' # Original packet length
              request_obj << '016501' # CMD_IDENTIFY_REQUEST, flags
          Severity: Major
          Found in modules/exploits/multi/misc/weblogic_deserialize_badattrval.rb - About 1 day to fix

            Identical blocks of code found in 2 locations. Consider refactoring.
            Open

            def xmit_dump_ruby(data, length=16):
                dump = ''
                for i in range(0, len(data), length):
                    bytes = data[i: i+length]
                    hex = "\"%s\"" % (''.join(['\\x%02X' % x for x in bytes]))
            Severity: Major
            Found in external/source/shellcode/windows/x86/build.py and 1 other location - About 1 day to fix
            external/source/shellcode/windows/x64/build.py on lines 49..57

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 123.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

                    elif args['SSL'] == "true":
                        if args['TARGETURI'].endswith('/'):
                            url = "https://" + args['RHOSTS'] + ":" + \
                                args['RPORT'] + args['TARGETURI'] + "login/"
                        else:
            Severity: Major
            Found in modules/auxiliary/admin/http/grafana_auth_bypass.py and 1 other location - About 1 day to fix
            modules/auxiliary/admin/http/grafana_auth_bypass.py on lines 150..156

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 123.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

                    if args['SSL'] == "false":
                        if args['TARGETURI'].endswith('/'):
                            url = "http://" + args['RHOSTS'] + ":" + \
                                args['RPORT'] + args['TARGETURI'] + "login/"
                        else:
            Severity: Major
            Found in modules/auxiliary/admin/http/grafana_auth_bypass.py and 1 other location - About 1 day to fix
            modules/auxiliary/admin/http/grafana_auth_bypass.py on lines 157..163

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 123.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Identical blocks of code found in 2 locations. Consider refactoring.
            Open

            def xmit_dump_ruby(data, length=16):
                dump = ''
                for i in range(0, len(data), length):
                    bytes = data[i: i+length]
                    hex = "\"%s\"" % (''.join(['\\x%02X' % x for x in bytes]))
            Severity: Major
            Found in external/source/shellcode/windows/x64/build.py and 1 other location - About 1 day to fix
            external/source/shellcode/windows/x86/build.py on lines 47..55

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 123.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Method prepend_migrate has 201 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              def prepend_migrate(buf)
                payloadsize = "0x%04x" % buf.length
                procname = datastore['PrependMigrateProc'] || 'rundll32'
            
                # Prepare instructions to get address of block_api into ebp
            Severity: Major
            Found in lib/msf/core/payload/windows/prepend_migrate.rb - About 1 day to fix

              Similar blocks of code found in 3 locations. Consider refactoring.
              Open

                  des_odd_parity = [
                    1, 1, 2, 2, 4, 4, 7, 7, 8, 8, 11, 11, 13, 13, 14, 14,
                    16, 16, 19, 19, 21, 21, 22, 22, 25, 25, 26, 26, 28, 28, 31, 31,
                    32, 32, 35, 35, 37, 37, 38, 38, 41, 41, 42, 42, 44, 44, 47, 47,
                    49, 49, 50, 50, 52, 52, 55, 55, 56, 56, 59, 59, 61, 61, 62, 62,
              Severity: Major
              Found in lib/msf/util/windows_crypto_helpers.rb and 2 other locations - About 1 day to fix
              modules/exploits/windows/fileformat/homm3_h3m.rb on lines 236..301
              modules/exploits/windows/local/ms10_092_schelevator.rb on lines 236..301

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 258.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              Similar blocks of code found in 3 locations. Consider refactoring.
              Open

                  crc32_reverse = [
                    0x00000000, 0xDB710641, 0x6D930AC3, 0xB6E20C82,
                    0xDB261586, 0x005713C7, 0xB6B51F45, 0x6DC41904,
                    0x6D3D2D4D, 0xB64C2B0C, 0x00AE278E, 0xDBDF21CF,
                    0xB61B38CB, 0x6D6A3E8A, 0xDB883208, 0x00F93449,
              Severity: Major
              Found in modules/exploits/windows/fileformat/homm3_h3m.rb and 2 other locations - About 1 day to fix
              lib/msf/util/windows_crypto_helpers.rb on lines 15..32
              modules/exploits/windows/local/ms10_092_schelevator.rb on lines 236..301

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 258.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              Similar blocks of code found in 3 locations. Consider refactoring.
              Open

                  bwd_table = [
                    0x00000000, 0xDB710641, 0x6D930AC3, 0xB6E20C82,
                    0xDB261586, 0x005713C7, 0xB6B51F45, 0x6DC41904,
                    0x6D3D2D4D, 0xB64C2B0C, 0x00AE278E, 0xDBDF21CF,
                    0xB61B38CB, 0x6D6A3E8A, 0xDB883208, 0x00F93449,
              Severity: Major
              Found in modules/exploits/windows/local/ms10_092_schelevator.rb and 2 other locations - About 1 day to fix
              lib/msf/util/windows_crypto_helpers.rb on lines 15..32
              modules/exploits/windows/fileformat/homm3_h3m.rb on lines 236..301

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 258.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

              LOOKUP_ALAW2LIN16 = [
                   -5504,   -5248,   -6016,   -5760,   -4480,   -4224,   -4992,
                   -4736,   -7552,   -7296,   -8064,   -7808,   -6528,   -6272,
                   -7040,   -6784,   -2752,   -2624,   -3008,   -2880,   -2240,
                   -2112,   -2496,   -2368,   -3776,   -3648,   -4032,   -3904,
              Severity: Major
              Found in lib/rex/proto/iax2/codecs/g711.rb and 1 other location - About 1 day to fix
              lib/rex/proto/iax2/codecs/g711.rb on lines 763..801

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 258.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

              LOOKUP_ULAW2LIN16 = [
                  -32124,  -31100,  -30076,  -29052,  -28028,  -27004,  -25980,
                  -24956,  -23932,  -22908,  -21884,  -20860,  -19836,  -18812,
                  -17788,  -16764,  -15996,  -15484,  -14972,  -14460,  -13948,
                  -13436,  -12924,  -12412,  -11900,  -11388,  -10876,  -10364,
              Severity: Major
              Found in lib/rex/proto/iax2/codecs/g711.rb and 1 other location - About 1 day to fix
              lib/rex/proto/iax2/codecs/g711.rb on lines 37..75

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 258.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              Method run_host has 200 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                def run_host(ip)
              
                  timeout = datastore['TIMEOUT'].to_i
              
                  instances = datastore['INSTANCES']
              Severity: Major
              Found in modules/auxiliary/scanner/sap/sap_service_discovery.rb - About 1 day to fix

                Method build_t3_request_object has 200 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                  def build_t3_request_object
                    # T3 request serialized data
                    # retrieved by watching network traffic
                    # This is a proprietary, undocumented protocol
                
                
                Severity: Major
                Found in modules/exploits/multi/misc/weblogic_deserialize_rawobject.rb - About 1 day to fix

                  Similar blocks of code found in 2 locations. Consider refactoring.
                  Open

                      super(update_info(info,
                        'Name'           => 'MS07-029 Microsoft DNS RPC Service extractQuotedChar() Overflow (TCP)',
                        'Description'    => %q{
                            This module exploits a stack buffer overflow in the RPC interface
                          of the Microsoft DNS service. The vulnerability is triggered
                  Severity: Major
                  Found in modules/exploits/windows/dcerpc/ms07_029_msdns_zonename.rb and 1 other location - About 1 day to fix
                  modules/exploits/windows/smb/ms07_029_msdns_zonename.rb on lines 13..88

                  Duplicated Code

                  Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                  Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                  When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                  Tuning

                  This issue has a mass of 257.

                  We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                  The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                  If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                  See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                  Refactorings

                  Further Reading

                  Severity
                  Category
                  Status
                  Source
                  Language