angelakuo/citydogshare

View on GitHub

Showing 3,976 of 3,976 total issues

Avoid too many return statements within this function.
Open

                    return P.component.get( thing )

    Avoid too many return statements within this function.
    Open

            return true;

      Avoid too many return statements within this function.
      Open

              return false;

        Avoid too many return statements within this function.
        Open

                    return;

          Avoid too many return statements within this function.
          Open

              return false;

            Insufficient validation for 'zipcode' using /\d{5}/. Use \A and \z as anchors
            Open

              validates :zipcode, format: { with: /\d{5}/, message: "Bad format for zipcode."}, :allow_blank => true
            Severity: Critical
            Found in app/models/user.rb by brakeman

            Calls to validates_format_of ..., :with => // which do not use \A and \z as anchors will cause this warning. Using ^ and $ is not sufficient, as they will only match up to a new line. This allows an attacker to put whatever malicious input they would like before or after a new line character.

            See the Ruby Security Guide for details.

            Loofah 2.0.3 is vulnerable (CVE-2018-8048). Upgrade to 2.1.2
            Open

                loofah (2.0.3)
            Severity: Minor
            Found in Gemfile.lock by brakeman

            Possible SQL injection
            Open

                @user = User.exists?(params[:id]) ? User.find(params[:id]) : nil
            Severity: Critical
            Found in app/controllers/users_controller.rb by brakeman

            Injection is #1 on the 2013 OWASP Top Ten web security risks. SQL injection is when a user is able to manipulate a value which is used unsafely inside a SQL query. This can lead to data leaks, data loss, elevation of privilege, and other unpleasant outcomes.

            Brakeman focuses on ActiveRecord methods dealing with building SQL statements.

            A basic (Rails 2.x) example looks like this:

            User.first(:conditions => "username = '#{params[:username]}'")

            Brakeman would produce a warning like this:

            Possible SQL injection near line 30: User.first(:conditions => ("username = '#{params[:username]}'"))

            The safe way to do this query is to use a parameterized query:

            User.first(:conditions => ["username = ?", params[:username]])

            Brakeman also understands the new Rails 3.x way of doing things (and local variables and concatenation):

            username = params[:user][:name].downcase
            password = params[:user][:password]
            
            User.first.where("username = '" + username + "' AND password = '" + password + "'")

            This results in this kind of warning:

            Possible SQL injection near line 37:
            User.first.where((((("username = '" + params[:user][:name].downcase) + "' AND password = '") + params[:user][:password]) + "'"))

            See the Ruby Security Guide for more information and Rails-SQLi.org for many examples of SQL injection in Rails.

            rails-html-sanitizer 1.0.3 is vulnerable (CVE-2018-3741). Upgrade to 1.0.4
            Open

                rails-html-sanitizer (1.0.3)
            Severity: Minor
            Found in Gemfile.lock by brakeman

            Possible SQL injection
            Open

                if User.exists?(params[:id]) == false
            Severity: Critical
            Found in app/controllers/users_controller.rb by brakeman

            Injection is #1 on the 2013 OWASP Top Ten web security risks. SQL injection is when a user is able to manipulate a value which is used unsafely inside a SQL query. This can lead to data leaks, data loss, elevation of privilege, and other unpleasant outcomes.

            Brakeman focuses on ActiveRecord methods dealing with building SQL statements.

            A basic (Rails 2.x) example looks like this:

            User.first(:conditions => "username = '#{params[:username]}'")

            Brakeman would produce a warning like this:

            Possible SQL injection near line 30: User.first(:conditions => ("username = '#{params[:username]}'"))

            The safe way to do this query is to use a parameterized query:

            User.first(:conditions => ["username = ?", params[:username]])

            Brakeman also understands the new Rails 3.x way of doing things (and local variables and concatenation):

            username = params[:user][:name].downcase
            password = params[:user][:password]
            
            User.first.where("username = '" + username + "' AND password = '" + password + "'")

            This results in this kind of warning:

            Possible SQL injection near line 37:
            User.first.where((((("username = '" + params[:user][:name].downcase) + "' AND password = '") + params[:user][:password]) + "'"))

            See the Ruby Security Guide for more information and Rails-SQLi.org for many examples of SQL injection in Rails.

            Possible SQL injection
            Open

                if !Dog.exists?(id)
            Severity: Critical
            Found in app/controllers/dogs_controller.rb by brakeman

            Injection is #1 on the 2013 OWASP Top Ten web security risks. SQL injection is when a user is able to manipulate a value which is used unsafely inside a SQL query. This can lead to data leaks, data loss, elevation of privilege, and other unpleasant outcomes.

            Brakeman focuses on ActiveRecord methods dealing with building SQL statements.

            A basic (Rails 2.x) example looks like this:

            User.first(:conditions => "username = '#{params[:username]}'")

            Brakeman would produce a warning like this:

            Possible SQL injection near line 30: User.first(:conditions => ("username = '#{params[:username]}'"))

            The safe way to do this query is to use a parameterized query:

            User.first(:conditions => ["username = ?", params[:username]])

            Brakeman also understands the new Rails 3.x way of doing things (and local variables and concatenation):

            username = params[:user][:name].downcase
            password = params[:user][:password]
            
            User.first.where("username = '" + username + "' AND password = '" + password + "'")

            This results in this kind of warning:

            Possible SQL injection near line 37:
            User.first.where((((("username = '" + params[:user][:name].downcase) + "' AND password = '") + params[:user][:password]) + "'"))

            See the Ruby Security Guide for more information and Rails-SQLi.org for many examples of SQL injection in Rails.

            Possible SQL injection
            Open

                if !User.exists?(id)
            Severity: Critical
            Found in app/controllers/users_controller.rb by brakeman

            Injection is #1 on the 2013 OWASP Top Ten web security risks. SQL injection is when a user is able to manipulate a value which is used unsafely inside a SQL query. This can lead to data leaks, data loss, elevation of privilege, and other unpleasant outcomes.

            Brakeman focuses on ActiveRecord methods dealing with building SQL statements.

            A basic (Rails 2.x) example looks like this:

            User.first(:conditions => "username = '#{params[:username]}'")

            Brakeman would produce a warning like this:

            Possible SQL injection near line 30: User.first(:conditions => ("username = '#{params[:username]}'"))

            The safe way to do this query is to use a parameterized query:

            User.first(:conditions => ["username = ?", params[:username]])

            Brakeman also understands the new Rails 3.x way of doing things (and local variables and concatenation):

            username = params[:user][:name].downcase
            password = params[:user][:password]
            
            User.first.where("username = '" + username + "' AND password = '" + password + "'")

            This results in this kind of warning:

            Possible SQL injection near line 37:
            User.first.where((((("username = '" + params[:user][:name].downcase) + "' AND password = '") + params[:user][:password]) + "'"))

            See the Ruby Security Guide for more information and Rails-SQLi.org for many examples of SQL injection in Rails.

            Possible SQL injection
            Open

                if not Event.exists?(params[:id])
            Severity: Critical
            Found in app/controllers/events_controller.rb by brakeman

            Injection is #1 on the 2013 OWASP Top Ten web security risks. SQL injection is when a user is able to manipulate a value which is used unsafely inside a SQL query. This can lead to data leaks, data loss, elevation of privilege, and other unpleasant outcomes.

            Brakeman focuses on ActiveRecord methods dealing with building SQL statements.

            A basic (Rails 2.x) example looks like this:

            User.first(:conditions => "username = '#{params[:username]}'")

            Brakeman would produce a warning like this:

            Possible SQL injection near line 30: User.first(:conditions => ("username = '#{params[:username]}'"))

            The safe way to do this query is to use a parameterized query:

            User.first(:conditions => ["username = ?", params[:username]])

            Brakeman also understands the new Rails 3.x way of doing things (and local variables and concatenation):

            username = params[:user][:name].downcase
            password = params[:user][:password]
            
            User.first.where("username = '" + username + "' AND password = '" + password + "'")

            This results in this kind of warning:

            Possible SQL injection near line 37:
            User.first.where((((("username = '" + params[:user][:name].downcase) + "' AND password = '") + params[:user][:password]) + "'"))

            See the Ruby Security Guide for more information and Rails-SQLi.org for many examples of SQL injection in Rails.

            Function compile has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

            }(this));      ;function compile(script, options) {
                    try {
                      return CoffeeScript.compile(script, options);
                    } catch (err) {
                      if (err instanceof SyntaxError && err.location) {

            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 SpyStrategy has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

            getJasmineRequireObj().SpyStrategy = function(j$) {
            
              function SpyStrategy(options) {
                options = options || {};
            
            

            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 delete_checked_pictures has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

              def delete_checked_pictures
                activated_ids = params[:activated].collect {|id| id.to_i} if params[:activated]
                seen_ids = params[:seen].collect {|id| id.to_i} if params[:seen]
            
                if activated_ids
            Severity: Minor
            Found in app/controllers/dogs_controller.rb - About 25 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 show has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

              def show
                if User.exists?(params[:id]) == false
                  flash[:notice] = "The user you entered does not exist."
                  redirect_to @current_user
                else
            Severity: Minor
            Found in app/controllers/users_controller.rb - About 25 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 destroy has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

              def destroy
                star_to_remove = Star.where(dog_id: @dog.id, user_id: current_user.id).first
                if star_to_remove && star_to_remove.destroy
                  if !request.xhr?
                    redirect_to :back
            Severity: Minor
            Found in app/controllers/starred_dogs_controller.rb - About 25 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

            Final newline missing.
            Open

            end
            Severity: Minor
            Found in app/models/dog_like_linker.rb by rubocop

            Final newline missing.
            Open

            end
            Severity: Minor
            Found in app/models/picture.rb by rubocop
            Severity
            Category
            Status
            Source
            Language