rapid7/metasploit-framework

View on GitHub

Showing 22,177 of 22,177 total issues

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

  def run
    check_pcaprub_loaded # Check first.

    target   = rhost()
    source   = Rex::Socket.source_address(target)
Severity: Minor
Found in modules/auxiliary/spoof/dns/bailiwicked_host.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 run has a Cognitive Complexity of 55 (exceeds 5 allowed). Consider refactoring.
Open

  def run
    check_pcaprub_loaded # Check first
    target  = rhost()
    source  = Rex::Socket.source_address(target)
    saddr   = datastore['SRCADDR']
Severity: Minor
Found in modules/auxiliary/spoof/dns/bailiwicked_domain.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_jobs has a Cognitive Complexity of 55 (exceeds 5 allowed). Consider refactoring.
Open

          def cmd_jobs(*args)
            # Make the default behavior listing all jobs if there were no options
            # or the only option is the verbose flag
            args.unshift("-l") if args.empty? || args == ["-v"]

Severity: Minor
Found in lib/msf/ui/console/command_dispatcher/jobs.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_host has a Cognitive Complexity of 55 (exceeds 5 allowed). Consider refactoring.
Open

  def report_host(opts)

    return if !active
    addr = opts.delete(:host) || return

Severity: Minor
Found in lib/msf/core/db_manager/host.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 exploit has a Cognitive Complexity of 55 (exceeds 5 allowed). Consider refactoring.
Open

  def exploit
    # Is the selected target a brute force target?
    if (target.bruteforce?)
      # The step direction is automatically calculated
      direction = {}
Severity: Minor
Found in lib/msf/core/exploit/brute.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

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

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

            if (mytarget['OS'] =~ /2000/)
              txt[0, payload.encoded.length] = payload.encoded
        
              off = mytarget['Off']
              txt[ off ] = [mytarget.ret].pack('V')
        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 158..240

        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 273.

        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 (target['OS'] =~ /2000/)
              txt[0, payload.encoded.length] = payload.encoded
        
              off = target['Off']
              txt[ off ] = [target.ret].pack('V')
        Severity: Major
        Found in modules/exploits/windows/smb/ms07_029_msdns_zonename.rb and 1 other location - About 1 day to fix
        modules/exploits/windows/dcerpc/ms07_029_msdns_zonename.rb on lines 175..257

        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 273.

        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

        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 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 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 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

                    Severity
                    Category
                    Status
                    Source
                    Language