rapid7/metasploit-framework

View on GitHub
modules/post/windows/gather/smart_hashdump.rb

Summary

Maintainability
F
5 days
Test Coverage

Method smart_hash_dump has a Cognitive Complexity of 58 (exceeds 5 allowed). Consider refactoring.
Open

  def smart_hash_dump(migrate_system, pwdfile)
    domain_controller = domain_controller?
    print_good('Host is a Domain Controller') if domain_controller

    if !is_uac_enabled? || is_admin?
Severity: Minor
Found in modules/post/windows/gather/smart_hashdump.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 smart_hashdump.rb has 376 lines of code (exceeds 250 allowed). Consider refactoring.
Open

class MetasploitModule < Msf::Post
  include Msf::Post::File
  include Msf::Post::Windows::Priv
  include Msf::Post::Windows::Registry
  include Msf::Post::Windows::Accounts
Severity: Minor
Found in modules/post/windows/gather/smart_hashdump.rb - About 5 hrs to fix

    Method smart_hash_dump has 71 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      def smart_hash_dump(migrate_system, pwdfile)
        domain_controller = domain_controller?
        print_good('Host is a Domain Controller') if domain_controller
    
        if !is_uac_enabled? || is_admin?
    Severity: Major
    Found in modules/post/windows/gather/smart_hashdump.rb - About 2 hrs to fix

      Method read_hashdump has 65 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        def read_hashdump
          host = session.session_host
          collected_hashes = ''
          tries = 1
      
      
      Severity: Major
      Found in modules/post/windows/gather/smart_hashdump.rb - About 2 hrs to fix

        Method inject_hashdump has 46 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          def inject_hashdump
            collected_hashes = ''
            host = session.session_host
            # Load priv extension
            session.core.use('priv')
        Severity: Minor
        Found in modules/post/windows/gather/smart_hashdump.rb - About 1 hr to fix

          Method inject_hashdump has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
          Open

            def inject_hashdump
              collected_hashes = ''
              host = session.session_host
              # Load priv extension
              session.core.use('priv')
          Severity: Minor
          Found in modules/post/windows/gather/smart_hashdump.rb - About 1 hr 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 read_hashdump has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
          Open

            def read_hashdump
              host = session.session_host
              collected_hashes = ''
              tries = 1
          
          
          Severity: Minor
          Found in modules/post/windows/gather/smart_hashdump.rb - About 1 hr 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 capture_user_keys has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
          Open

            def capture_user_keys
              users = {}
              ok = session.sys.registry.open_key(HKEY_LOCAL_MACHINE, 'SAM\\SAM\\Domains\\Account\\Users', KEY_READ)
              return if !ok
          
          
          Severity: Minor
          Found in modules/post/windows/gather/smart_hashdump.rb - About 1 hr 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 initialize has 39 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            def initialize(info = {})
              super(
                update_info(
                  info,
                  'Name' => 'Windows Gather Local and Domain Controller Account Password Hashes',
          Severity: Minor
          Found in modules/post/windows/gather/smart_hashdump.rb - About 1 hr to fix

            Method capture_user_keys has 36 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              def capture_user_keys
                users = {}
                ok = session.sys.registry.open_key(HKEY_LOCAL_MACHINE, 'SAM\\SAM\\Domains\\Account\\Users', KEY_READ)
                return if !ok
            
            
            Severity: Minor
            Found in modules/post/windows/gather/smart_hashdump.rb - About 1 hr to fix

              Method decrypt_user_hash has 29 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                def decrypt_user_hash(rid, hbootkey, enchash, pass)
                  if enchash.empty?
                    case pass
                    when @sam_lmpass
                      return @sam_empty_lm
              Severity: Minor
              Found in modules/post/windows/gather/smart_hashdump.rb - About 1 hr to fix

                Method move_to_sys has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                Open

                  def move_to_sys
                    # Make sure you got the correct SYSTEM Account Name no matter the OS Language
                    local_sys = resolve_sid('S-1-5-18')
                    system_account_name = "#{local_sys[:domain]}\\#{local_sys[:name]}"
                
                
                Severity: Minor
                Found in modules/post/windows/gather/smart_hashdump.rb - About 1 hr 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

                Avoid deeply nested control flow statements.
                Open

                          if migrate_system
                            print_status('Trying to get SYSTEM privilege')
                            results = session.priv.getsystem
                            if results[0]
                              print_good('Got SYSTEM privilege')
                Severity: Major
                Found in modules/post/windows/gather/smart_hashdump.rb - About 45 mins to fix

                  Method decrypt_user_keys has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                  Open

                    def decrypt_user_keys(hbootkey, users)
                      users.each_key do |rid|
                        user = users[rid]
                  
                        hashlm_enc = ''
                  Severity: Minor
                  Found in modules/post/windows/gather/smart_hashdump.rb - About 45 mins 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

                  Avoid deeply nested control flow statements.
                  Open

                              if version.build_number.between?(Msf::WindowsVersion::Server2008_SP0, Msf::WindowsVersion::Server2012_R2) && version.windows_server?
                                move_to_sys
                                file_local_write(pwdfile, inject_hashdump)
                              else
                                print_error('Could not get NTDS hashes!')
                  Severity: Major
                  Found in modules/post/windows/gather/smart_hashdump.rb - About 45 mins to fix

                    Avoid deeply nested control flow statements.
                    Open

                            if migrate_system
                              print_status('Trying to get SYSTEM privilege')
                              results = session.priv.getsystem
                              if results[0]
                                print_good('Got SYSTEM privilege')
                    Severity: Major
                    Found in modules/post/windows/gather/smart_hashdump.rb - About 45 mins to fix

                      Avoid deeply nested control flow statements.
                      Open

                            elsif migrate_system
                              print_status('Trying to get SYSTEM privilege')
                              results = session.priv.getsystem
                              if results[0]
                                print_good('Got SYSTEM privilege')
                      Severity: Major
                      Found in modules/post/windows/gather/smart_hashdump.rb - About 45 mins to fix

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

                          def capture_user_keys
                            users = {}
                            ok = session.sys.registry.open_key(HKEY_LOCAL_MACHINE, 'SAM\\SAM\\Domains\\Account\\Users', KEY_READ)
                            return if !ok
                        
                        
                        Severity: Major
                        Found in modules/post/windows/gather/smart_hashdump.rb and 1 other location - About 5 hrs to fix
                        modules/post/windows/gather/hashdump.rb on lines 173..218

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

                        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 capture_hboot_key(bootkey)
                            ok = session.sys.registry.open_key(HKEY_LOCAL_MACHINE, 'SAM\\SAM\\Domains\\Account', KEY_READ)
                            return if !ok
                        
                            vf = ok.query_value('F')
                        Severity: Major
                        Found in modules/post/windows/gather/smart_hashdump.rb and 1 other location - About 1 hr to fix
                        modules/post/windows/manage/hashcarve.rb on lines 87..103

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

                        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

                              users.keys.sort { |a, b| a <=> b }.each do |rid|
                                # If we have a hint then print it
                                if !users[rid][:UserPasswordHint].nil? && !users[rid][:UserPasswordHint].empty?
                                  print_good("\t#{users[rid][:Name]}:\"#{users[rid][:UserPasswordHint]}\"")
                                  hint_count += 1
                        Severity: Major
                        Found in modules/post/windows/gather/smart_hashdump.rb and 1 other location - About 1 hr to fix
                        modules/post/windows/gather/hashdump.rb on lines 60..65

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

                        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 5 locations. Consider refactoring.
                        Open

                          def rid_to_key(rid)
                            s1 = [rid].pack('V')
                            s1 << s1[0, 3]
                        
                            s2b = [rid].pack('V').unpack('C4')
                        Severity: Major
                        Found in modules/post/windows/gather/smart_hashdump.rb and 4 other locations - About 1 hr to fix
                        lib/msf/util/windows_crypto_helpers.rb on lines 123..132
                        modules/post/windows/gather/hashdump.rb on lines 249..257
                        modules/post/windows/manage/hashcarve.rb on lines 158..164
                        scripts/meterpreter/hashdump.rb on lines 199..208

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

                        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

                            rescue ::Rex::Post::Meterpreter::RequestError => e
                              # Sometimes we get this invalid handle race condition.
                              # So let's retry a couple of times before giving up.
                              # See bug #6815
                              if (tries < 5) && e.to_s =~ /The handle is invalid/
                        Severity: Minor
                        Found in modules/post/windows/gather/smart_hashdump.rb and 1 other location - About 35 mins to fix
                        modules/post/windows/gather/hashdump.rb on lines 120..135

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

                        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

                              update_info(
                                info,
                                'Name' => 'Windows Gather Local and Domain Controller Account Password Hashes',
                                'Description' => %q{
                                  This will dump local accounts from the SAM Database. If the target
                        Severity: Minor
                        Found in modules/post/windows/gather/smart_hashdump.rb and 1 other location - About 25 mins to fix
                        modules/post/windows/manage/remove_host.rb on lines 10..32

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

                        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 3 locations. Consider refactoring.
                        Open

                          def decode_windows_hint(e_string)
                            d_string = ''
                            e_string.scan(/..../).each do |chunk|
                              bytes = chunk.scan(/../)
                              d_string += (bytes[1] + bytes[0]).to_s.hex.chr
                        Severity: Minor
                        Found in modules/post/windows/gather/smart_hashdump.rb and 2 other locations - About 25 mins to fix
                        modules/post/windows/gather/hashdump.rb on lines 240..246
                        scripts/meterpreter/hashdump.rb on lines 169..175

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

                        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

                                collected_hashes << "#{users[rid][:Name]}:#{rid}:#{users[rid][:hashlm].unpack1('H*')}:#{users[rid][:hashnt].unpack1('H*')}:::\n"
                        Severity: Minor
                        Found in modules/post/windows/gather/smart_hashdump.rb and 1 other location - About 25 mins to fix
                        modules/post/windows/gather/smart_hashdump.rb on lines 264..264

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

                        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

                                print_good("\t#{users[rid][:Name]}:#{rid}:#{users[rid][:hashlm].unpack1('H*')}:#{users[rid][:hashnt].unpack1('H*')}:::")
                        Severity: Minor
                        Found in modules/post/windows/gather/smart_hashdump.rb and 1 other location - About 25 mins to fix
                        modules/post/windows/gather/smart_hashdump.rb on lines 262..262

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

                        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

                        There are no issues that match your filters.

                        Category
                        Status