Sha256: 5fea7761f1f31cee7235cacf3f4cb9582f296392baf71c8e0ca5eced48f80057

Contents?: true

Size: 1.44 KB

Versions: 19

Compression:

Stored size: 1.44 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.
      #
      # @safety
      #   This cop's autocorrection is unsafe 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

        # @!method json_load(node)
        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

19 entries across 19 versions & 4 rubygems

Version Path
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.26.0/lib/rubocop/cop/security/json_load.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.26.0/lib/rubocop/cop/security/json_load.rb
rubocop-1.29.1 lib/rubocop/cop/security/json_load.rb
rubocop-1.29.0 lib/rubocop/cop/security/json_load.rb
rubocop-1.28.2 lib/rubocop/cop/security/json_load.rb
rubocop-1.28.1 lib/rubocop/cop/security/json_load.rb
rubocop-1.28.0 lib/rubocop/cop/security/json_load.rb
rubocop-1.27.0 lib/rubocop/cop/security/json_load.rb
rubocop-1.26.1 lib/rubocop/cop/security/json_load.rb
op_connect-0.1.2 vendor/bundle/ruby/3.1.0/gems/rubocop-1.26.0/lib/rubocop/cop/security/json_load.rb
rubocop-1.26.0 lib/rubocop/cop/security/json_load.rb
rubocop-1.25.1 lib/rubocop/cop/security/json_load.rb
rubocop-1.25.0 lib/rubocop/cop/security/json_load.rb
phillipug-foodie-0.1.0 .vendor/ruby/3.0.0/gems/rubocop-1.24.0/lib/rubocop/cop/security/json_load.rb
rubocop-1.24.1 lib/rubocop/cop/security/json_load.rb
rubocop-1.24.0 lib/rubocop/cop/security/json_load.rb
rubocop-1.23.0 lib/rubocop/cop/security/json_load.rb
rubocop-1.22.3 lib/rubocop/cop/security/json_load.rb
rubocop-1.22.2 lib/rubocop/cop/security/json_load.rb