Sha256: d385b068203917769cda10617ea3591915a6fefe8e0075878506bfc1b29646fd
Contents?: true
Size: 1.43 KB
Versions: 186
Compression:
Stored size: 1.43 KB
Contents
# frozen_string_literal: true module RuboCop module Cop module Security # 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
186 entries across 179 versions & 17 rubygems