mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Fixed command Injection
* resolv.rb (Resolv::Hosts#lazy_initialize): fixed potential command Injection in Hosts::new() by use of Kernel#open. [Fix GH-1777] [ruby-core:84347] [Bug #14205] From: Drigg3r <drigg3r@yandex.com> git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61349 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6df552eaee
commit
e7464561b5
1 changed files with 1 additions and 1 deletions
|
@ -188,7 +188,7 @@ class Resolv
|
|||
unless @initialized
|
||||
@name2addr = {}
|
||||
@addr2name = {}
|
||||
open(@filename, 'rb') {|f|
|
||||
File.open(@filename, 'rb') {|f|
|
||||
f.each {|line|
|
||||
line.sub!(/#.*/, '')
|
||||
addr, hostname, *aliases = line.split(/\s+/)
|
||||
|
|
Loading…
Reference in a new issue