rapid7/metasploit-framework

View on GitHub
modules/auxiliary/gather/exchange_proxylogon_collector.rb

Summary

Maintainability
D
1 day
Test Coverage

File exchange_proxylogon_collector.rb has 361 lines of code (exceeds 250 allowed). Consider refactoring.
Open

class MetasploitModule < Msf::Auxiliary
  include Msf::Exploit::Remote::HttpClient

  def initialize(info = {})
    super(
Severity: Minor
Found in modules/auxiliary/gather/exchange_proxylogon_collector.rb - About 4 hrs to fix

    Method run has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
    Open

      def run
        @proto = (ssl ? 'https' : 'http')
        @random_uri = normalize_uri('ecp', "#{Rex::Text.rand_text_alpha(1..3)}.js")
    
        print_status(message('Attempt to exploit for CVE-2021-26855'))
    Severity: Minor
    Found in modules/auxiliary/gather/exchange_proxylogon_collector.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 initialize has 66 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      def initialize(info = {})
        super(
          update_info(
            info,
            'Name' => 'Microsoft Exchange ProxyLogon Collector',
    Severity: Major
    Found in modules/auxiliary/gather/exchange_proxylogon_collector.rb - About 2 hrs to fix

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

        def run
          @proto = (ssl ? 'https' : 'http')
          @random_uri = normalize_uri('ecp', "#{Rex::Text.rand_text_alpha(1..3)}.js")
      
          print_status(message('Attempt to exploit for CVE-2021-26855'))
      Severity: Minor
      Found in modules/auxiliary/gather/exchange_proxylogon_collector.rb - About 1 hr to fix

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

          def request_autodiscover(server_name)
            xmlns = { 'xmlns' => 'http://schemas.microsoft.com/exchange/autodiscover/outlook/responseschema/2006a' }
        
            response = send_xml('POST', "#{server_name}/autodiscover/autodiscover.xml?a=~#{random_ssrf_id}", soap_autodiscover)
        
        
        Severity: Minor
        Found in modules/auxiliary/gather/exchange_proxylogon_collector.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 request_autodiscover has 26 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          def request_autodiscover(server_name)
            xmlns = { 'xmlns' => 'http://schemas.microsoft.com/exchange/autodiscover/outlook/responseschema/2006a' }
        
            response = send_xml('POST', "#{server_name}/autodiscover/autodiscover.xml?a=~#{random_ssrf_id}", soap_autodiscover)
        
        
        Severity: Minor
        Found in modules/auxiliary/gather/exchange_proxylogon_collector.rb - About 1 hr to fix

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

            def download_items(total_count, ssrf)
              response = send_xml('POST', ssrf, soap_listitems(datastore['FOLDER'], total_count))
              xml = Nokogiri::XML.parse(response.body)
          
              xml.xpath('//t:Items/t:Message', XMLNS).each do |item|
          Severity: Minor
          Found in modules/auxiliary/gather/exchange_proxylogon_collector.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

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

            def dump_contacts(server_name)
              ssrf = "#{server_name}/EWS/Exchange.asmx?a=~#{random_ssrf_id}"
          
              response = send_xml('POST', ssrf, soap_countitems(action['id_attribute']))
              if response.body =~ /Success/
          Severity: Minor
          Found in modules/auxiliary/gather/exchange_proxylogon_collector.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