rapid7/metasploit-framework

View on GitHub
modules/exploits/linux/local/cron_persistence.rb

Summary

Maintainability
B
6 hrs
Test Coverage

Method exploit has 47 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  def exploit
    # https://gist.github.com/istvanp/310203 for cron regex validator
    cron_regex = '(\*|[0-5]?[0-9]|\*\/[0-9]+)\s+'
    cron_regex << '(\*|1?[0-9]|2[0-3]|\*\/[0-9]+)\s+'
    cron_regex << '(\*|[1-2]?[0-9]|3[0-1]|\*\/[0-9]+)\s+'
Severity: Minor
Found in modules/exploits/linux/local/cron_persistence.rb - About 1 hr to fix

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

      def exploit
        # https://gist.github.com/istvanp/310203 for cron regex validator
        cron_regex = '(\*|[0-5]?[0-9]|\*\/[0-9]+)\s+'
        cron_regex << '(\*|1?[0-9]|2[0-3]|\*\/[0-9]+)\s+'
        cron_regex << '(\*|[1-2]?[0-9]|3[0-1]|\*\/[0-9]+)\s+'
    Severity: Minor
    Found in modules/exploits/linux/local/cron_persistence.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 43 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      def initialize(info = {})
        super(
          update_info(
            info,
            'Name'           => 'Cron Persistence',
    Severity: Minor
    Found in modules/exploits/linux/local/cron_persistence.rb - About 1 hr to fix

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

        def user_cron_permission?(user)
          # double check we're allowed to do cron
          # may also be /etc/cron.d/
          paths = ['/etc/', '/etc/cron.d/']
          paths.each do |path|
      Severity: Minor
      Found in modules/exploits/linux/local/cron_persistence.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

      There are no issues that match your filters.

      Category
      Status