rapid7/metasploit-framework

View on GitHub
modules/auxiliary/scanner/http/es_file_explorer_open_port.rb

Summary

Maintainability
F
6 days
Test Coverage

Method run_host has a Cognitive Complexity of 81 (exceeds 5 allowed). Consider refactoring.
Open

  def run_host(target_host)
    case
      when action.name == 'LISTFILES'
        res = http_post('listFiles')
        unless res
Severity: Minor
Found in modules/auxiliary/scanner/http/es_file_explorer_open_port.rb - About 1 day 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_host has 221 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  def run_host(target_host)
    case
      when action.name == 'LISTFILES'
        res = http_post('listFiles')
        unless res
Severity: Major
Found in modules/auxiliary/scanner/http/es_file_explorer_open_port.rb - About 1 day to fix

    File es_file_explorer_open_port.rb has 286 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    class MetasploitModule < Msf::Auxiliary
      include Msf::Exploit::Remote::HttpClient
      include Msf::Auxiliary::Report
      include Msf::Auxiliary::Scanner
    
    
    Severity: Minor
    Found in modules/auxiliary/scanner/http/es_file_explorer_open_port.rb - About 2 hrs to fix

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

        def initialize
          super(
            'Name'        => 'ES File Explorer Open Port',
            'Description' => %q{
              This module connects to ES File Explorer's HTTP server to run
      Severity: Minor
      Found in modules/auxiliary/scanner/http/es_file_explorer_open_port.rb - About 1 hr to fix

        Avoid too many return statements within this method.
        Open

                  return
        Severity: Major
        Found in modules/auxiliary/scanner/http/es_file_explorer_open_port.rb - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

                    return
          Severity: Major
          Found in modules/auxiliary/scanner/http/es_file_explorer_open_port.rb - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

                      return
            Severity: Major
            Found in modules/auxiliary/scanner/http/es_file_explorer_open_port.rb - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                        return
              Severity: Major
              Found in modules/auxiliary/scanner/http/es_file_explorer_open_port.rb - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                          return
                Severity: Major
                Found in modules/auxiliary/scanner/http/es_file_explorer_open_port.rb - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                            return
                  Severity: Major
                  Found in modules/auxiliary/scanner/http/es_file_explorer_open_port.rb - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                              return
                    Severity: Major
                    Found in modules/auxiliary/scanner/http/es_file_explorer_open_port.rb - About 30 mins to fix

                      Avoid too many return statements within this method.
                      Open

                                return
                      Severity: Major
                      Found in modules/auxiliary/scanner/http/es_file_explorer_open_port.rb - About 30 mins to fix

                        Avoid too many return statements within this method.
                        Open

                                  return
                        Severity: Major
                        Found in modules/auxiliary/scanner/http/es_file_explorer_open_port.rb - About 30 mins to fix

                          Avoid too many return statements within this method.
                          Open

                                    return
                          Severity: Major
                          Found in modules/auxiliary/scanner/http/es_file_explorer_open_port.rb - About 30 mins to fix

                            Avoid too many return statements within this method.
                            Open

                                      return
                            Severity: Major
                            Found in modules/auxiliary/scanner/http/es_file_explorer_open_port.rb - About 30 mins to fix

                              Avoid too many return statements within this method.
                              Open

                                        return
                              Severity: Major
                              Found in modules/auxiliary/scanner/http/es_file_explorer_open_port.rb - About 30 mins to fix

                                Avoid too many return statements within this method.
                                Open

                                          return
                                Severity: Major
                                Found in modules/auxiliary/scanner/http/es_file_explorer_open_port.rb - About 30 mins to fix

                                  Avoid too many return statements within this method.
                                  Open

                                            return
                                  Severity: Major
                                  Found in modules/auxiliary/scanner/http/es_file_explorer_open_port.rb - About 30 mins to fix

                                    Avoid too many return statements within this method.
                                    Open

                                              return
                                    Severity: Major
                                    Found in modules/auxiliary/scanner/http/es_file_explorer_open_port.rb - About 30 mins to fix

                                      Avoid too many return statements within this method.
                                      Open

                                                return
                                      Severity: Major
                                      Found in modules/auxiliary/scanner/http/es_file_explorer_open_port.rb - About 30 mins to fix

                                        Avoid too many return statements within this method.
                                        Open

                                                  return
                                        Severity: Major
                                        Found in modules/auxiliary/scanner/http/es_file_explorer_open_port.rb - About 30 mins to fix

                                          Avoid too many return statements within this method.
                                          Open

                                                    return
                                          Severity: Major
                                          Found in modules/auxiliary/scanner/http/es_file_explorer_open_port.rb - About 30 mins to fix

                                            Avoid too many return statements within this method.
                                            Open

                                                      return
                                            Severity: Major
                                            Found in modules/auxiliary/scanner/http/es_file_explorer_open_port.rb - About 30 mins to fix

                                              Avoid too many return statements within this method.
                                              Open

                                                        return
                                              Severity: Major
                                              Found in modules/auxiliary/scanner/http/es_file_explorer_open_port.rb - About 30 mins to fix

                                                Avoid too many return statements within this method.
                                                Open

                                                          return
                                                Severity: Major
                                                Found in modules/auxiliary/scanner/http/es_file_explorer_open_port.rb - About 30 mins to fix

                                                  Similar blocks of code found in 3 locations. Consider refactoring.
                                                  Open

                                                        when action.name == 'LISTAUDIOS'
                                                          res = http_post('listAudios')
                                                          unless res
                                                            print_error("#{peer}- Error Connecting")
                                                            return
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 94..111
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 112..129

                                                  Duplicated Code

                                                  Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                  Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                  When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                  Tuning

                                                  This issue has a mass of 89.

                                                  We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                  The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                  If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                  See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                  Refactorings

                                                  Further Reading

                                                  Similar blocks of code found in 3 locations. Consider refactoring.
                                                  Open

                                                        when action.name == 'LISTPICS'
                                                          res = http_post('listPics')
                                                          unless res
                                                            print_error("#{peer}- Error Connecting")
                                                            return
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 112..129
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 130..147

                                                  Duplicated Code

                                                  Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                  Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                  When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                  Tuning

                                                  This issue has a mass of 89.

                                                  We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                  The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                  If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                  See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                  Refactorings

                                                  Further Reading

                                                  Similar blocks of code found in 3 locations. Consider refactoring.
                                                  Open

                                                        when action.name == 'LISTVIDEOS'
                                                          res = http_post('listVideos')
                                                          unless res
                                                            print_error("#{peer}- Error Connecting")
                                                            return
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 94..111
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 130..147

                                                  Duplicated Code

                                                  Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                  Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                  When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                  Tuning

                                                  This issue has a mass of 89.

                                                  We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                  The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                  If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                  See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                  Refactorings

                                                  Further Reading

                                                  Similar blocks of code found in 5 locations. Consider refactoring.
                                                  Open

                                                        when action.name == 'LISTAPPSPHONE'
                                                          res = http_post('listAppsPhone')
                                                          unless res
                                                            print_error("#{peer}- Error Connecting")
                                                            return
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 148..165
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 166..183
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 202..219
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 220..237

                                                  Duplicated Code

                                                  Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                  Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                  When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                  Tuning

                                                  This issue has a mass of 80.

                                                  We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                  The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                  If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                  See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                  Refactorings

                                                  Further Reading

                                                  Similar blocks of code found in 5 locations. Consider refactoring.
                                                  Open

                                                        when action.name == 'LISTAPPS'
                                                          res = http_post('listApps')
                                                          unless res
                                                            print_error("#{peer}- Error Connecting")
                                                            return
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 166..183
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 184..201
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 202..219
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 220..237

                                                  Duplicated Code

                                                  Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                  Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                  When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                  Tuning

                                                  This issue has a mass of 80.

                                                  We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                  The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                  If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                  See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                  Refactorings

                                                  Further Reading

                                                  Similar blocks of code found in 5 locations. Consider refactoring.
                                                  Open

                                                        when action.name == 'LISTAPPSALL'
                                                          res = http_post('listAppsAll')
                                                          unless res
                                                            print_error("#{peer}- Error Connecting")
                                                            return
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 148..165
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 166..183
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 184..201
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 202..219

                                                  Duplicated Code

                                                  Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                  Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                  When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                  Tuning

                                                  This issue has a mass of 80.

                                                  We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                  The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                  If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                  See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                  Refactorings

                                                  Further Reading

                                                  Similar blocks of code found in 5 locations. Consider refactoring.
                                                  Open

                                                        when action.name == 'LISTAPPSSYSTEM'
                                                          res = http_post('listAppsSystem')
                                                          unless res
                                                            print_error("#{peer}- Error Connecting")
                                                            return
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 148..165
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 184..201
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 202..219
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 220..237

                                                  Duplicated Code

                                                  Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                  Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                  When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                  Tuning

                                                  This issue has a mass of 80.

                                                  We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                  The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                  If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                  See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                  Refactorings

                                                  Further Reading

                                                  Similar blocks of code found in 5 locations. Consider refactoring.
                                                  Open

                                                        when action.name == 'LISTAPPSSDCARD'
                                                          res = http_post('listAppsSdcard')
                                                          unless res
                                                            print_error("#{peer}- Error Connecting")
                                                            return
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 148..165
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 166..183
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 184..201
                                                  modules/auxiliary/scanner/http/es_file_explorer_open_port.rb on lines 220..237

                                                  Duplicated Code

                                                  Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                  Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                  When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                  Tuning

                                                  This issue has a mass of 80.

                                                  We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                  The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                  If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                  See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                  Refactorings

                                                  Further Reading

                                                  There are no issues that match your filters.

                                                  Category
                                                  Status