master
json (2.2.0)
raise StandardError, 'Transaction expired' if @attributes.nil?
Advisory: CVE-2020-10663
Criticality: High
URL: https://www.ruby-lang.org/en/news/2020/03/19/json-dos-cve-2020-10663/
Solution: upgrade to >= 2.3.0
A NilCheck is a type check. Failures of NilCheck violate the "tell, don't ask" principle.
NilCheck
Additionally, type checks often mask bigger problems in your source code like not using OOP and / or polymorphism when you should.
Given
class Klass def nil_checker(argument) if argument.nil? puts "argument isn't nil!" end endend
Reek would emit the following warning:
test.rb -- 1 warning: [3]:Klass#nil_checker performs a nil-check. (NilCheck)