secureCodeBox/secureCodeBox

View on GitHub
scanners/nikto/parser/parser.js

Summary

Maintainability
C
1 day
Test Coverage
B
81%

Function parse has 49 lines of code (exceeds 25 allowed). Consider refactoring.
Open

async function parse(niktoReport) {
  if (!niktoReport) return [];

  return niktoReport.flatMap(
    ({host, ip, port: portString, banner, vulnerabilities}) => {
Severity: Minor
Found in scanners/nikto/parser/parser.js - About 1 hr to fix

    Function categorize has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

    function categorize({id}) {
      if (id === 999957) {
        return ["X-Frame-Options Header", LOW];
      } else if (id === 999102) {
        return ["X-XSS-Protection", LOW];
    Severity: Minor
    Found in scanners/nikto/parser/parser.js - 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 too many return statements within this function.
    Open

        return ["Embedded Device", INFORMATIONAL];
    Severity: Major
    Found in scanners/nikto/parser/parser.js - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

          return ["Potential Backup File", INFORMATIONAL];
      Severity: Major
      Found in scanners/nikto/parser/parser.js - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

            return ["X-Content-Type-Options Header", INFORMATIONAL];
        Severity: Major
        Found in scanners/nikto/parser/parser.js - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

              return ["Identified Software", INFORMATIONAL];
          Severity: Major
          Found in scanners/nikto/parser/parser.js - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                return ["Path Traversal", HIGH];
            Severity: Major
            Found in scanners/nikto/parser/parser.js - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                return ["Nikto Finding", INFORMATIONAL];
              Severity: Major
              Found in scanners/nikto/parser/parser.js - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                    return ["Identified Software", INFORMATIONAL];
                Severity: Major
                Found in scanners/nikto/parser/parser.js - About 30 mins to fix

                  Avoid too many return statements within this function.
                  Open

                      return ["Potential Vulnerability", HIGH];
                  Severity: Major
                  Found in scanners/nikto/parser/parser.js - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                        return ["Outdated Software", MEDIUM];
                    Severity: Major
                    Found in scanners/nikto/parser/parser.js - About 30 mins to fix

                      There are no issues that match your filters.

                      Category
                      Status