rapid7/metasploit-framework

View on GitHub
lib/msf/ui/console/module_argument_parsing.rb

Summary

Maintainability
B
6 hrs
Test Coverage

Method parse_opts has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
Open

  def parse_opts(opts, args, help_cmd:, action: nil)
    result = {
      jobify: false,
      quiet: false,
      datastore_options: {},
Severity: Minor
Found in lib/msf/ui/console/module_argument_parsing.rb - About 2 hrs 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_opts has 63 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  def parse_opts(opts, args, help_cmd:, action: nil)
    result = {
      jobify: false,
      quiet: false,
      datastore_options: {},
Severity: Major
Found in lib/msf/ui/console/module_argument_parsing.rb - About 2 hrs to fix

    Method print_module_run_or_check_usage has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

      def print_module_run_or_check_usage(command:, description: nil, options: @@module_opts)
        description ||= command == :check ? 'Check if the target is vulnerable' : "Run the current #{name.downcase} module"
    
        is_http_mod = mod.is_a?(Msf::Exploit::Remote::HttpClient)
        is_smb_mod = mod.is_a?(Msf::Exploit::Remote::SMB::Client) || mod.options.include?('SMBUser')
    Severity: Minor
    Found in lib/msf/ui/console/module_argument_parsing.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 append_datastore_option has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

      def append_datastore_option(datastore_options, name, value)
        if name.casecmp?('RHOST') || name.casecmp?('RHOSTS')
          new_value = quote_whitespaced_value(value)
          if !datastore_options['RHOSTS']
            datastore_options['RHOSTS'] = new_value
    Severity: Minor
    Found in lib/msf/ui/console/module_argument_parsing.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