rastating/wordpress-exploit-framework

View on GitHub

Showing 338 of 338 total issues

Assignment Branch Condition size for run is too high. [20.42/15]
Open

  def run
    return false unless super

    emit_info 'Creating new admin user...'
    res = execute_post_request(

This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric

Cyclomatic complexity for run is too high. [11/6]
Open

  def run
    return false unless super

    @cookie = authenticate_with_wordpress(datastore['username'], datastore['password'])
    return false unless @cookie

This cop checks that the cyclomatic complexity of methods is not higher than the configured maximum. The cyclomatic complexity is the number of linearly independent paths through a method. The algorithm counts decision points and adds one.

An if statement (or unless or ?:) increases the complexity by one. An else branch does not, since it doesn't add a decision point. The && operator (or keyword and) can be converted to a nested if statement, and ||/or is shorthand for a sequence of ifs, so they also add one. Loops can be said to have an exit condition, so they add one.

Assignment Branch Condition size for _upload_payload is too high. [20.45/15]
Open

  def _upload_payload(builder)
    @start_timestamp = Time.now.to_i

    builder.create do |body|
      @upload_result = execute_post_request(url: uploader_url, params: upload_request_params, body: body, cookie: @session_cookie)
Severity: Minor
Found in lib/wpxf/wordpress/shell_upload.rb by rubocop

This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric

Perceived complexity for run is too high. [12/7]
Open

  def run
    return false unless super

    @cookie = authenticate_with_wordpress(datastore['username'], datastore['password'])
    return false unless @cookie

This cop tries to produce a complexity score that's a measure of the complexity the reader experiences when looking at a method. For that reason it considers when nodes as something that doesn't add as much complexity as an if or a &&. Except if it's one of those special case/when constructs where there's no expression after case. Then the cop treats it as an if/elsif/elsif... and lets all the when nodes count. In contrast to the CyclomaticComplexity cop, this cop considers else nodes as adding complexity.

Example:

def my_method                   # 1
  if cond                       # 1
    case var                    # 2 (0.8 + 4 * 0.2, rounded)
    when 1 then func_one
    when 2 then func_two
    when 3 then func_three
    when 4..10 then func_other
    end
  else                          # 1
    do_something until a && b   # 2
  end                           # ===
end                             # 7 complexity points

Method stager has 56 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  def stager
    %(
      <html>
      <head>
      </head>
Severity: Major
Found in lib/wpxf/modules/auxiliary/priv_esc/super_socializer_auth_bypass.rb - About 2 hrs to fix

    Assignment Branch Condition size for _determine_prefix is too high. [19.39/15]
    Open

      def _determine_prefix
        body = _build_prefix_request_body
        params = _build_prefix_request_params
    
        res = execute_request(
    Severity: Minor
    Found in lib/wpxf/wordpress/hash_dump.rb by rubocop

    This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric

    Assignment Branch Condition size for login is too high. [19.21/15]
    Open

      def login
        res = execute_post_request(
          url: wordpress_url_admin_ajax,
          body: {
            'action' => 'the_champ_user_auth',

    This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric

    Cyclomatic complexity for run is too high. [10/6]
    Open

      def run
        return false unless super
    
        emit_info 'Preparing payload...'
        payload_name = "#{Utility::Text.rand_alpha(rand(5..10))}.php"

    This cop checks that the cyclomatic complexity of methods is not higher than the configured maximum. The cyclomatic complexity is the number of linearly independent paths through a method. The algorithm counts decision points and adds one.

    An if statement (or unless or ?:) increases the complexity by one. An else branch does not, since it doesn't add a decision point. The && operator (or keyword and) can be converted to a nested if statement, and ||/or is shorthand for a sequence of ifs, so they also add one. Loops can be said to have an exit condition, so they add one.

    Assignment Branch Condition size for upload_shell is too high. [19.34/15]
    Open

      def upload_shell(username, password)
        cookie = authenticate_with_wordpress(username, password)
        return false unless cookie
    
        emit_info 'Uploading payload...'

    This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric

    Assignment Branch Condition size for run is too high. [19.44/15]
    Open

      def run
        return false unless super
    
        start_http_server(true)
    
    

    This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric

    Perceived complexity for auto_complete_proc is too high. [11/7]
    Open

          def auto_complete_proc(input, list)
            res = nil
    
            # Nothing on this level, so return previous level.
            return res if list.keys.empty?
    Severity: Minor
    Found in lib/wpxf/cli/auto_complete.rb by rubocop

    This cop tries to produce a complexity score that's a measure of the complexity the reader experiences when looking at a method. For that reason it considers when nodes as something that doesn't add as much complexity as an if or a &&. Except if it's one of those special case/when constructs where there's no expression after case. Then the cop treats it as an if/elsif/elsif... and lets all the when nodes count. In contrast to the CyclomaticComplexity cop, this cop considers else nodes as adding complexity.

    Example:

    def my_method                   # 1
      if cond                       # 1
        case var                    # 2 (0.8 + 4 * 0.2, rounded)
        when 1 then func_one
        when 2 then func_two
        when 3 then func_three
        when 4..10 then func_other
        end
      else                          # 1
        do_something until a && b   # 2
      end                           # ===
    end                             # 7 complexity points

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

      def initialize
        super
    
        update_info(
          name: 'Long Password DoS',
    Severity: Major
    Found in lib/wpxf/modules/auxiliary/dos/long_password_dos.rb - About 2 hrs to fix

      Method run has 51 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        def run
          return false unless super
      
          if !use_wordpress_authentication && !use_ec_authentication
            emit_error 'You must set either the username and password options or '\
      Severity: Major
      Found in lib/wpxf/modules/exploit/shell/easy_cart_shell_upload.rb - About 2 hrs to fix

        Cyclomatic complexity for run is too high. [9/6]
        Open

          def run
            return false unless super
        
            cookie = authenticate_with_wordpress(username, password)
            return false unless cookie

        This cop checks that the cyclomatic complexity of methods is not higher than the configured maximum. The cyclomatic complexity is the number of linearly independent paths through a method. The algorithm counts decision points and adds one.

        An if statement (or unless or ?:) increases the complexity by one. An else branch does not, since it doesn't add a decision point. The && operator (or keyword and) can be converted to a nested if statement, and ||/or is shorthand for a sequence of ifs, so they also add one. Loops can be said to have an exit condition, so they add one.

        Cyclomatic complexity for run is too high. [9/6]
        Open

          def run
            return false unless super
        
            emit_info 'Preparing payload...'
            theme_name = Utility::Text.rand_alpha(rand(5..10))

        This cop checks that the cyclomatic complexity of methods is not higher than the configured maximum. The cyclomatic complexity is the number of linearly independent paths through a method. The algorithm counts decision points and adds one.

        An if statement (or unless or ?:) increases the complexity by one. An else branch does not, since it doesn't add a decision point. The && operator (or keyword and) can be converted to a nested if statement, and ||/or is shorthand for a sequence of ifs, so they also add one. Loops can be said to have an exit condition, so they add one.

        Assignment Branch Condition size for run is too high. [18.55/15]
        Open

          def run
            return false unless super
        
            new_email = "#{Utility::Text.rand_alpha(5)}@#{Utility::Text.rand_alpha(5)}.com"
            emit_info "Changing admin e-mail address to #{new_email}..."

        This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric

        Cyclomatic complexity for run is too high. [9/6]
        Open

          def run
            super
            return false unless check_wordpress_and_online
        
            emit_info 'Preparing payload...'

        This cop checks that the cyclomatic complexity of methods is not higher than the configured maximum. The cyclomatic complexity is the number of linearly independent paths through a method. The algorithm counts decision points and adds one.

        An if statement (or unless or ?:) increases the complexity by one. An else branch does not, since it doesn't add a decision point. The && operator (or keyword and) can be converted to a nested if statement, and ||/or is shorthand for a sequence of ifs, so they also add one. Loops can be said to have an exit condition, so they add one.

        Assignment Branch Condition size for run is too high. [18.55/15]
        Open

          def run
            return false unless super
        
            new_email = "#{Utility::Text.rand_alpha(5)}@#{Utility::Text.rand_alpha(5)}.com"
            emit_info "Changing admin e-mail address to #{new_email}..."

        This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric

        Cyclomatic complexity for run is too high. [9/6]
        Open

          def run
            return false unless super
        
            emit_info 'Preparing payload...'
            payload_name = "#{Utility::Text.rand_alpha(rand(5..10))}.php"

        This cop checks that the cyclomatic complexity of methods is not higher than the configured maximum. The cyclomatic complexity is the number of linearly independent paths through a method. The algorithm counts decision points and adds one.

        An if statement (or unless or ?:) increases the complexity by one. An else branch does not, since it doesn't add a decision point. The && operator (or keyword and) can be converted to a nested if statement, and ||/or is shorthand for a sequence of ifs, so they also add one. Loops can be said to have an exit condition, so they add one.

        Perceived complexity for run is too high. [10/7]
        Open

          def run
            return false unless super
        
            emit_info 'Preparing payload...'
            payload_name = "#{Utility::Text.rand_alpha(rand(5..10))}.php"

        This cop tries to produce a complexity score that's a measure of the complexity the reader experiences when looking at a method. For that reason it considers when nodes as something that doesn't add as much complexity as an if or a &&. Except if it's one of those special case/when constructs where there's no expression after case. Then the cop treats it as an if/elsif/elsif... and lets all the when nodes count. In contrast to the CyclomaticComplexity cop, this cop considers else nodes as adding complexity.

        Example:

        def my_method                   # 1
          if cond                       # 1
            case var                    # 2 (0.8 + 4 * 0.2, rounded)
            when 1 then func_one
            when 2 then func_two
            when 3 then func_three
            when 4..10 then func_other
            end
          else                          # 1
            do_something until a && b   # 2
          end                           # ===
        end                             # 7 complexity points
        Severity
        Category
        Status
        Source
        Language