rapid7/metasploit-framework

View on GitHub

Showing 15,730 of 21,757 total issues

File reverse_win_http.rb has 524 lines of code (exceeds 250 allowed). Consider refactoring.
Open

module Msf

###
#
# Complex payload generation for Windows ARCH_X86 that speak HTTP(S) using WinHTTP
Severity: Major
Found in lib/msf/core/payload/windows/reverse_win_http.rb - About 1 day to fix

    File reverse_win_http_x64.rb has 523 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    module Msf
    
    ###
    #
    # Complex payload generation for Windows ARCH_X86 that speak HTTP(S) using WinHTTP
    Severity: Major
    Found in lib/msf/core/payload/windows/x64/reverse_win_http_x64.rb - About 1 day to fix

      Method prepend_migrate_64 has 213 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        def prepend_migrate_64(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

        Class Client has 59 methods (exceeds 20 allowed). Consider refactoring.
        Open

        class Client
        
          require 'net/ntlm'
        
        require 'rex/text'
        Severity: Major
        Found in lib/rex/proto/smb/client.rb - About 1 day to fix

          Method command_string has 212 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            def command_string
              if (datastore['JOBNAME'] == "DUMMY") && !datastore['FTPUSER'].nil?
                datastore['JOBNAME'] = (datastore['FTPUSER'] + "1").strip.upcase
              end
              lhost = Rex::Socket.resolv_nbo(datastore['LHOST'])
          Severity: Major
          Found in modules/payloads/singles/cmd/mainframe/reverse_shell_jcl.rb - About 1 day to fix

            File bitbucket_env_var_rce.rb has 520 lines of code (exceeds 250 allowed). Consider refactoring.
            Open

            class MetasploitModule < Msf::Exploit::Remote
              Rank = ExcellentRanking
            
              include Msf::Exploit::Remote::HttpClient
              include Msf::Exploit::Git
            Severity: Major
            Found in modules/exploits/multi/http/bitbucket_env_var_rce.rb - About 1 day to fix

              File jetbrains_teamcity_rce_cve_2024_27198.rb has 520 lines of code (exceeds 250 allowed). Consider refactoring.
              Open

              class MetasploitModule < Msf::Exploit::Remote
                Rank = ExcellentRanking
              
                prepend Msf::Exploit::Remote::AutoCheck
                include Msf::Exploit::Remote::HttpClient
              Severity: Major
              Found in modules/exploits/multi/http/jetbrains_teamcity_rce_cve_2024_27198.rb - About 1 day to fix

                File capture.rb has 518 lines of code (exceeds 250 allowed). Consider refactoring.
                Open

                require 'uri'
                require 'rex/sync/event'
                require 'fileutils'
                
                module Msf
                Severity: Major
                Found in plugins/capture.rb - About 1 day to fix

                  File prometheus.rb has 518 lines of code (exceeds 250 allowed). Consider refactoring.
                  Open

                  module Msf
                    ###
                    #
                    # This module provides methods for working with Prometheus node exporter
                    #
                  Severity: Major
                  Found in lib/msf/core/auxiliary/prometheus.rb - About 1 day to fix

                    Function Int64 has a Cognitive Complexity of 54 (exceeds 5 allowed). Consider refactoring.
                    Open

                    function Int64(v) {
                        // The underlying byte array.
                        var bytes = new Uint8Array(8);
                    
                        switch (typeof v) {
                    Severity: Minor
                    Found in data/exploits/javascript_utils/int64.js - About 1 day to fix

                    Cognitive Complexity

                    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                    A method's cognitive complexity is based on a few simple rules:

                    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                    • Code is considered more complex for each "break in the linear flow of the code"
                    • Code is considered more complex when "flow breaking structures are nested"

                    Further reading

                    Method run has a Cognitive Complexity of 54 (exceeds 5 allowed). Consider refactoring.
                    Open

                      def run
                        fake_host = datastore['FAKEHOST'] || datastore['HOST']
                        fake_port = datastore['FAKEPORT'] || datastore['PORT']
                        host = datastore['HOST']
                        local_host = datastore['SRVHOST']
                    Severity: Minor
                    Found in modules/auxiliary/server/jsse_skiptls_mitm_proxy.rb - About 1 day to fix

                    Cognitive Complexity

                    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                    A method's cognitive complexity is based on a few simple rules:

                    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                    • Code is considered more complex for each "break in the linear flow of the code"
                    • Code is considered more complex when "flow breaking structures are nested"

                    Further reading

                    Method start_exploit_modules has a Cognitive Complexity of 54 (exceeds 5 allowed). Consider refactoring.
                    Open

                      def start_exploit_modules()
                        @lhost = (datastore['LHOST'] || "0.0.0.0")
                    
                        @noscript_tests = {}
                        @all_tests = {}
                    Severity: Minor
                    Found in modules/auxiliary/server/browser_autopwn.rb - About 1 day to fix

                    Cognitive Complexity

                    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                    A method's cognitive complexity is based on a few simple rules:

                    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                    • Code is considered more complex for each "break in the linear flow of the code"
                    • Code is considered more complex when "flow breaking structures are nested"

                    Further reading

                    Method try_exploit has a Cognitive Complexity of 54 (exceeds 5 allowed). Consider refactoring.
                    Open

                      def try_exploit(exploit_string, keystream, bruting)
                        connect
                        idtype_msg = sock.get_once(12)
                    
                        if idtype_msg.length != 12
                    Severity: Minor
                    Found in modules/auxiliary/gather/darkcomet_filedownloader.rb - About 1 day to fix

                    Cognitive Complexity

                    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                    A method's cognitive complexity is based on a few simple rules:

                    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                    • Code is considered more complex for each "break in the linear flow of the code"
                    • Code is considered more complex when "flow breaking structures are nested"

                    Further reading

                    Method build_packet_and_layouts has a Cognitive Complexity of 54 (exceeds 5 allowed). Consider refactoring.
                    Open

                      def build_packet_and_layouts(packet, function, args, arch)
                        case arch
                        when ARCH_X64
                          native = 'Q<'
                        when ARCH_X86
                    Severity: Minor
                    Found in lib/rex/post/meterpreter/extensions/stdapi/railgun/library.rb - About 1 day to fix

                    Cognitive Complexity

                    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                    A method's cognitive complexity is based on a few simple rules:

                    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                    • Code is considered more complex for each "break in the linear flow of the code"
                    • Code is considered more complex when "flow breaking structures are nested"

                    Further reading

                    Method cmd_route has a Cognitive Complexity of 54 (exceeds 5 allowed). Consider refactoring.
                    Open

                      def cmd_route(*args)
                        begin
                          args << 'print' if args.length == 0
                    
                          action = args.shift
                    Severity: Minor
                    Found in lib/msf/ui/console/command_dispatcher/core.rb - About 1 day to fix

                    Cognitive Complexity

                    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                    A method's cognitive complexity is based on a few simple rules:

                    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                    • Code is considered more complex for each "break in the linear flow of the code"
                    • Code is considered more complex when "flow breaking structures are nested"

                    Further reading

                    Method add_dns has a Cognitive Complexity of 54 (exceeds 5 allowed). Consider refactoring.
                    Open

                      def add_dns(*args)
                        rules = ['*']
                        first_rule = true
                        comm = nil
                        resolvers = []
                    Severity: Minor
                    Found in lib/msf/ui/console/command_dispatcher/dns.rb - About 1 day to fix

                    Cognitive Complexity

                    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                    A method's cognitive complexity is based on a few simple rules:

                    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                    • Code is considered more complex for each "break in the linear flow of the code"
                    • Code is considered more complex when "flow breaking structures are nested"

                    Further reading

                    Method report_note has a Cognitive Complexity of 54 (exceeds 5 allowed). Consider refactoring.
                    Open

                      def report_note(opts)
                        return if not active
                      ::ApplicationRecord.connection_pool.with_connection {
                        wspace = Msf::Util::DBManager.process_opts_workspace(opts, framework)
                        opts = opts.clone()
                    Severity: Minor
                    Found in lib/msf/core/db_manager/note.rb - About 1 day to fix

                    Cognitive Complexity

                    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                    A method's cognitive complexity is based on a few simple rules:

                    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                    • Code is considered more complex for each "break in the linear flow of the code"
                    • Code is considered more complex when "flow breaking structures are nested"

                    Further reading

                    Method parse_host has 210 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                      def parse_host(host, wspace, blacklist, allow_yaml, btag, args, &block)
                    
                        host_data = {}
                        host_data[:task] = args[:task]
                        host_data[:workspace] = wspace
                    Severity: Major
                    Found in lib/msf/core/db_manager/import/metasploit_framework/xml.rb - About 1 day to fix

                      File acunetix_document.rb has 513 lines of code (exceeds 250 allowed). Consider refactoring.
                      Open

                      require "rex/parser/nokogiri_doc_mixin"
                      require 'rex'
                      require 'uri'
                      
                      module Rex
                      Severity: Major
                      Found in lib/rex/parser/acunetix_document.rb - About 1 day to fix

                        File def_ws2_32.rb has 513 lines of code (exceeds 250 allowed). Consider refactoring.
                        Open

                        module Rex
                        module Post
                        module Meterpreter
                        module Extensions
                        module Stdapi
                          Severity
                          Category
                          Status
                          Source
                          Language