shadowbq/pastenum

View on GitHub

Showing 15 of 15 total issues

Method initialize has a Cognitive Complexity of 47 (exceeds 5 allowed). Consider refactoring.
Open

    def initialize  
      options = {}
      
      options[:pastebin] = true
      options[:gist] = true
Severity: Minor
Found in lib/pastenum/cli.rb - About 7 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

Method initialize has 158 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def initialize  
      options = {}
      
      options[:pastebin] = true
      options[:gist] = true
Severity: Major
Found in lib/pastenum/cli.rb - About 6 hrs to fix

    Method page_numbers has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
    Open

        def page_numbers
          page_num = 1
          next_page = true
          
          print "[*] Parsing pages:".green if @verbose
    Severity: Minor
    Found in lib/pastenum/targets/gist.rb - 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

    Method to_file has 57 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def to_file
          puts "[*] Creating HTML Report".green
          print "[*] Status: ".green
          file = File.open('report.html', 'w') 
        
    Severity: Major
    Found in lib/pastenum/report.rb - About 2 hrs to fix

      Method search has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
      Open

          def search
            puts "[*] Searching Pastie.com (Limit: First #{@max_pages} Pages)".green if @verbose
            q = GScraper::Search.query(:query => @dork + " inurl:pastes -inurl:page", :site => 'pastie.org')
            print "[*] Parsing pages:".green if @verbose
            begin
      Severity: Minor
      Found in lib/pastenum/targets/pastie.rb - 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

      Method search has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

          def search
            puts "[*] Searching Github".green if @verbose
            current_page = 1
            page_numbers.times do
              print ".".green if @verbose
      Severity: Minor
      Found in lib/pastenum/targets/github.rb - 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

      Method search has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

          def search
            puts "[*] Searching Gist".green if @verbose
            current_page = 1
            page_numbers.times do
              print ".".green if @verbose
      Severity: Minor
      Found in lib/pastenum/targets/gist.rb - 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

      Method search has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          def search
            puts "[*] Searching Pastee.org (Limit: First #{@max_pages} Pages)".green if @verbose
            q = GScraper::Search.query(:query => @dork + " intitle:'Paste' ", :site => 'pastee.org')
            print "[*] Parsing pages:".green if @verbose
            begin
      Severity: Minor
      Found in lib/pastenum/targets/pastee.rb - 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

      Method to_file has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          def to_file
            puts "[*] Creating HTML Report".green
            print "[*] Status: ".green
            file = File.open('report.html', 'w') 
          
      Severity: Minor
      Found in lib/pastenum/report.rb - 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

      Method page_numbers has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          def page_numbers
            print "[*] Parsing pages:".green if @verbose
            
            print "#".green if @verbose
            
      Severity: Minor
      Found in lib/pastenum/targets/github.rb - 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

      Method search has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          def search
            puts "[*] Searching Pastebin.com (Limit: First #{@max_pages} Pages)".green if @verbose
            q = GScraper::Search.query(:query => @dork, :site => 'pastebin.com')
            print "[*] Parsing pages: ".green if @verbose
            begin
      Severity: Minor
      Found in lib/pastenum/targets/pastebin.rb - 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

      Method initialize has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          def initialize(search_string)
            @dork ||= search_string
            
            @vendor ||= "TargetTemplate"
            @raw_url ||= "TargetRawTemplate"
      Severity: Minor
      Found in lib/pastenum/target.rb - About 45 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

      Method initialize has 6 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          def initialize(dork,addresses_pastie,addresses_pastee,addresses_pastebin,addresses_github,addresses_gist)
      Severity: Minor
      Found in lib/pastenum/report.rb - About 45 mins to fix

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

              unless @addresses_pastie.empty?
                file.write("<h2>Search Term: \"#{@dork}\" <br /> Site: Pastie - Found: #{@addresses_pastie.count} Items</h2>\n")
                @addresses_pastie.each do |links|
                  file.write("<p><iframe src=#{links}/text style=\"width: 100%; height: 300px; background-color: white\"></iframe><p>link: <a href=\"#{links}\" target=\"_blank\">#{links}</a>\n")
                  print ".".green
        Severity: Minor
        Found in lib/pastenum/report.rb and 1 other location - About 40 mins to fix
        lib/pastenum/report.rb on lines 75..81

        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 37.

        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

              unless @addresses_pastie.empty?
                file.write("<h2>Search Term: \"#{@dork}\" <br /> Site: Pastee - Found: #{@addresses_pastee.count} Items</h2>\n")
                @addresses_pastee.each do |links|
                  file.write("<p><iframe src=#{links}/text style=\"width: 100%; height: 300px; background-color: white\"></iframe><p>link: <a href=\"#{links}\" target=\"_blank\">#{links}</a>\n")
                  print ".".green
        Severity: Minor
        Found in lib/pastenum/report.rb and 1 other location - About 40 mins to fix
        lib/pastenum/report.rb on lines 65..71

        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 37.

        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

        Severity
        Category
        Status
        Source
        Language