rapid7/metasploit-framework

View on GitHub
tools/password/md5_lookup.rb

Summary

Maintainability
B
4 hrs
Test Coverage

File md5_lookup.rb has 251 lines of code (exceeds 250 allowed). Consider refactoring.
Open

msfbase = __FILE__
while File.symlink?(msfbase)
  msfbase = File.expand_path(File.readlink(msfbase), File.dirname(msfbase))
end
$:.unshift(File.expand_path(File.join(File.dirname(msfbase), '..', '..', 'lib')))
Severity: Minor
Found in tools/password/md5_lookup.rb - About 2 hrs to fix

    Method get_parsed_options has 26 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def self.get_parsed_options
          options = {}
          parser = OptionParser.new do |opt|
            opt.banner = "Usage: #{__FILE__} [options]"
            opt.separator ''
    Severity: Minor
    Found in tools/password/md5_lookup.rb - About 1 hr to fix

      Method get_hash_results has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

          def get_hash_results(input, dbs)
            search_engine = Md5LookupUtility::Md5Lookup.new
            extract_hashes(input) do |hash|
              dbs.each do |db|
                cracked_hash = search_engine.lookup(hash, db)
      Severity: Minor
      Found in tools/password/md5_lookup.rb - About 55 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

      Method parse has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def self.parse(args)
            parser, options = get_parsed_options
      
            # Set the optional datation argument (--database)
            unless options[:databases]
      Severity: Minor
      Found in tools/password/md5_lookup.rb - About 25 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

      There are no issues that match your filters.

      Category
      Status