Hackman238/legion

View on GitHub

Showing 217 of 217 total issues

Function switchToolTabClick has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
Open

    def switchToolTabClick(self):                                       # TODO: check for duplicate code.
        if self.ToolSettingsTab.tabText(self.ToolSettingsTab.currentIndex()) == 'Host Commands':
            self.toolForHostsTableWidget.selectRow(0)
            self.updateToolForHostInformation(False)
            
Severity: Minor
Found in ui/settingsDialog.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

File NmapImporter.py has 286 lines of code (exceeds 250 allowed). Consider refactoring.
Open

"""
LEGION (https://shanewilliamscott.com)
Copyright (c) 2024 Shane Scott

    This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public
Severity: Minor
Found in app/importers/NmapImporter.py - About 2 hrs to fix

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

                if self.singleUserRadio.isChecked():
                    self.command += " -l " + self.usersTextinput.text()
                elif self.foundUsersRadio.isChecked():
                    self.command += " -L \"" + userlistPath+"\""
                else:
    Severity: Major
    Found in ui/dialogs.py and 1 other location - About 2 hrs to fix
    ui/dialogs.py on lines 358..365

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 59.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

                if self.singlePassRadio.isChecked():
                    escaped_password = self.passwordsTextinput.text().replace('"', '\"\"\"')
                    self.command += " -p \"" + escaped_password + "\""
    
                elif self.foundPasswordsRadio.isChecked():
    Severity: Major
    Found in ui/dialogs.py and 1 other location - About 2 hrs to fix
    ui/dialogs.py on lines 350..355

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 59.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    File auxiliary.py has 275 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    #!/usr/bin/env python
    
    """
    LEGION (https://shanewilliamscott.com)
    Copyright (c) 2024 Shane Scott
    Severity: Minor
    Found in app/auxiliary.py - About 2 hrs to fix

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

          def contextMenuServicesTableView(self, pos):
              if len(self.ui.ServicesTableView.selectionModel().selectedRows()) > 0:
                  # if there is only one row selected, get service name
                  if len(self.ui.ServicesTableView.selectionModel().selectedRows()) == 1:
                      row = self.ui.ServicesTableView.selectionModel().selectedRows()[len(
      Severity: Minor
      Found in ui/view.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 buildHydraCommand has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
      Open

          def buildHydraCommand(self, runningfolder, userlistPath, passlistPath):
              
              self.ip = self.ipTextinput.text()
              self.port = self.portTextinput.text()
              self.service = str(self.serviceComboBox.currentText())
      Severity: Minor
      Found in ui/dialogs.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 runStagedNmap has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
      Open

          def runStagedNmap(self, targetHosts, discovery = True, stage = 1, stop = False):
              log.info("runStagedNmap called for stage {0}".format(str(stage)))
              runningFolder = self.logic.activeProject.properties.runningFolder
              if not stop:
                  textbox = self.view.createNewTabForHost(str(targetHosts), 'nmap (stage ' + str(stage) + ')', True)
      Severity: Minor
      Found in controller/controller.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 setupHostCommandsTab has 64 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          def setupHostCommandsTab(self):
              self.toolForHostsTableWidget = QtWidgets.QTableWidget(self.HostActionsWidget)
              self.toolForHostsTableWidget.setSelectionBehavior(QAbstractItemView.SelectionBehavior.SelectRows)
              self.toolForHostsTableWidget.setFixedWidth(180)
              self.toolForHostsTableWidget.setShowGrid(False)                 # to make the cells of the table read only
      Severity: Major
      Found in ui/settingsDialog.py - About 2 hrs to fix

        Function setupGeneralTab has 63 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            def setupGeneralTab(self):
                self.terminalLabel = QtWidgets.QLabel()
                self.terminalLabel.setText('Terminal')
                self.terminalLabel.setFixedWidth(150)
                self.terminalComboBox = QtWidgets.QComboBox()
        Severity: Major
        Found in ui/settingsDialog.py - About 2 hrs to fix

          Identical blocks of code found in 3 locations. Consider refactoring.
          Open

              def center(self):
                  frameGm = self.frameGeometry()
                  centerPoint = QtGui.QGuiApplication.primaryScreen().availableGeometry().center()
                  frameGm.moveCenter(centerPoint)
                  self.move(frameGm.topLeft())
          Severity: Major
          Found in ui/configDialog.py and 2 other locations - About 2 hrs to fix
          ui/helpDialog.py on lines 37..41
          ui/helpDialog.py on lines 75..79

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 56.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Identical blocks of code found in 3 locations. Consider refactoring.
          Open

              def center(self):
                  frameGm = self.frameGeometry()
                  centerPoint = QtGui.QGuiApplication.primaryScreen().availableGeometry().center()
                  frameGm.moveCenter(centerPoint)
                  self.move(frameGm.topLeft())
          Severity: Major
          Found in ui/helpDialog.py and 2 other locations - About 2 hrs to fix
          ui/configDialog.py on lines 52..56
          ui/helpDialog.py on lines 37..41

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 56.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Identical blocks of code found in 3 locations. Consider refactoring.
          Open

              def center(self):
                  frameGm = self.frameGeometry()
                  centerPoint = QtGui.QGuiApplication.primaryScreen().availableGeometry().center() 
                  frameGm.moveCenter(centerPoint)
                  self.move(frameGm.topLeft())
          Severity: Major
          Found in ui/helpDialog.py and 2 other locations - About 2 hrs to fix
          ui/configDialog.py on lines 52..56
          ui/helpDialog.py on lines 75..79

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 56.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Function setupLeftPanel has 62 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              def setupLeftPanel(self):
                  self.HostsTabWidget = QtWidgets.QTabWidget(self.splitter)
                  self.sizePolicy.setHeightForWidth(self.HostsTabWidget.sizePolicy().hasHeightForWidth())
                  self.HostsTabWidget.setSizePolicy(self.sizePolicy2)
                  self.HostsTabWidget.setObjectName(_fromUtf8("HostsTabWidget"))
          Severity: Major
          Found in ui/gui.py - About 2 hrs to fix

            Function sort has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
            Open

                def sort(self, Ncol, order):
                    
                    self.layoutAboutToBeChanged.emit()
                    array = []
                    
            Severity: Minor
            Found in ui/models/hostmodels.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 processFinished has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
            Open

                def processFinished(self, qProcess):
                    processRepository = self.logic.activeProject.repositoryContainer.processRepository
                    try:
                        if not processRepository.isKilledProcess(
                                str(qProcess.id)):  # if process was not killed
            Severity: Minor
            Found in controller/controller.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 toolHostsClick has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
            Open

                def toolHostsClick(self):
                    if self.ui.ToolHostsTableView.selectionModel().selectedRows():
                        row = self.ui.ToolHostsTableView.selectionModel().selectedRows()[len(
                            self.ui.ToolHostsTableView.selectionModel().selectedRows())-1].row()
                        self.viewState.tool_host_clicked = self.ToolHostsTableModel.getProcessIdForRow(row)
            Severity: Minor
            Found in ui/view.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

            File addHostDialog.py has 262 lines of code (exceeds 250 allowed). Consider refactoring.
            Open

            #!/usr/bin/env python
            
            """
            LEGION (https://shanewilliamscott.com)
            Copyright (c) 2024 Shane Scott
            Severity: Minor
            Found in ui/addHostDialog.py - About 2 hrs to fix

              Function scheduler has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
              Open

                  def scheduler(self, parser, isNmapImport):
                      if isNmapImport and self.settings.general_enable_scheduler_on_import == 'False':
                          return
                      if self.settings.general_enable_scheduler == 'True':
                          log.info('Scheduler started!')
              Severity: Minor
              Found in controller/controller.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 addHosts has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
              Open

                  def addHosts(self, targetHosts, runHostDiscovery, runStagedNmap, nmapSpeed, scanMode, nmapOptions = []):
                      if targetHosts == '':
                          log.info('No hosts entered..')
                          return
              
              
              Severity: Minor
              Found in controller/controller.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

              Severity
              Category
              Status
              Source
              Language