hackedteam/test-av

View on GitHub
modules/processing/static.py

Summary

Maintainability
D
1 day
Test Coverage

Function _get_versioninfo has a Cognitive Complexity of 38 (exceeds 5 allowed). Consider refactoring.
Open

    def _get_versioninfo(self):
        """Get version info.
        @return: info dict or None.
        """
        if not self.pe:
Severity: Minor
Found in modules/processing/static.py - About 5 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 _get_resources has a Cognitive Complexity of 32 (exceeds 5 allowed). Consider refactoring.
Open

    def _get_resources(self):
        """Get resources.
        @return: resources dict or None.
        """
        if not self.pe:
Severity: Minor
Found in modules/processing/static.py - About 4 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 _get_imported_symbols has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

    def _get_imported_symbols(self):
        """Gets imported symbols.
        @return: imported symbols dict or None.
        """
        if not self.pe:
Severity: Minor
Found in modules/processing/static.py - 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

Avoid deeply nested control flow statements.
Open

                            if hasattr(resource_id, "directory"):
                                for resource_lang in resource_id.directory.entries:
                                    data = self.pe.get_data(resource_lang.data.struct.OffsetToData, resource_lang.data.struct.Size)
                                    filetype = self._get_filetype(data)
                                    language = pefile.LANG.get(resource_lang.data.lang, None)
Severity: Major
Found in modules/processing/static.py - About 45 mins to fix

    Avoid deeply nested control flow statements.
    Open

                                for var_entry in entry.Var:
                                    if hasattr(var_entry, "entry"):
                                        entry = {}
                                        entry["name"] = convert_to_printable(var_entry.entry.keys()[0])
                                        entry["value"] = convert_to_printable(var_entry.entry.values()[0])
    Severity: Major
    Found in modules/processing/static.py - About 45 mins to fix

      Avoid deeply nested control flow statements.
      Open

                                  for st_entry in entry.StringTable:
                                      for str_entry in st_entry.entries.items():
                                          entry = {}
                                          entry["name"] = convert_to_printable(str_entry[0])
                                          entry["value"] = convert_to_printable(str_entry[1])
      Severity: Major
      Found in modules/processing/static.py - About 45 mins to fix

        There are no issues that match your filters.

        Category
        Status