rapid7/metasploit-framework

View on GitHub
modules/exploits/osx/local/sudo_password_bypass.rb

Summary

Maintainability
C
7 hrs
Test Coverage

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

  def initialize(info = {})
    super(update_info(info,
      'Name'          => 'Mac OS X Sudo Password Bypass',
      'Description'   => %q{
        This module gains a session with root permissions on versions of OS X with
Severity: Major
Found in modules/exploits/osx/local/sudo_password_bypass.rb - About 2 hrs to fix

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

      def cleanup
        if @clock_changed
          print_status("Resetting system clock to original values") if @time
          cmd_exec("#{SYSTEMSETUP_PATH} -settimezone #{[@zone].shelljoin}") unless @zone.nil?
          cmd_exec("#{SYSTEMSETUP_PATH} -setdate #{[@date].shelljoin}") unless @date.nil?
    Severity: Minor
    Found in modules/exploits/osx/local/sudo_password_bypass.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 run_sudo_cmd has 38 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      def run_sudo_cmd
        print_status("Resetting user's time stamp file and setting clock to the epoch")
        cmd_exec(
          "sudo -k; \n"+
          "#{SYSTEMSETUP_PATH} -setusingnetworktime Off -settimezone GMT"+
    Severity: Minor
    Found in modules/exploits/osx/local/sudo_password_bypass.rb - About 1 hr to fix

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

        def run_sudo_cmd
          print_status("Resetting user's time stamp file and setting clock to the epoch")
          cmd_exec(
            "sudo -k; \n"+
            "#{SYSTEMSETUP_PATH} -setusingnetworktime Off -settimezone GMT"+
      Severity: Minor
      Found in modules/exploits/osx/local/sudo_password_bypass.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

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

        def check
          if cmd_exec("sudo -V") =~ /version\s+([^\s]*)\s*$/
            sudo_vn = $1
            sudo_vn_parts = sudo_vn.split(/[\.p]/).map(&:to_i)
            # check vn between 1.6.0 through 1.7.10p6
      Severity: Minor
      Found in modules/exploits/osx/local/sudo_password_bypass.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