hackedteam/test-av

View on GitHub

Showing 1,005 of 1,471 total issues

Consider simplifying this complex logical expression.
Open

        if (
            self.Internal_Port is not None or
            self.External_Port is not None or
            self.Socket_Type is not None or
            self.Socket_ID is not None or
Severity: Critical
Found in lib/maec/maec11.py - About 1 hr to fix

    Consider simplifying this complex logical expression.
    Open

            if (
                self.Hashes is not None or
                self.Machine is not None or
                self.Number_Of_Sections is not None or
                self.Time_Date_Stamp is not None or
    Severity: Critical
    Found in lib/maec/maec11.py - About 1 hr to fix

      Consider simplifying this complex logical expression.
      Open

              if (
                  self.file or
                  self.uri or
                  self.domain or
                  self.registry or
      Severity: Critical
      Found in lib/maec/maec11.py - About 1 hr to fix

        Function run has 10 arguments (exceeds 4 allowed). Consider refactoring.
        Open

        def run(app=None, server='wsgiref', host='127.0.0.1', port=8080,
        Severity: Major
        Found in lib/bottle.py - About 1 hr to fix

          Function dump_files has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
          Open

          def dump_files():
              """Dump dropped file."""
              for file_path in FILES_LIST:
                  file_name = os.path.basename(file_path)
          
          
          Severity: Minor
          Found in analyzer/windows/analyzer.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

          Function all_plugins has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
          Open

              def all_plugins(self):
                  ''' Yield all Plugins affecting this route. '''
                  unique = set()
                  for p in reversed(self.app.plugins + self.plugins):
                      if True in self.skiplist: break
          Severity: Minor
          Found in lib/bottle.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

          Function __init__ has 10 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              def __init__(self,
          Severity: Major
          Found in lib/cuckoo/core/database.py - About 1 hr to fix

            Function _make_callback has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
            Open

                def _make_callback(self):
                    callback = self.callback
                    for plugin in self.all_plugins():
                        try:
                            if hasattr(plugin, 'apply'):
            Severity: Minor
            Found in lib/bottle.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

            Function validate has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
            Open

            def validate(**vkargs):
                """
                Validates and manipulates keyword arguments by user defined callables.
                Handles ValueError and missing arguments by raising HTTPError(403).
                """
            Severity: Minor
            Found in lib/bottle.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

            Function add has 10 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                def add(self,
            Severity: Major
            Found in lib/cuckoo/core/database.py - About 1 hr to fix

              Function run has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
              Open

                  def run(self, message_callback, error_callback):
                      if not self.reconnect:
                          self._run(message_callback, error_callback)
                      else:
                          while True:
              Severity: Minor
              Found in lib/hpfeeds.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

              Function __init__ has 10 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                  def __init__(self, id=None, name=None, Affinity_Type=None, Affinity_Degree=None, Purpose=None, Description=None, Effects=None, Behavior_Sub_Collection=None, Behavior=None, Behavior_Reference=None):
              Severity: Major
              Found in lib/maec/maec11.py - About 1 hr to fix

                Function parse_relocations_directory has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                Open

                    def parse_relocations_directory(self, rva, size):
                        """"""
                        
                        rlc_size = Structure(self.__IMAGE_BASE_RELOCATION_format__).sizeof()
                        end = rva+size
                Severity: Minor
                Found in lib/pefile/pefile.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

                Function __init__ has 10 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                    def __init__(self, language=None, processor_family=None, start_address=None, codetype=None, xorpattern='55AA55AA55AA55BB', id=None, Discovery_Method=None, Code_Segment=None, Code_Segment_XOR=None, External_File=None):
                Severity: Major
                Found in lib/maec/maec11.py - About 1 hr to fix

                  Function __init__ has 10 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                      def __init__(self, version=None, id=None, company=None, author=None, comment=None, timestamp=None, objects=None, objectProperties=None, relationships=None, fieldData=None):
                  Severity: Major
                  Found in lib/maec/maec11.py - About 1 hr to fix

                    Function __init__ has 10 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                        def __init__(self, dll_count=None, type_=None, Version_Block=None, Headers=None, Strings=None, Imports=None, Exports=None, Resources=None, Sections=None, Digital_Certificates=None):
                    Severity: Major
                    Found in lib/maec/maec11.py - About 1 hr to fix

                      Function exportChildren has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                      Open

                          def exportChildren(self, outfile, level, namespace_='maec:', name_='PESectionHeaderStruct', fromsubclass_=False):
                              if self.Hashes is not None:
                                  self.Hashes.export(outfile, level, namespace_, name_='Hashes')
                              if self.Name is not None:
                                  showIndent(outfile, level)
                      Severity: Minor
                      Found in lib/maec/maec11.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

                      Function exportLiteralChildren has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                      Open

                          def exportLiteralChildren(self, outfile, level, name_):
                              if self.Hashes is not None:
                                  showIndent(outfile, level)
                                  outfile.write('Hashes=model_.HashesType5(\n')
                                  self.Hashes.exportLiteral(outfile, level, name_='Hashes')
                      Severity: Minor
                      Found in lib/maec/maec11.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

                      Function exportChildren has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                      Open

                          def exportChildren(self, outfile, level, namespace_='maec:', name_='Process_Object_AttributesType', fromsubclass_=False):
                              if self.Image_Name is not None:
                                  showIndent(outfile, level)
                                  outfile.write('<%sImage_Name>%s</%sImage_Name>\n' % (namespace_, self.gds_format_string(quote_xml(self.Image_Name).encode(ExternalEncoding), input_name='Image_Name'), namespace_))
                              if self.Start_Username is not None:
                      Severity: Minor
                      Found in lib/maec/maec11.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

                      Function buildChildren has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                      Open

                          def buildChildren(self, child_, node, nodeName_, fromsubclass_=False):
                              if nodeName_ == 'Width':
                                  sval_ = child_.text
                                  try:
                                      ival_ = int(sval_)
                      Severity: Minor
                      Found in lib/maec/maec11.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

                      Severity
                      Category
                      Status
                      Source
                      Language