stdtom/ssl_certinfo

View on GitHub

Showing 5 of 12 total issues

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

def expand_hosts(hostlist):
    result = []

    for elem in hostlist:
        if validation.is_valid_hostname(elem) or validation.is_valid_ip_address(elem):
Severity: Minor
Found in ssl_certinfo/cli.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 ssl_handshake_helper has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

def ssl_handshake_helper(sock_ssl):
    timeout = sock_ssl.gettimeout()
    if timeout is not None:
        start = time.time()
    while True:
Severity: Minor
Found in ssl_certinfo/ssl_certinfo.py - About 35 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

Avoid too many return statements within this function.
Open

        return df.to_csv()
Severity: Major
Found in ssl_certinfo/ssl_certinfo.py - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

            return df.to_string()
    Severity: Major
    Found in ssl_certinfo/ssl_certinfo.py - About 30 mins to fix

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

      def format_results(results, outform):
          if results == {}:
              return ""
      
          elif outform == OutputFormat.TABLE:
      Severity: Minor
      Found in ssl_certinfo/ssl_certinfo.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

      Severity
      Category
      Status
      Source
      Language