secureCodeBox/secureCodeBox

View on GitHub
scanners/zap-advanced/scanner/zapclient/spider/zap_spider_http.py

Summary

Maintainability
C
1 day
Test Coverage

Function configure_spider has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
Open

    def configure_spider(self, spider_config: collections.OrderedDict):
        """Configures a ZAP HTTP Spider with the given spider configuration, based on the running ZAP instance.

        Parameters
        ----------
Severity: Minor
Found in scanners/zap-advanced/scanner/zapclient/spider/zap_spider_http.py - About 3 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

File zap_spider_http.py has 294 lines of code (exceeds 250 allowed). Consider refactoring.
Open

#!/usr/bin/env python

# SPDX-FileCopyrightText: the secureCodeBox authors
#
# SPDX-License-Identifier: Apache-2.0
Severity: Minor
Found in scanners/zap-advanced/scanner/zapclient/spider/zap_spider_http.py - About 3 hrs to fix

    Function start_spider has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
    Open

        def start_spider(self, url: str, spider_config: collections.OrderedDict):
            """Starts a ZAP Spider with the given spiders configuration, based on the internal referenced ZAP instance.
    
            Parameters
            ----------
    Severity: Minor
    Found in scanners/zap-advanced/scanner/zapclient/spider/zap_spider_http.py - 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

    Function print_spider_summary has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def print_spider_summary(self):
            """Method to print out a summary of the spider results"""
            logging.info("HTTP Spider(%s) completed", str(self.get_spider_id))
    
            num_urls = len(self.get_zap.core.urls())
    Severity: Minor
    Found in scanners/zap-advanced/scanner/zapclient/spider/zap_spider_http.py - 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