 0fc1eb534b
			
		
	
	
		0fc1eb534b
		
			
		
	
	
	
	
		
			
			- Some of these I bumped to `typed: strict`, some of them I added intermediary type signatures to some of the methods to make my life easier in the (near, hopefully) future. - Turns out that RuboCop node matchers that end in `?` can return `nil` if they don't match anything, not `false`.
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # typed: strict
 | |
| # frozen_string_literal: true
 | |
| 
 | |
| module RuboCop
 | |
|   module Cop
 | |
|     module Homebrew
 | |
|       # This cop restricts usage of `IO.read` functions for security reasons.
 | |
|       class IORead < Base
 | |
|         MSG = "The use of `IO.%<method>s` is a security risk."
 | |
| 
 | |
|         RESTRICT_ON_SEND = [:read, :readlines].freeze
 | |
| 
 | |
|         sig { params(node: RuboCop::AST::SendNode).void }
 | |
|         def on_send(node)
 | |
|           return if node.receiver != s(:const, nil, :IO)
 | |
|           return if safe?(node.arguments.first)
 | |
| 
 | |
|           add_offense(node, message: format(MSG, method: node.method_name))
 | |
|         end
 | |
| 
 | |
|         private
 | |
| 
 | |
|         sig { params(node: RuboCop::AST::Node).returns(T::Boolean) }
 | |
|         def safe?(node)
 | |
|           if node.str_type?
 | |
|             !node.str_content.empty? && !node.str_content.start_with?("|")
 | |
|           elsif node.dstr_type? || (node.send_type? && T.cast(node, RuboCop::AST::SendNode).method?(:+))
 | |
|             safe?(node.children.first)
 | |
|           else
 | |
|             false
 | |
|           end
 | |
|         end
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 |