Sha256: 69fc85c20532b9bb806b96c47ad26da999ce904cad6140931f887c8bf0c3794a

Contents?: true

Size: 1.38 KB

Versions: 30

Compression:

Stored size: 1.38 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Security
      # This cop checks for the use of JSON class methods which have potential
      # security issues.
      #
      # Autocorrect is disabled by default because it's potentially dangerous.
      # If using a stream, like `JSON.load(open('file'))`, it will need to call
      # `#read` manually, like `JSON.parse(open('file').read)`.
      # If reading single values (rather than proper JSON objects), like
      # `JSON.load('false')`, it will need to pass the `quirks_mode: true`
      # option, like `JSON.parse('false', quirks_mode: true)`.
      # Other similar issues may apply.
      #
      # @example
      #   # bad
      #   JSON.load("{}")
      #   JSON.restore("{}")
      #
      #   # good
      #   JSON.parse("{}")
      #
      class JSONLoad < Base
        extend AutoCorrector

        MSG = 'Prefer `JSON.parse` over `JSON.%<method>s`.'
        RESTRICT_ON_SEND = %i[load restore].freeze

        def_node_matcher :json_load, <<~PATTERN
          (send (const {nil? cbase} :JSON) ${:load :restore} ...)
        PATTERN

        def on_send(node)
          json_load(node) do |method|
            add_offense(node.loc.selector, message: format(MSG, method: method)) do |corrector|
              corrector.replace(node.loc.selector, 'parse')
            end
          end
        end
      end
    end
  end
end

Version data entries

30 entries across 30 versions & 2 rubygems

Version Path
plaid-14.13.0 vendor/bundle/ruby/3.0.0/gems/rubocop-0.91.1/lib/rubocop/cop/security/json_load.rb
plaid-14.12.1 vendor/bundle/ruby/3.0.0/gems/rubocop-0.91.1/lib/rubocop/cop/security/json_load.rb
plaid-14.12.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/security/json_load.rb
plaid-14.11.1 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/security/json_load.rb
plaid-14.10.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/security/json_load.rb
plaid-14.7.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/security/json_load.rb
rubocop-1.10.0 lib/rubocop/cop/security/json_load.rb
rubocop-1.9.1 lib/rubocop/cop/security/json_load.rb
rubocop-1.9.0 lib/rubocop/cop/security/json_load.rb
rubocop-1.8.1 lib/rubocop/cop/security/json_load.rb
rubocop-1.8.0 lib/rubocop/cop/security/json_load.rb
rubocop-1.7.0 lib/rubocop/cop/security/json_load.rb
rubocop-1.6.1 lib/rubocop/cop/security/json_load.rb
rubocop-1.6.0 lib/rubocop/cop/security/json_load.rb
rubocop-1.5.2 lib/rubocop/cop/security/json_load.rb
rubocop-1.5.1 lib/rubocop/cop/security/json_load.rb
rubocop-1.5.0 lib/rubocop/cop/security/json_load.rb
rubocop-1.4.2 lib/rubocop/cop/security/json_load.rb
rubocop-1.4.1 lib/rubocop/cop/security/json_load.rb
rubocop-1.4.0 lib/rubocop/cop/security/json_load.rb